loadstring(game:HttpGet("https://raw.githubusercontent.com/neatdevs/Deem-Admin/refs/heads/main/admin.lua"))()Update notication/changelogs
If you want to be updated every time Deem Admin updates then please be sure to join our discord as it's our main way of getting the lastest news from the team at Deem The link can be found here: discord.gg/su7ycRRJyz
Deem Admin is a modular admin system compatible with the legacy chat system or UI. It includes only essential universal commands by default.
Upon execution, a folder named Deem_commands will be created. To add a custom command:
-
Create a File: Add a new
.luafile to theDeem_commandsfolder.- Deem Admin treats each
.luafile as a separate command.
- Deem Admin treats each
-
Define Command Logic: Write the desired functionality inside the file.
-
Name the File: The file's name becomes the command's name.
- Example: A file named
HelloWorld.luacreates aHelloWorldcommand.
- Example: A file named
-
Run the Command:
- Type the file name (e.g.,
HelloWorld) in the input to execute it. - Commands are not case-sensitive (e.g.,
HeLLoWoRLdwill also work).
- Type the file name (e.g.,
-
Always in include the return
- If you do not include the return as the code part of the codde it won't execute and outputs an error.
PS: If you want to output any text to the console all you need to do is use: _G.CreateLabel.
Example command/plugin for reference:
return function(args)
print("TestCommand executed with args: " .. args)
end-
Compatibility:
Deem Admin has been tested with the Windows executor SirHurt. While most exploits should work, some may not be fully supported. -
File Access Requirements:
The script requires read and write file functionality. If your exploit lacks these features, the script might not function correctly. -
queue_on_teleport Somewhat Needed: To properly load the script right after serverhopping or rejoining queue_on_teleport is required if you don't want to manually re-execute the script.