FallingDown (Event): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Camoy
Example
>Camoy
Being picky again
Line 2: Line 2:
|<onlyinclude>{{Event
|<onlyinclude>{{Event
|name = FallingDown
|name = FallingDown
|arguments = [[Bool]] ''Active''
|arguments = [[Bool]] ''active''
|description = Fired when player is falling down.
|description = Fired when player is falling down.
|object = [[Humanoid]]
|object = [[Humanoid]]

Revision as of 14:47, 29 August 2010

FallingDown ( Bool active )
Description Fired when player is falling down.
Member of: [[RBX.lua.Humanoid (Object)|Humanoid]]
Example
game.Workspace.Player.Humanoid.FallingDown:connect(function()
  print("Falling down")
end)