Skip to content

Instantly share code, notes, and snippets.

@cipherwithadot
Created December 8, 2021 07:21
Show Gist options
  • Save cipherwithadot/1bce7c7254d2869982b5acc9f8537999 to your computer and use it in GitHub Desktop.
Save cipherwithadot/1bce7c7254d2869982b5acc9f8537999 to your computer and use it in GitHub Desktop.
simple zoom spam pinger!
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)
@cipherwithadot
Copy link
Author

I found this code and made it better :)

You need pyautogui for this!

To install:

pip install pyautogui

Made by @PndaBoi, Hope it helps! :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment