Help with table teams

Hi, I just made this table and I need to print the [1] of the table, how do I do that?

example:

if teamOrder [1] then
print ("First in the table")
end

script:

local teamOrder = {
[1] = Admins,
[2] = noAdmins,
[3] = newJoined
}

well that should be pretty simple, just

print(teamOrder[1])
1 Like

if teamOrder[1] then
print(teamOrder[1])
end

1 Like

lol was pretty easy :scream: thanks you guys a lot!!