Skip to content

Instantly share code, notes, and snippets.

@cornernote
Created May 23, 2020 04:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cornernote/ab951ce85f09c283a7972fcc36900951 to your computer and use it in GitHub Desktop.
Save cornernote/ab951ce85f09c283a7972fcc36900951 to your computer and use it in GitHub Desktop.
Auto-It Auto Clicker
$currentClicking = False
HotKeySet('^x', 'End')
Func End()
Exit
EndFunc
HotKeySet('^o', 'Click')
Func Click()
If $currentClicking Then
$currentClicking = False
Else
$currentClicking = True
EndIf
EndFunc
While True
If $currentClicking Then
MouseClick("left")
EndIf
Sleep(100)
WEnd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment