FreeFalling (Event): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Mr Doom Bringer
No edit summary
>MrNicNac
No edit summary
 
(28 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{|
<onlyinclude>{{Event
|<onlyinclude>{{Event|
|name = FreeFalling
name = FreeFalling
|arguments = [[Bool]] ''active''
|arguments = [[Bool]] ''Active''
|description = Fired when player is falling.
|description = Fired when player is free falling, to show the FreeFalling animation.
|object = Humanoid
|object = [[RBX.lua.Humanoid (Object)|Humanoid]]
}}</onlyinclude>
|}}</onlyinclude>
 
|}
{{clear floats}}
 
{{Example|<pre>
game.Workspace.Player.Humanoid.FreeFalling:connect(function()
  print("Free falling")
end)
</pre>}}
 
[[Category:Events]]

Latest revision as of 15:31, 25 July 2011

FreeFalling ( Bool active )
Description Fired when player is falling.
Member of: Humanoid


Example
game.Workspace.Player.Humanoid.FreeFalling:connect(function()
  print("Free falling")
end)