Advertisement
Stub92

roblox autoclicker

Jun 27th, 2023
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ;this is pretty important to note but YOU NEED AUTOHOTKEY FOR THIS TO WORK
  2.  
  3. Toggle := 0
  4.  
  5. F6::Exitapp ;to quit the ahk
  6.  
  7. q:: ;toggles the script on/off
  8.     Toggle := !Toggle
  9.     if (Toggle)
  10.     {
  11.         SetTimer, ClickLoop, 33
  12.     }
  13.     else
  14.     {
  15.         SetTimer, ClickLoop, Off
  16.     }
  17. return
  18.  
  19. ClickLoop:
  20.    Click
  21. return
  22.  
Tags: #roblox
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement