Advertisement
whileDo

roblox change jump power

May 2nd, 2025
222
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.37 KB | Gaming | 1 0
  1. local player = game.Players.LocalPlayer
  2. local character = player.Character or player.CharacterAdded:Wait()
  3. local humanoid = character:WaitForChild("Humanoid")
  4.  
  5. -- default jump power is 50
  6. humanoid.JumpPower = 100
  7.  
  8. player.CharacterAdded:Connect(function(newCharacter)
  9.     local newHumanoid = newCharacter:WaitForChild("Humanoid")
  10.     newHumanoid.JumpPower = 100
  11. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement