Viewing a single comment thread. View all comments

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