Admins = {} function AddTable() for k, v in pairs(player.GetAll()) do if (v:IsAdmin() and not table.HasValue(Admins, v)) then table.insert(Admins, v); if (v:IsSuperAdmin() and not table.HasValue(Admins, v)) then table.insert(Admins, v); end end end end hook.Add("HUDPaint", "mapexadmin", function() local textLength = surface.GetTextSize(table.concat(Admins) ) / 3 draw.RoundedBox(0, ScrW() - 180, ScrH() - ScrH() + 25, 180, 30 + textLength, Color(0,0,0,100)) draw.SimpleText("Admins", "Herp", ScrW() - 120, ScrH() - ScrH() + 27, HERA_MAIN) for k, v in pairs(Admins) do print("hello") draw.SimpleText(v, "Herp", ScrW() - 140, ScrH() - ScrH() + 45 + x, Color(255, 255, 255, 255)) x = x + 15 end end)