Quick Start
Use this guide when you are setting up RoControl for the first time.
Setup checklist
- Open the dashboard at
https://rocontrol.duckdns.org. - Connect with Roblox.
- Create or select a workspace.
- Add a Roblox game using its Universe ID.
- Enable the modules your team needs.
- Invite teammates and assign permissions.
- Wire Roblox server code to the runtime API if you use Live Config.
Minimal first setup
For a single game, start with this order:
| Step | Recommended action |
|---|---|
| 1 | Add the game from Settings |
| 2 | Enable Live Config |
| 3 | Create a Production profile |
| 4 | Publish one small config value |
| 5 | Fetch the config from Roblox server code |
| 6 | Add Jobs or Icon Automation only when the base config works |
First config example
Create a profile and add a small config object:
{
"features": {
"dailyRewards": true
},
"economy": {
"coinMultiplier": 1
}
}Then publish it to Production and fetch it from your Roblox server script.