Advertisement
YESSIR455bb

JUUMP HIGH

Apr 29th, 2025
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. local LocalPlayer = game.Players.LocalPlayer
  2. local ModifiedJumpPower = 100 -- Change this to the jump power you want
  3. local OriginalJumpPower
  4.  
  5. -- Ensure the script waits for the player's character to load
  6. if LocalPlayer.Character then
  7. OriginalJumpPower = LocalPlayer.Character:WaitForChild("Humanoid").JumpPower
  8. end
  9.  
  10. -- Function to modify jump power
  11. local function changeJumpPower()
  12. local humanoid = LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("Humanoid")
  13. if humanoid then
  14. humanoid.JumpPower = ModifiedJumpPower -- Set the new JumpPower
  15. end
  16. end
  17.  
  18. -- You can connect this to a toggle, button, or just call changeJumpPower() directly
  19. changeJumpPower()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement