Skip to main content

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.

Installing Basic Admin Remade takes only a few minutes. The system is distributed as a Roblox model file (.rbxm) that you insert directly into ServerScriptService in Roblox Studio. Once placed, it loads automatically when the game server starts — no additional wiring required.

Requirements

  • Roblox Studio (any recent version)
  • HttpService enabled — required for Trello integration and the automatic version-check feature. Not needed for basic admin functionality.

Installation Steps

1

Download the model

Grab the latest release of Basic Admin Remade from one of the official sources:Both sources provide the same up-to-date model file. The GitHub Releases page also includes changelogs for each version.
2

Open your game in Roblox Studio

Launch Roblox Studio and open the game you want to add admin to. If you are starting fresh, create a new Baseplate experience.
3

Insert the model into ServerScriptService

In the Studio Explorer panel, right-click ServerScriptService and choose Insert from File. Select the .rbxm file you downloaded.Alternatively, drag and drop the file directly into the ServerScriptService node in the Explorer.
You must place the BAR model inside ServerScriptService and nowhere else. If you place it in Workspace, ReplicatedStorage, or any other service, it will not load correctly. The loader script inside the model will attempt to move itself to ServerScriptService at runtime, but this behavior is not guaranteed in all contexts — always place it correctly from the start.
4

Verify the Loader ID

Open the main_script Script inside the model and confirm the Loader ID field at the top of the Configuration table reads 9450667008. This is the official MainModule asset ID used to require the core system.
local Configuration = {
    ['Loader ID'] = 9450667008,
    -- ...
}
Do not change this value unless you are self-hosting a fork of the MainModule.
5

Enable HttpService (if needed)

If you plan to use Trello integration or want the automatic version-check notification for Game Creator admins, you must enable HttpService:
  1. In Studio, go to Home → Game Settings → Security
  2. Toggle Allow HTTP Requests to On
  3. Click Save
HttpService is not required for core admin commands, banning, rank assignment, or any other standard feature.

After Installation

As the creator of the game, you are automatically owner-admined at the Game Creator rank (level 4) the moment you join your own game. You do not need to add your own User ID to any table in the configuration — BAR detects the game.CreatorId automatically.

Verify the Install

To confirm BAR is running correctly:
  1. Click Play (or Play Here) in Roblox Studio to start a local server session.
  2. In the in-game chat, type :cmds and press Enter.
  3. The BAR commands panel should open, showing all commands available at your rank level.
If the panel does not appear, check the Output window in Studio for any errors related to the Loader ID or ServerScriptService placement.

Build docs developers (and LLMs) love