Advertisement
tubers85

(roblox) auto jump

Oct 28th, 2023
1,797
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. local player = game.Players.LocalPlayer
  2. local humanoid = player.Character and player.Character:WaitForChild("Humanoid")
  3.  
  4. -- Function to make the character jump
  5. local function autoJump()
  6. while true do
  7. wait(2) -- Adjust the time interval between jumps (in seconds)
  8.  
  9. if humanoid then
  10. humanoid.Jump = true
  11. end
  12. end
  13. end
  14.  
  15. -- Call the function to start automatic jumping
  16. autoJump()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement