Submitted by gms29 t3_z0zo1p in tifu

Hey guys, This is really really embarrassing,

so I was fooling around and decide to make a python script to autospam messages stored in array through whatsapp web, I made it and spammed my family group with short stupid words (not explicit) As I was watching my creation do its work how it was supposed to, I decided to try it out on my friend.

Now ive know this friend for 5 years and to say we talk with each other in an uncivilized manner is an understatement. So what I do is I make an array of the most explicit words in my language and load it into the program and open his chat to spam the message 500 times!.

It is working perfectly fine, blasting the worst bad words to that fucker 500 times while I sit with an evil grin on my face.

At the same time, my sister and mom are still discussing about what I did, my dumbass opens the chat while the program is running to rreply to them, now the missiles are still getting fired, just hitting the wrong target. I go into panic, changing chats as fast as I can. I was successful in doing so but guess who decided to give an explanation in the family group while the program is still running ..... ME!! the fireworks continue.

My sister is calling me, Mom is goin crazzyyy in the group all the while am trying to change the chats and listen to my sister die of laughter.....

luckily they are in a different state than mine as of now, so I dont have to meet them anytime soon..... Am so glad that my dad didnt check those messages, or atleast i hope he did not!!

Tl;dr - used python to spam explicit messages to my friend, spammed it in my family group!

Edit : obviously i did not mean array, used that to explain it at the heat of the moment, its a tupple XD!

14

Comments

You must log in or register to comment.

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.

2

G23_Mr_Gimp t1_ix8ln2x wrote

This is awesome! Reminds me of when I was on my early 20s and loaded Buffy's Sweary Keyboard (It might still be about if you Google it, but it was Flash based) as active desktop at my workplace. Hearing someone sing the word RECTUUUUUUUM had me in stitches at the time

2

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

2

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!

0

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.

3

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 !!

2