# Autoclicker - Feel free to modify
# If your using linux, make sure the enviroment is set to X11
# Make sure the password list is in the same directory as this python script (unless you modify it)
import time
import pyautogui # Required to install

with open("list.txt", "r+") as file:
    for i in file:

        # Motify your corrdinance here (may need a lot of math here)
        pyautogui.moveTo(x, y)
        time.sleep(0.01)
        pyautogui.leftClick()
        time.sleep(0.01)
        pyautogui.write(i.strip())
        time.sleep(0.01)
        pyautogui.moveTo(x, y)

        print(i.strip())
        time.sleep(0.5)


