Untitled

 avatar
unknown
plain_text
2 years ago
301 B
4
Indexable
import pyautogui
import time

def right_click(x, y):
    pyautogui.click(x, y, button='right')
    time.sleep(5)

if __name__ == '__main__':
    while True:
        x = 100
        y = 200
        z = 300
        a = 400
        while True:
            right_click(x, y)
            right_click(z, a)
Editor is loading...