Luca_YT

spam script

Jun 22nd, 2022 (edited)
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. import pyautogui
  2. import webbrowser
  3. import time
  4.  
  5. message = input("what message do you want to spam? leave blank if you want to send clipboard")
  6. repeats = int(input("how many times do you wanna send this message? "))
  7. delay = int(input("how many ms do you want to wait in between each message"))
  8.  
  9. isLoaded = input("press enter when your discord is loaded")
  10.  
  11.  
  12. print("you have five seconds before the spammy mc spam starts")
  13.  
  14. time.sleep(5)
  15.  
  16. for i in range (0,repeats):
  17. if message != "":
  18. pyautogui.typewrite(message)
  19. pyautogui.press("enter")
  20. else:
  21. pyautogui.hotkey('ctrl','v')
  22. pyautogui.press("enter")
  23.  
  24. time.sleep(delay/1000)
  25.  
  26. print("Done/n")
Add Comment
Please, Sign In to add comment