Ahhahaha!! My parents still kinda understand how tech works but not so much as to my extent! But yea, being 20yrs old I still fear the slipper and the fact that my dad did not see the messages was so so soooo relieving XD !!
I blamed it on said friend. Said that we were fooling around and he wanted to try but he forgot the change the chat! They arent gonna know that he wasnt with me XD!
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
gms29 OP t1_ix9pbn8 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
Ahhahaha!! My parents still kinda understand how tech works but not so much as to my extent! But yea, being 20yrs old I still fear the slipper and the fact that my dad did not see the messages was so so soooo relieving XD !!