Permissions
Technified uses permission levels to control command access.
Levels
| Level | Name | Access |
|---|---|---|
| 0 | Player | Basic commands (:cmds, :ping) |
| 1 | VIP | Early access features |
| 2 | Moderator | Kick, warn, mute, freeze |
| 3 | Admin | Ban, server lock, announcements |
| 4 | SuperAdmin | All admin features |
| 5 | HeadAdmin | Shutdown, execute, global announce |
| 6 | Owner | Game owner |
| 10 | Creator | Full access, cannot be targeted |
Higher levels inherit all commands from lower levels.
How permissions are assigned
- API sync — From dashboard Discord role mappings
- Group permissions — From Roblox group ranks
- Fallback — From Config UserID mappings
- Default — Level 0
Dashboard setup
- Go to technified.xyz (opens in a new tab) > Permissions
- Map Discord roles to permission levels
- In-game, use
:refreshto reload
Fallback permissions
For when the API is unavailable:
FallbackPermissions = {
[123456789] = 6, -- Your UserID = Owner
[987654321] = 3, -- Friend = Admin
}Group permissions
Link Roblox group ranks:
GroupPermissions = {
{ GroupId = 12345678, MinRank = 255, Level = 6 },
{ GroupId = 12345678, MinRank = 200, Level = 3 },
{ GroupId = 12345678, MinRank = 100, Level = 2 },
}Targeting rules
- Cannot target players with equal or higher level
- Creator level (10) cannot be targeted by anyone
- Use
:refreshto reload permissions after dashboard changes