Roblox Admin
Permissions & Ranks

Permissions

Technified uses permission levels to control command access.


Levels

LevelNameAccess
0PlayerBasic commands (:cmds, :ping)
1VIPEarly access features
2ModeratorKick, warn, mute, freeze
3AdminBan, server lock, announcements
4SuperAdminAll admin features
5HeadAdminShutdown, execute, global announce
6OwnerGame owner
10CreatorFull access, cannot be targeted

Higher levels inherit all commands from lower levels.


How permissions are assigned

  1. API sync — From dashboard Discord role mappings
  2. Group permissions — From Roblox group ranks
  3. Fallback — From Config UserID mappings
  4. Default — Level 0

Dashboard setup

  1. Go to technified.xyz (opens in a new tab) > Permissions
  2. Map Discord roles to permission levels
  3. In-game, use :refresh to 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 :refresh to reload permissions after dashboard changes