pyrobloxbot is an open-source package for making Roblox bots that interact with the game strictly through the keyboard.
It simplifies this process by providing features like:
- Methods for most actions your character can make, like movement, chatting, resetting, etc
- Methods to navigate through game ui elements through the keyboard only, to avoid needing the mouse which is unreliable
- Methods to join games, join users and join private servers
- Highly customizable bots, by changing different options to fit your use case
- A global failsafe to avoid your bot going rogue
- Support for multi account bots
pyrobloxbot can be installed using pip, by doing:
pip install pyrobloxbotNote
For now, pyrobloxbot is Windows only. See the issue tracker for updates.
Read the documentation at https://pyrobloxbot.readthedocs.io/en/latest/index.html
There you'll find:
- API references
- Basic and advanced usage guides
- Step by step, real life examples
- Pieces of wisdom I've gathered after making tens of bots with pyrobloxbot
Don't hesitate to ask!
You can check the FAQ, open an issue, or contact me on discord (mews75)!
All feature requests are welcome!
You can submit them on github by opening an issue and using the feature template.
Also, feel free to share anything you make with me through my discord (mews75)!
import pyrobloxbot as bot
#Send a message in chat
bot.chat("Hello world!")
#Walk forward for 5 seconds
bot.walk_forward(5)
#Reset player character
bot.reset_player()