Last active
May 12, 2022 23:06
-
-
Save wise-bit/07a17cad0ea419d213b9db9e4f7c6be0 to your computer and use it in GitHub Desktop.
Autoclicker
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
| import pyautogui | |
| TOTAL_CLICKS = 10000 | |
| pyautogui.PAUSE = 0.045 | |
| for i in range(TOTAL_CLICKS): | |
| pyautogui.click() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment