Skip to content

Instantly share code, notes, and snippets.

@wise-bit
Last active May 12, 2022 23:06
Show Gist options
  • Select an option

  • Save wise-bit/07a17cad0ea419d213b9db9e4f7c6be0 to your computer and use it in GitHub Desktop.

Select an option

Save wise-bit/07a17cad0ea419d213b9db9e4f7c6be0 to your computer and use it in GitHub Desktop.
Autoclicker
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