Advertisement
UltimateCheater

INF JUMP/BHOP

Jun 1st, 2024
242
-2
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 2
  1. -- INF JUMP
  2.  
  3. -- Infinite Jump Script for Roblox
  4.  
  5. -- Get the player's character
  6. local player = game.Players.LocalPlayer
  7. local character = player.Character
  8. local humanoid = character:WaitForChild("Humanoid")
  9.  
  10. -- Set the initial jump power
  11. local jumpPower = 50
  12.  
  13. -- Set the infinite jump flag
  14. local infiniteJump = false
  15.  
  16. -- Create a local script to run on the client
  17. local localScript = Instance.new("LocalScript")
  18. localScript.Parent = character
  19.  
  20. -- Define a function to toggle infinite jump
  21. local function toggleInfiniteJump()
  22. infiniteJump = not infiniteJump
  23. if infiniteJump then
  24. print("Infinite jump enabled!")
  25. else
  26. print("Infinite jump disabled!")
  27. end
  28. end
  29.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement