local Utils = {} function Utils:IsIn(table, element) for key, value in pairs(table) do if element == value then return true end end return false end return Utils