Server management commands affect the entire server environment rather than individual players. These include private server creation and teleportation, audio playback and reverb control, time of day adjustment, server-wide hint countdowns, script execution, and workspace cleanup.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.
Command Reference
| Command | Usage | Permission | Description |
|---|---|---|---|
createserver | :createserver <Name> | 2 — Admin | Reserves a new private server instance for this place and registers it under the given name. |
deleteserver | :deleteserver <Name> | 2 — Admin | Removes the named private server from the session registry. |
joinserver | :joinserver <Name> | 1 — Moderator | Teleports the caller to the named private server. |
privateservers | :privateservers | 1 — Moderator | Displays a list of all currently registered private servers for this session. |
toreserved | :toreserved <User(s)> <Name> | 2 — Admin | Teleports the specified user(s) to the named private server. |
music | :music <ID> [loop] | 1 — Moderator | Plays the audio asset with the specified Roblox ID server-wide. Optionally pass any second argument to loop the sound. |
play | :play <ID> [loop] | 1 — Moderator | Alias for :music. |
volume | :volume <Number> | 1 — Moderator | Sets the volume of the currently playing sound to the specified number. |
vol | :vol <Number> | 1 — Moderator | Changes the currently playing sound’s volume to the specified number. |
pitch | :pitch <Number> | 1 — Moderator | Sets the pitch of the currently playing sound to the specified number. |
stopsound | :stopsound | 1 — Moderator | Stops and destroys the currently playing server-wide sound. |
reverbs | :reverbs | 1 — Moderator | Displays a list of available Roblox ReverbType presets. Select one to apply it as the server-wide ambient reverb. |
time | :time <Time> | 1 — Moderator | Sets the Lighting TimeOfDay to the specified time (e.g., 14:30:00 for 2:30 PM). |
countdown | :countdown <Number> | 1 — Moderator | Starts a visible hint countdown from the specified number, decrementing by 1 each second. Use :countdown off to cancel. |
s | :s <Code> | 3 — Super Admin | Executes arbitrary Lua code on the server. Returns an error message if the code fails. |
clear | :clear | 1 — Moderator | Clears all server messages, hints, and countdowns. Also stops any active countdown timer. |
clr | :clr | 1 — Moderator | Alias for :clear. |
shutdown | :shutdown | 2 — Admin | Shuts down the server, sending all players back to the Roblox home screen with the configured Shutdown Reason message. |
Private Servers
BAR includes a session-level private server management system built on top of Roblox’sTeleportService:ReserveServer:
:createserver <Name>— CallsTeleportService:ReserveServer(game.PlaceId)to reserve a fresh server instance, then stores the reservation code and name in memory. The name is chat-filtered before being accepted.:deleteserver <Name>— Removes the named entry from the in-memory registry. The underlying reserved server continues to exist until it empties; this only removes the BAR reference.:joinserver <Name>— Teleports the caller to the reserved server matching the given name viaTeleportService:TeleportToPrivateServer.:toreserved <User(s)> <Name>— Teleports specified players to the named reserved server.:privateservers— Lists all currently registered private server names for this session.
Script Execution
:s <Code> runs arbitrary Lua code in the server environment using BAR’s internal Loadstring module. The code runs with full server-side access, including all Roblox services and the game workspace.
Countdown
:countdown <Number> starts a server-wide visible hint countdown displayed to all players. The countdown decrements by 1 every second:
:countdown off or :clear to cancel a running countdown at any time.
Reverbs
:reverbs opens a BAR list panel populated with all Enum.ReverbType values available in Roblox:
NoReverbGenericReverbPaddedCellRoomBathroomStairWellAuditoriumConcertHallCaveArenaHangarCarpettedHallwayHallwayStoneCorridorAlleyForestCityMountainsQuarryPlainParkingLotSewerPipeUnderWaterDruggedDizzyPsychotic
SoundService.AmbientReverb for all players in the server. Changes take effect immediately and are not persisted across server restarts.