como fazer um bot spamm no discord com python

Solutions on MaxInterview for como fazer um bot spamm no discord com python by the best coders in the world

showing results for - "como fazer um bot spamm no discord com python"
Finn
01 Sep 2018
1import pyautogui
2from time import sleep
3sleep(5)
4f = open("textogrande", 'a')
5for word in f:
6    pyautogui.typewrite(word)
7    pyautogui.press("enter")
similar questions