Advertisement
whileDo

ROBLOX AUTO JUMP INFINITY TIME (anti afk but auto jump)

Sep 25th, 2024
495
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.50 KB | Food | 0 0
  1. local UserInputService = game:GetService("UserInputService")
  2. local ReplicatedStorage = game:GetService("ReplicatedStorage")
  3.  
  4. local jumpButtonPressed = false
  5.  
  6. UserInputService.InputBegan:Connect(function(input, isProcessed)
  7.     if input.KeyCode == Enum.KeyCode.F6 and not isProcessed then
  8.         jumpButtonPressed = not jumpButtonPressed
  9.         if jumpButtonPressed then
  10.             print("Jump button pressed.")
  11.         else
  12.             print("Jump button released.")
  13.         end
  14.     end
  15. end)
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement