Getting Started with SimpleAdmin
Installation
Installing SimpleAdmin is pretty easy! Follow the steps below to get started.
Grab the system from here.
Open Roblox Studio
Navigate to your toolbox -> My Models
Click on "SimpleAdmin"
Drag it into ServerScriptService or Workspace
All done!
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.
Open your place in studio
Navigate to the top and find "Game Settings"
Open the "Security" tab
Enable "Enable Studio Access to API Services"
You're all set!

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?