A tabela Lua contém
local tryingToGet = "value"
for _,v in pairs(table) do
if v == tryingToGet then
break
end
end
Orion
local tryingToGet = "value"
for _,v in pairs(table) do
if v == tryingToGet then
break
end
end