Once BAR is installed in ServerScriptService, all you need to do is openDocumentation 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.
main_script, fill in a few fields in the Configuration table, and hit Play. This quickstart walks through the minimum configuration needed to have a fully working admin setup — from adding your first Super Admin to typing your first command in chat.
The Configuration Table
The entire BAR configuration lives in theConfiguration table at the top of main_script. Here is the full table with all key fields you will want to review:
Open main_script in Roblox Studio
In the Explorer panel, expand ServerScriptService → BasicAdminRemade (or whatever the model is named) and double-click main_script to open it in the Script Editor.You will see the
Configuration table near the top of the file, just below the header comment block.Add your Roblox User ID to Super Admins
Find the You can add multiple users the same way:
['Super Admins'] table and add your Roblox User ID as a key with your username as the value. User IDs are numbers — you can find yours at roblox.com/users/<id>/profile or by searching your profile URL.As the game creator, you are automatically given Game Creator rank (level 4) when you join your own game. You do not need to add yourself to any table — your
game.CreatorId is detected automatically by BAR.(Optional) Change the command prefix
The default prefix is The prefix must be exactly one character. If a multi-character string is provided, BAR ignores it and falls back to the default
: — so commands are typed as :cmds, :kick PlayerName, etc. If you want a different prefix (for example ! or /), update the ['Prefix'] field:':'.Place in ServerScriptService and Play
Save your changes (
Ctrl+S), then click Play in Roblox Studio to start a local test session. BAR loads on the server and sets up all commands, permissions, and UI automatically.If Creator Debugging is true (the default), any Game Creator-rank admin who joins will receive a hint notification if the installed version is out of date.Type :cmds to see all commands
In the in-game chat, type
:cmds (or your custom prefix + cmds) and press Enter. The BAR commands panel will open and show every command you have access to at your current rank.From here you can click any command in the panel to auto-fill it, or type commands directly in chat.Your First Commands
Once you are in-game with admin, try these common commands to get familiar with BAR:| Command | Description |
|---|---|
:cmds | Open the full command list for your rank |
:admins | View all configured admins and their rank levels |
:kick <player> | Kick a player from the server |
:ban <player> | Temporarily ban a player for this server session |
:m <message> | Display a message popup to all players with your name as the title |
:sm <message> | Display a server message to all players |
:h <message> | Send a hint notification to all players |
:fly <player> | Give a player the ability to fly (CTRL to go down, Space to move up) |
:tp <player1> <player2> | Teleport player1 to player2 |
:pban <player> | Permanently ban a player (persists across server restarts via DataStore) |
Command Confirmation is enabled by default (
['Command Confirmation'] = true). When you run a broad destructive command — like :ban all or :pban all — BAR will show you a confirmation dialog listing the affected players before executing. You must confirm before the command runs. This prevents accidental mass actions. You can disable this behavior by setting ['Command Confirmation'] = false in the Configuration table.Next Steps
Main Settings Reference
Explore every field in the Configuration table and ExtraSettings in detail.
Commands Overview
Browse the full list of 50+ commands, their syntax, and required permission levels.