i tried a bunch of different scripts but they never worked.
Local script, StarterPack:
1 | wait( 1 ) |
2 |
3 | local hum = game.Players.LocalPlayer.Character:FindFirstChild( "Humanoid" ) |
4 | hum.Changed:connect( function () |
5 | hum.Jump = false |
6 | end ) |
Put in a LocalScript
1 | repeat wait() until game.Players.LocalPlayer.Character |
2 | game.Players.LocalPlayer.Character.Humanoid.Changed:connect( function () |
3 | game.Players.LocalPlayer.Character.Humanoid.Jump = false |
4 | end ) |