i think he means how to get the name that corresponds to the value between its bounds
heres a function that returns which tier the value fits into
function getName(value)
for name, bounds in pairs(tiers) do
local lowerBound = bounds[1]
local upperBound = bounds[2]
if value < lowerBound or value > upperBound then continue end
return name
end
end