FallingDown (Event): Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>Mindraker No edit summary |
>Camoy No edit summary |
||
(22 intermediate revisions by 5 users not shown) | |||
Line 1: | Line 1: | ||
{{ | <onlyinclude>{{Event | ||
|name = FallingDown | |||
|arguments = [[Bool]] ''active'' | |||
|description = Fired when player is falling down. | |||
|object = Humanoid | |||
}}</onlyinclude> | |||
{{clear floats}} | |||
{{Example|<pre> | |||
game.Workspace.Player.Humanoid.FallingDown:connect(function() | |||
print("Falling down") | |||
end) | |||
</pre>}} | |||
[[Category:Events]] | [[Category:Events]] |
Latest revision as of 15:43, 29 January 2011
FallingDown ( Bool active ) | |
Description | Fired when player is falling down. |
---|---|
Member of: | Humanoid |
Example
game.Workspace.Player.Humanoid.FallingDown:connect(function() print("Falling down") end)