Skip to content

Commit 94ccd33

Browse files
authored
Spam Bot (#27)
It will spam anything u save in spam.txt, on WhatsApp Instagram etc
1 parent 83aa2b7 commit 94ccd33

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

spambot.py

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
import pyautogui, time
2+
time.sleep(5)
3+
f=open("spam.txt", 'r')
4+
for word in f:
5+
pyautogui.typewrite(word)
6+
pyautogui.press("enter")
7+
8+
9+
10+
11+
12+
13+
14+
15+
16+
17+
18+
19+
20+
21+
22+
23+
24+
25+
26+
27+
28+
29+
30+
31+
32+
33+
34+
35+
36+
37+
38+
39+
40+
41+
42+

0 commit comments

Comments
 (0)