send auto messages fb
import pyautogui
import time

msg = input("message: ")
n = input("amount of msg : ")

count = 5

while(count != 0):
    print(count)
    time.sleep(1)
    count -= 1

print("Fire in the hole")

for i in range(0,int(n)):
    time.sleep(0.2)
    pyautogui.typewrite(msg + '\n')
by Luka Tatarishvili
3 years ago
0
Pro tip: use ```triple backticks around text``` to write in code fences