Skip to content

Commit

Permalink
Update spam.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mangoess authored Jan 16, 2021
1 parent bcfb18d commit 2cfca54
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions spam.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
import pyautogui, time
import pyautogui
import time
import keyboard

time.sleep(3)
f = open("shrekmovie.txt", 'r')

f = open("shrekmovie.txt", 'r') #PHYSICAL SPAM SCRIPT
for word in f:
time.sleep(0.50)
pyautogui.typewrite(word)
pyautogui.press("enter")

while True: #STANDARD COMBO PROCEDURE
if keyboard.is_pressed('CTRL'):
if keyboard.is_pressed('X'):
break #STOP SCRIPT WHEN KEYBIND TOGGLED

1 comment on commit 2cfca54

@AProXD
Copy link

@AProXD AProXD commented on 2cfca54 Jan 17, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nice

Please sign in to comment.