Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local player = game.Players.LocalPlayer
- local humanoid = player.Character and player.Character:WaitForChild("Humanoid")
- -- Function to make the character jump
- local function autoJump()
- while true do
- wait(2) -- Adjust the time interval between jumps (in seconds)
- if humanoid then
- humanoid.Jump = true
- end
- end
- end
- -- Call the function to start automatic jumping
- autoJump()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement