1

Locate the Authorized Module

Inside OrbitServer (which should be located in ServerScriptService), you should find the Authorized module.
If you can’t find OrbitServer, make sure you have followed our installation steps.
2

Authorize Users

Continue with opening the Module. Inside you’ll find a list with Usernames and Groups.
If there are any usernames inside (such as Roblox), you can safely delete them.
To authorize a Player, simply add this to the Players List:
["username"] = Roles.Admin,
and replace username with the players username.
To authorize a Group, add this to the Groups List:
[groupID] = {
	Ranks = {
		[rolePriority] = { Roles.Admin }
	}
},
…and modify it to your likings.