/Adonis

ROBLOX Server Administration System

Primary LanguageLuaMIT LicenseMIT

 

Adonis is a server moderation and management system created for use on the Roblox platform.

Installation

📢 New to Adonis? Take a look at our official quick start video here.
If you get stuck, feel free to ask for assistance in our Discord server.

Method 1: Official Roblox Model

  • Take a copy of the Adonis loader model from the Roblox library

  • Insert the model into Studio using the Toolbox into ServerScriptService

Method 2: GitHub Releases

  • Download the rbxm file snapshot from the latest release
  • Import the model file into Studio
    • Note: By default, snapshots included in releases have DebugMode enabled.

Method 3: Filesystem

  • Download the repository to your computer's file system
  • Install and use a plugin like Rojo to compile Adonis into a rbxmx file
    • If using Rojo, you can run rojo build /path/to/adonis -o Adonis.rbxmx to build a rbxmx
  • Import the compiled model file into Studio
    • Note: By default, loaders compiled from the repository have DebugMode enabled. This method compiles the bleeding edge version of Adonis, which may be unstable.

Debug Mode

The Adonis loader provides a DebugMode option which will load a local copy of the MainModule rather than fetching the latest version. This could be useful if you want to stay on a particular version of Adonis or want to maintain a custom version for your game. Debug mode expects the MainModule to share the same parent with the loader model (e.g. both should be in ServerScriptService). By default, snapshots provided in releases have DebugMode enabled.

Toggling debug mode

  • Open Adonis_Loader > Loader > Loader
  • Change DebugMode at the end of the data table to the desired value (e.g. DebugMode = false)

Links

Contributing

The purpose of this repository is to allow others to contribute and make improvements to Adonis. Even if you've never contributed on GitHub before, we would appreciate any contributions that you can provide.

Contributing Guide

Read the contributing guide to get a better understanding of our development process and workflow, along with answers to common questions related to contributing to Adonis.

License

Adonis is available under the terms of the MIT license. Read more details about the license here.