whatsapp-spam

Source Code: spam-bot.py

import pyautogui
import time

count = 0
pyautogui.click(10,5)
while True:
    pyautogui.FAILSAFE=True
    pyautogui.write(f"Hey you there")
    count +=1
    pyautogui.press("ENTER")
    time.sleep(1)