BAR optionally integrates with Trello, letting you manage ban lists and admin data from a Trello board — useful for teams who want a visual interface for moderation. When enabled, BAR reads ban data from your Trello board and enforces those bans automatically on player join.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/Verveo/Basic-Admin-Remade/llms.txt
Use this file to discover all available pages before exploring further.
Prerequisites
Trello integration relies on Roblox’sHttpService to make outbound API requests. Before configuring Trello in BAR, you must enable HTTP requests for your game:
- Open your game in Roblox Studio.
- Go to Game Settings → Security.
- Enable Allow HTTP Requests.
Configuration
The Trello fields are located inmain_script.lua inside the Configuration table:
| Field | Type | Description |
|---|---|---|
Trello | boolean | Master toggle. Set to true to enable Trello integration. |
Trello Board | string | The ID of your Trello board. Found in the board’s URL: trello.com/b/<board-id>/... |
Trello App Key | string | Your personal Trello API application key. |
Trello Token | string | Your personal Trello API token, generated from your app key. |
Setup Steps
- Enable HttpService in Roblox Studio under Game Settings → Security → Allow HTTP Requests.
- Create a Trello board dedicated to your game’s moderation data. Navigate to trello.com/app-key to retrieve your App Key and generate a Token.
- Fill in the config in
main_script.lua: - Publish your game. BAR will now sync ban data with your Trello board on server start and enforce Trello-sourced bans on player join.
In-Game Command
| Command | Usage | Permission | Description |
|---|---|---|---|
:trellobans | :trellobans | 1 | Displays all bans currently sourced from the configured Trello board. |
:trellobans will display the hint: “Trello is not configured.”
Trello integration is entirely optional. BAR functions fully without it — DataStore-based bans (set via
:ban and :pban) work independently and do not require Trello to be configured.