jusjusme t1_ix8eh2g wrote
Lol Kinda wanna know how you did this. Newbie to Python (like 1 week lessons).
The fact that you spammed them in your language makes it harder to explain. You could have said you were hacked if it was in English. Good luck explaining that to your parents.
gms29 OP t1_ix9mzmq wrote
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]
gms29 OP t1_ix9n7e9 wrote
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!
jusjusme t1_ix9nsgo wrote
😂. Classic. My parents (I’m first gen) don’t even understand how Bluetooth headphones work so they’d fall for this too. I may be over 30 but I still fear the slipper.
gms29 OP t1_ix9pbn8 wrote
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 !!
Viewing a single comment thread. View all comments