This is a Python program which can be used to spam text.
It works in almost every popular social media app (WhatsApp, Instagram, Discord, Telegram, Facebook) and probably in some games.
The reason why I said "some games" is because some games block the SendInput()
function from Win32API. People have found alternatives to this, but we won't be using those.
- Make sure you have Python installed on your computer. To check that, open your command prompt / terminal and type
py
(orpython3
if you're on Mac/Linux). If no errors show up then you are good to go. - Download the Python file by clicking on
Code -> Download ZIP
- Extract the downloaded ZIP
- Go to the extracted folder and make a new file named
input.txt
, and put any text you want to spam. - Open your command prompt / terminal in the extracted folder, and type
py main.py
(orpython3 main.py
if you're on Mac/Linux). - After you ran your program, go to the chat box quickly, and let the program do its magic.
For more control over the spammer, we have arguments built in to the py main.py
command.
In PythonSpammer, command arguments with the value are taken like this:
--argumentName:Value
Now, here are all arguments available:
This argument makes the program press a key before executing.
If you are trying to spam in a game where it's required to press a key to open the chat box, this is useful.
If you want to spam in Roblox, this is what you should use:
py main.py --pressBeforeSpam:/
This will make the program press /
(the key to open chat) before spamming.
Currently, the program does not support key combinations (example: Ctrl+T, not a real key to open chat in a game I know of). This may be added in the future though.
By default, the program will spam infinitely. You can provide the times the program should spam before it stops.
If you want to spam 100 times, this is what you should use:
py main.py --limitedSpam:100
NOTE: This setting is absolutely not recommended to change whilst spamming in Discord. The reason for that is that you can easily get rate-limited and that ruins the spam.
By default, the spam speed will be 0.7 seconds.
If you are spamming in other social media platforms such as WhatsApp, Instagram, Telegram, Facebook there is no limit on how fast you can spam. You can make the spammer go sicko mode and have a delay of 0.01 seconds, this is still not recommended.
If you want to do that, this is what you should use:
py main.py --spamSpeed:0.01
NOTE: By enabling this argument, it will be difficult to stop the program. It is recommend this argument will be used together with --limitedSpam.
After 10 words, the program will stop for 2 seconds, and it will keep repeating until the program is stopped.
As noted above, this should be used with --limitedSpam
, and we will demonstrate it here.
py main.py --noDelay --limitedSpam:50
More arguments will be added in the future.