im trying to detect if player is falling, and when player is falling it prints "Player is Falling" but none of the script i make works. How do u Detect when player is falling then prints "Player is falling"? (Thanks in Advance)
The Humanoid has an Event for falling.
SCRIPT
game.Players.PlayerAdded:Connect(function(Player) Player.CharacterAdded:Connect(function(Character) Character.Humanoid.FreeFalling:Connect(function(Active) if Active then print("Player is falling") end end) end) end)