pyrobloxbot

A python library to control the roblox character and interact with game ui through keyboard inputs


Keywords
bot, keyboard, roblox
License
GPL-3.0
Install
pip install pyrobloxbot==1.0.9

Documentation

pyrobloxbot

A python library to control the roblox character and interact with game ui through keyboard inputs

This library uses pydirectinput to control the keyboard

It has a decorator to ensure that the roblox window is in focus before sending keyboard inputs

There is also a global failsafe that can be triggered using control + m to avoid your bot getting out of control

  • The failsafe hotkey can be changed using set_failsafe_hotkey

    Example:

    #Sets the failsafe hotkey to control + shift + y
    set_failsafe_hotkey("ctrl", "shift", "y")

Installation

Install pyrobloxbot using pip install pyrobloxbot

Usage/Examples

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()

Documentation

Changelog