-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspam-script.py
More file actions
21 lines (20 loc) · 764 Bytes
/
spam-script.py
File metadata and controls
21 lines (20 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import pyautogui as pg
import time
#by MikeTheHash
#ATTENTION: The script work like an autoclicker
print(" ___ _ __ __ _ _ __ ___ _ __ ___ ___ _ __ ")
print("/ __| '_ \ / _` | '_ ` _ \| '_ ` _ \ / _ \ '__|")
print("\__ \ |_) | (_| | | | | | | | | | | | __/ | ")
print("|___/ .__/ \__,_|_| |_| |_|_| |_| |_|\___|_|")
print(" |_| by MikeTheHash")
print("\nATTENTION: The script work like an autoclicker")
print("------------------------------------------------")
input_user = input("What content do you want to spam? \n>")
user_input = input("Do you want to start spam [y/n] \n>")
if user_input == "Y" or user_input == "y":
time.sleep(5)
while True:
pg.write(input_user)
pg.press("Enter")
else:
exit()