The Remote Command system lets you send commands to any registered Botify PC via theDocumentation Index
Fetch the complete documentation index at: https://docs.botifymanager.xyz/llms.txt
Use this file to discover all available pages before exploring further.
botify_commands MongoDB collection — no direct network connection to the target PC required.
How It Works
Insert Command
A command document is inserted into the
botify_commands MongoDB collection, targeting a specific PC by target_pc name.Node Polls
The target Botify instance polls
botify_commands every few seconds and finds the pending command.Auth Verification
The node verifies the
auth_token matches its command_token. If it doesn’t match, the command is silently rejected.Command Reference
Engine Control
| Command | Action | Parameters |
|---|---|---|
start_247 | Start 24/7 Alting mode | — |
start_normal | Launch N alts (Normal Launch) | count (default: 5) |
stop | Stop the current engine and close all bots | — |
restart | Restart the Botify EXE entirely | — |
Account Management
| Command | Action | Parameters |
|---|---|---|
kill_account | Kill a specific running Roblox instance | username (required) |
Diagnostics
| Command | Action | Response |
|---|---|---|
screenshot | Capture screen and upload to botify_screenshots | Base64 PNG stored in MongoDB |
system_stats | Return CPU, RAM, disk, and instance stats | JSON stats object |
UI Control
| Command | Action | Parameters |
|---|---|---|
lock | Disable the Botify UI on the target PC (freeze all controls) | — |
unlock | Re-enable the UI after a lock command | — |
broadcast | Display a notification banner in the Botify app | message (string), from (string) |
Command Document Format
Example Commands
system_stats Response
Audit History
After execution, every command is logged inbotify_command_history:
Security
auth_tokenis a 32-byte random hex string generated on first run, stored inbotify_nodes- Commands without a matching token are silently rejected — no error is returned to prevent enumeration
- The
lockcommand disables all UI controls on the target PC — useful for preventing interference during automated runs owner_idverification is optional but recommended for an additional layer of access control