Getting Started with SimpleAdmin

Installation

Installing SimpleAdmin is pretty easy! Follow the steps below to get started.

  1. Grab the system from here.

  2. Open Roblox Studio

  3. Navigate to your toolbox -> My Models

  4. Click on "SimpleAdmin"

  5. Drag it into ServerScriptService or Workspace

  6. All done!

SimpleAdmin updates are deployed automatically. You won't need to manually port to the newest version.

Fixes

Not working in Studio

If you're trying to use SimpleAdmin in studio, you'll need to enable studio access to API services. This is because by default, Roblox Studio blocks DataStore access.

  1. Open your place in studio

  2. Navigate to the top and find "Game Settings"

  3. Open the "Security" tab

  4. Enable "Enable Studio Access to API Services"

  5. You're all set!

Game Settings in Roblox Studio

If you've already completed the steps above and still cannot get SimpleAdmin to work, please open a support ticket in our Discord server.

Permissions

As the owner of the game, the system will automatically give you developer permissions. You'll need to be able to hand out permissions to your players though, right? If you want to do it in your settings file, you can find the permissions tables and modify them accordingly.

-- Comma separated list of names or user IDs
Moderators = {"ROBLOX", 1, "Builderman"};
Admins = {};
Owners = {};
Developers = {"Player1"}; 

If you would like to hand out permissions while already in-game, you can use commands to do it and they'll save to a DataStore.

Prefix, Deliminator, and Separator

Your prefix is going to be the character that initializes all of your commands. If you haven't changed the prefix, it will default to : until you change it in your settings.

-- An example of the command prefix (:)
:kick crywink

Last updated

Was this helpful?