Over the past few months I've been using alittle bit of pre-made text I found on the net to make certain jobs "donator only" meaning if you want to become "mutant" you have to be in the group donator or Admin.
function(ply) return ply:GetUserGroup() == "donator" or ply:IsAdmin() end)
But now I have a second rank, above donator and requires the job: "mutant" and "swatleader".
How would I go about making the rank (V.I.P) have access to mutant+swatleader?
I have tried:
function(ply) return ply:GetUserGroup() == "donator" or "v.i.p" or ply:IsAdmin() end)