FreeFalling (Event): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Camoy
Formatted, added example
>Camoy
Formatted, added example
Line 7: Line 7:
|}
|}
{{Example|<pre>
{{Example|<pre>
game.Workspace.Player.Humanoid.FreeFaling:connect(function()
game.Workspace.Player.Humanoid.FreeFalling:connect(function()
   print("Free falling")
   print("Free falling")
end)
end)
</pre>}}
</pre>}}

Revision as of 14:46, 29 August 2010

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