Basic Admin Essentials
All Working - mainModule
Recently, Basic Admin Essentials 2.0 by @r_r had gotten it’s mainModule taken off the platform by Roblox. The Admin System also experienced various bugs such as the :m, :h, :pm and :sm commands not working.
To continue, I’ve boughten a fix to this along with various other bugs in a completely fixed, original Basic Admin Essentials 2.0 version by @r_r. You may download it’s .rbxm file, load it into your game’s Workspace, place it in ServerScriptService and ungroup to use. You may also modify it’s functional mainModule if you have a good understanding of what you are doing.
Basic Admin Essentials.rbxm (Download file)
From my older post, here is how to modify Basic Admin Essentials 2.0.
Custom Names For Admin Ranks
To change the name of the admin levels/ranks that appear to a player when they join the game like:
You will have to locate Essential Code
After locating it, Open the Essential Code Script and go to line 2585. You will see the following code:
testService:Message("Basic Admin Essentials 2.0 | "..clientConfig.Version.." | Prefix: \""..clientConfig.Prefix.."\" | Act. Prefix: \""..clientConfig.actionPrefix.."\"") --Change "Basic Admin Essentials 2.0 | " to print statement
local adminTitle
if clientConfig.Permission == 1 then
adminTitle = "Moderator" --Change Moderator Name
elseif clientConfig.Permission == 2 then
adminTitle = "Administrator" --Change Administator Name
elseif clientConfig.Permission == 3 then
adminTitle = "Super Admin" --Change Super Admin Name
elseif clientConfig.Permission == 4 then
adminTitle = "Creator Admin" --Change Creator Admin Name
testService:Message("Basic Admin Essentials 2.0 | DP: "..tostring(clientConfig.donorEnabled).." | CD: "..tostring(clientConfig.Debugging)) --Change "Basic Admin Essentials 2.0 | " to print statement. DO NOT CHANGE DP
end
if adminTitle then
pendNotif(adminTitle,'Click for Commands',{'Cmds'})
end
return clientConfig.Key
end
end
end
Please make sure you do not change the DP Text or remove it from line 2596 or else the script might break.
The script block explains the code already. Just follow the --Text exactly and it will work. The Basic Admin loaded thing(2 of them) is the Print statement that you can see in the developer console.
If you need any assistance with the admin system or have any questions, feel free to DM me. In the near future, I will be writing another Basic Admin post for a tutorial. The .rbxm file will also be replaced with a Roblox Creator Store Model Asset soon.
Thank you!