So I have a table. My goal is to get the variables inside the table and compare them to something such as a players name. How would I do this multiple times? As the variables are named the same thing.
all i've really got is this but it will only check the first name in the table and not the second, sorry if this is confusing. I've tried to explain as best I can.
local table = {name = coolname, name = othercoolname} if table.name == something then end
local nameWhitelist = {coolname, othercoolname} for i,v in pairs[nameWhitelist] if v == something then --code