Getting Started
Learn about the basics of Custom Commands and how to set them up.
Last updated
Learn about the basics of Custom Commands and how to set them up.
Last updated
The Custom Commands system is a modular framework designed to allow developers to create and register interactive, event-driven commands directly into EXE 6.
Each custom command can be configured with a bunch of parameters that are 100% customizable and easy to understand.
Before creating your very first command, You need to get the module for it! Here is the code of how to quickly get to it.
After getting the module, You can create your very first command with RegisterCommand("Name")
Make sure to register your Custom Commands under the custom_command
folder inside the EXE6
ScreenGui. This will circumvent replacements and reset upon updating.
game.ServerScriptService.EXE6_SERVER.Components.EXE6.custom_commands
Now, You need to know the Attributes of your command, Check them on the next page!