Advertisement
PSquishyP

Untitled

Oct 3rd, 2016
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. ;
  2. ;Autoclicker by Noahc3
  3. ;
  4. ;Built with Autohotkey 1.1.22.09
  5. ;
  6. ;
  7. ;
  8. ;
  9.  
  10. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  11. SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
  12. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
  13.  
  14.  
  15. toggle = 0
  16. #MaxThreadsPerHotkey 2
  17.  
  18. `::
  19. Toggle := !Toggle
  20. While Toggle{
  21. Click
  22. Sleep 1
  23. }
  24. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement