Creating a module
Learn to code your own module
Setting up the file structure
lua/
└── guthscp/
└── modules/
└── <module_id>/
├── <*/> -- optional folders containing lua files
├── <*.lua> -- optional lua files
└── main.lua -- the entry pointDefining the module
Enabling Hot-Reload
Last updated