free friday

what i did today

import pyautogui
import time
import threading

print("Press ENTER to start clicking...")

print("Clicking Press ENTER to stop.")
time.sleep(1)

clicking = True

def wait_for_stop():
    global clicking
    input()
    clicking = False

threading.Thread(target=wait_for_stop, daemon=True).start()

while clicking:
    pyautogui.click()  # as fast as possible

print("Stopped!")

i made an auto clicker


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *