📌Getting Started
Installation
Grab the model from here
Open Roblox Studio
Find the model inside Toolbox -> My Models
Insert the model into ServerScriptService or Workspace
Done!
Configuration
Permissions/Ranks
In the Ranks section of the Settings module, you are able to setup permissions for individual users and Roblox groups. By default, the owner of the game will be given owner permissions. (Level 4)
Ranks = {
--Examples
["Roblox"] = 3, -- Roblox is the username and 3 is the permission level
[1] = 3, -- 1 Is the UserId and 3 is the permission level
["12345:255"] = 3, -- 12345 is the roblox group ID, 255 is the group rank, and 3 is the permission level
},
Rank Names
In the RankLookup section of the Settings module, you are able to specify what the textual equivilent is to each of the numbered ranks. You can modify to fit your needs.
RankLookup = {
[0] = "Player", -- Default rank
[1] = "Temp-Mod",
[2] = "Mod",
[3] = "Admin",
[4] = "Owner"
},
Data Key
The DataStoreKey lets you set a custom key, which is used to store all of EasyAdmin's saved data. It is recommended that you change this key from the default value. It does not matter what the key is.
DataStoreKey = "EasyAdminDefault",
Changing this key will reset all of the admin's data.
Prefix, Deliminator, Separator
The prefix is the character used that will signals a message to be run as a command. For example, to execute a command with the Prefix set to the default value of ;
you will need to chat ;kill waverlycole
Prefix = ";",
Last updated