Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import pyautogui
- import webbrowser
- import time
- message = input("what message do you want to spam? leave blank if you want to send clipboard")
- repeats = int(input("how many times do you wanna send this message? "))
- delay = int(input("how many ms do you want to wait in between each message"))
- isLoaded = input("press enter when your discord is loaded")
- print("you have five seconds before the spammy mc spam starts")
- time.sleep(5)
- for i in range (0,repeats):
- if message != "":
- pyautogui.typewrite(message)
- pyautogui.press("enter")
- else:
- pyautogui.hotkey('ctrl','v')
- pyautogui.press("enter")
- time.sleep(delay/1000)
- print("Done/n")
Add Comment
Please, Sign In to add comment