auto clicker

install the libraries
 avatar
unknown
python
2 years ago
287 B
7
Indexable
import time
import pyautogui
import random
count = 0
while True:
    count += 1
    pyautogui.click()  # Perform a mouse click
    print("Clicked ", count, " times")
    # random wait time between 10-100 sec
    sleep_time = random.randint(10, 100)
    time.sleep(sleep_time)
Editor is loading...