Use Debug Mode for Development
masterThe DebugMode feature is intended for development and debugging only. It enables features such as exposing a debugging API, enabling debugging commands for Creators, and preventing the model from being protected (e.g., not parenting it to nil).
When DebugMode is enabled, the loader will load a local copy of the MainModule from the same parent (e.g., ServerScriptService) instead of fetching the latest version from Roblox. This is useful for contributors working on the MainModule.
To toggle Debug Mode:
- Open
Adonis_Loader>Loader>Loader. - Locate the
datatable. - Change the
DebugModevalue at the end of the table totrueorfalse.
-- Inside Adonis_Loader > Loader > Loader
local data = {
-- ... other settings ...
DebugMode = false -- Set to true to enable debug features
}