-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhehe.py
More file actions
29 lines (26 loc) · 708 Bytes
/
hehe.py
File metadata and controls
29 lines (26 loc) · 708 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import pyautogui
import time
print("You Must First Ping The Person Then Copy Paste The Text Here !")
print("Example: '@PndaBoi!'")
print()
print("This Program Is Meant For Zoom, Not Tried Other Platforms !")
print()
msg1 = input("Enter the message -> ")
msg2 = input("Enter the Second message -> ")
n = input("How many times ? -> ")
delay = int(input("How much delay do you want bettween messages ? -> "))
print()
print("T minus!")
count = 5
while(count != 0):
print(count)
time.sleep(1)
count -= 1
print()
print("It's Troll TIme!!!")
for i in range(0,int(n)):
pyautogui.typewrite(msg1 + '\n')
pyautogui.typewrite('\n')
pyautogui.typewrite(msg2 + '\n')
pyautogui.typewrite('\n')
time.sleep(delay)