Created
November 24, 2024 03:37
-
-
Save erbanku/2d24cd57681dca1c227ea04a00562a5a to your computer and use it in GitHub Desktop.
(Windows) Created by Cactus with ♥ using GitHub-CLI at Sun 11/24/2024 11:37 +08:00 (1732419449)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#MaxThreadsPerHotkey 3 | |
!^z:: | |
Toggle := !Toggle | |
Loop | |
{ | |
If (!Toggle) | |
Break | |
Click | |
Sleep 50 ; Make this number higher for slower clicks, lower for faster. | |
} | |
Return | |
; exit the script | |
!^x:: ExitApp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment