Installation
Get AGMS running in your Roblox experience from the Library bundle.
AGMS ships as a zip bundle from your Library after purchase. Import the folders into the matching Roblox services in Studio.
Import into Studio
- Unzip the AGMS bundle from your Library download.
- In Roblox Studio, open the place where you want AGMS installed.
- Place each top-level AGMS folder into the matching service:
| Source in bundle | Destination in Studio |
|---|---|
ReplicatedStorage/AGMS | ReplicatedStorage |
ServerScriptService/AGMS | ServerScriptService |
StarterPlayerScripts/AGMS | StarterPlayer → StarterPlayerScripts |
- Confirm each script is the correct instance type (
Scriptfor server init,LocalScriptfor client init,ModuleScriptfor modules). - Optionally create ReplicatedStorage → AGMS_Addons (Folder) for custom command addons.
First-time configuration
Open ReplicatedStorage → AGMS → Config and add at least one entry to
Config.Admins:
Config.Admins = {
[1234567890] = 6, -- replace with your Roblox UserId, level 6 = Owner
}
Verify
Start the experience. Press ; (configurable) to toggle the panel. You should
see the startup banner and reach the dashboard within a second.
For Discord logging, add a ServerStorage StringValue named
AGMS_DiscordWebhookUrl (see Game settings).