Skip to content

Instantly share code, notes, and snippets.

View thebowenfeng's full-sized avatar

Bowen Feng thebowenfeng

View GitHub Profile
@thebowenfeng
thebowenfeng / SpamBot.vbs
Last active November 1, 2020 12:25
An effective spambot that works on any browser or software based chat groups that use enter to send messages.
set shell = CreateObject ("wscript.shell")
strtext = inputbox ("Write down your message you like to spam")
strtimes = inputbox ("How many times do you like to spam?")
strspeed = inputbox ("How fast do you like to spam? (1000 = one per sec, 100 = 10 per sec etc)")
strtimeneed = inputbox ("How many SECONDS do you need to get to your victems input box?")
If not isnumeric (strtimes & strspeed & strtimeneed) then
msgbox "You entered something else then a number on Times, Speed and/or Time need. shutting down"
wscript.quit
End If