gms29 OP t1_ix9mzmq wrote
Reply to comment by jusjusme in TIFU by spamming an array of the most explicit words in my family group using a python script by gms29
Assuming you already have python, go to command prompt - pip install pyautogui
If youre using IDLE - just copy paste this code
import random import pyautogui as pg import time
string=('noob','baby') #words you wanna print time.sleep(8)
for i in range (100): a=random.choice(string) pg.write(a) pg.press('enter')
If youre gonna do it vscode, you’ll need to setup virtual environment to install the library, cut copy paste and youre good to go. Make sure youre using python version 3.9 or 3.7 (i forgot on which i ran the code) . Youre good to goo!!
Edit : the loop decides the number of messages you wanna send
[deleted] t1_ix9nh18 wrote
[removed]
Viewing a single comment thread. View all comments