Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

Disable Space bar Jumping?

Asked by 10 years ago

i tried a bunch of different scripts but they never worked.

2 answers

Log in to vote
4
Answered by 10 years ago

Local script, StarterPack:

wait(1)

local hum = game.Players.LocalPlayer.Character:FindFirstChild("Humanoid")
hum.Changed:connect(function()
    hum.Jump = false
end)


0
thx IPlayOnline -2 — 10y
0
doen't work IPlayOnline -2 — 10y
0
It works perfectly for me, try StarterGui instead. Also make sure it's a LOCALSCRIPT not a SCRIPT. systematicaddict 295 — 10y
0
I edited my answer, try it now. Sorry about the mess up m8. systematicaddict 295 — 10y
Ad
Log in to vote
0
Answered by
hudzell 238 Moderation Voter
10 years ago

Put in a LocalScript

repeat wait() until game.Players.LocalPlayer.Character
game.Players.LocalPlayer.Character.Humanoid.Changed:connect(function()
    game.Players.LocalPlayer.Character.Humanoid.Jump = false
end)

Answer this question