La table Lua contient

local tryingToGet = "value"
for _,v in pairs(table) do
  if v == tryingToGet then
    break
  end
end
Orion