Metadata-Version: 2.1
Name: pyrobloxbot
Version: 1.0.6
Summary: A python library to control the roblox character and interact with game ui through keyboard inputs
Project-URL: Homepage, https://github.com/Mews/py-roblox-bot
Project-URL: Issues, https://github.com/Mews/py-roblox-bot/issues
Author-email: Mews <tiraraspas@gmail.com>
License-File: LICENSE
Keywords: bot,keyboard,roblox
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Requires-Dist: pydirectinput
Requires-Dist: pygetwindow
Requires-Dist: pyperclip
Requires-Dist: pywin32
Description-Content-Type: text/markdown


# 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 and ensures that the roblox window is in focus to avoid unintentional consequences of sending keyboard inputs

## Installation

Install pyrobloxbot using ```pip install pyrobloxbot```

## Usage/Examples

```python
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

[Read the full documentation](https://pyrobloxbot.readthedocs.io/en/latest/pyrobloxbot.html)

