Skip to main content
GroupId = 14665139, -- Roblox group ID
Permissions = {  
	Regular = {
		UserIds = {}, -- Users who get regular access by UserId
		RoleIds = {}, -- Ranks (roles) that get regular access
	},
	Admins = {
		UserIds = {}, -- Users who get admin access by UserId
		RoleIds = {255}, -- Ranks (roles) that get admin access
	},
},
GroupId is not required. You can simply set this to 0, and rely on using UserIds for the system. You do not need a group ID for the system to function.
Permissions contains two types of “roles” - Regular and Admins
  • Regular is just simple access to using the system, and is restricted by configuration like maximum props, cooldown
  • Admins is unrestricted access to the system, so no cooldowns, no maximum prop count, and so on
For each of the types, you can have any number of user IDs and role IDs that will be assigned that specific type of permissionFor example, RoleIds = {1, 2, 3, 4, 5, 6, 255} - anyone with these role IDs will be assigned to that permission type