FreeFalling (Event)

From Legacy Roblox Wiki
Revision as of 22:20, 24 July 2011 by >Emess
Jump to navigationJump to search
FreeFalling ( Bool active )
Description Fired when player is free falling.
Member of: Humanoid


Example
game.Workspace.Player.Humanoid.FreeFalling:connect(function(active)
  repeat wait() until not active
  print("You landed!")
end)