I have a group game, so it wont give me head admin, so I wrote my name where it says to give head admin. here is all that I changed in the settings script
local Owners={TheNewSector_D} -- Can set SuperAdmins, & use all the commands local SuperAdmins={Probably_Kakyoin} -- Can set permanent admins, & shutdown the game local Admins={} -- Can ban, crash, & set Moderators/VIP local Mods={} -- Can kick, mute, & use most commands local VIP={} -- Can use nonabusive commands only on self
I think your problem is happening because the first two variables need to have "" around the name part, like this:
local Owners = {'TheNewSector_D'} -- Can set SuperAdmins, & use all the commands local SuperAdmins = {'Probably_Kakyoin'} -- Can set permanent admins, & shutdown the game local Admins = {} -- Can ban, crash, & set Moderators/VIP local Mods = {} -- Can kick, mute, & use most commands local VIP = {} -- Can use nonabusive commands only on self
Hope this helped!