i'm trying to make a script that clicks letters on the alphabet every x amount of time. im able to open gmod with pyautogui but once it comes to interacting with the application itself, nothing happens, what do I do
def moveToApp():
#Temporary x,y
pyautogui.moveTo(572, 1056)
pyautogui.click()
time.sleep(0.5)
pyautogui.press("e")
moveToApp()