local plrs = {}
local name = ""
for i = 1, 5 do
    if i == 1 then
        name = "far"
    elseif i == 2 then
        name = "close"
    elseif i == 3 then
        name = "near"
    elseif i == 4 then
        name = "cvullo"
    elseif i == 5 then
        name = "thing"
    end
    plrs[i] = {name, false}
end
local admins = {
    "cvullo",
    "TNTPOWERS"
}
local isAdmin = false
for plr, name in pairs(plrs) do
   for i, v in pairs(admins) do
      if name[1] == v then
          name[2] = true
      end
   end
end


























Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: