Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Kohls admin isn't giving me head admin?

Asked by 3 years ago

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

1 answer

Log in to vote
0
Answered by
Oxprem 140
3 years ago
Edited 3 years ago

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!

Ad

Answer this question