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

Can't change a humanoid's JumpPower?

Asked by
R_alatch 394 Moderation Voter
9 years ago

Having a problem with ROBLOX's new property of the humanoid, "JumpPower". Basically, it changes how high you jump. I don't get an error, but here is my script. It just find all the players and changes their jump height.

for i, plr in pairs(game.Players:GetPlayers()) do
    if plr.Character:WaitForChild("Humanoid") then
        plr.Character.Humanoid.JumpPower = 125
    end
end
1
Put a local script in the backpack, edit the JumpPower there. PreciseLogic 271 — 9y
1
Thanks! R_alatch 394 — 9y

Answer this question