Brick color 4,7,8,194 being the same

Yes,and brick color does not go through and order like 1,2,3,5,6,9 all exist but 4,7,8 does not

Then what about creating a array of numbers to be blacklisted and skip the number if it’s blscklisted to the next one (but also check it to ensure it’s not blacklisted)

Well I needed to blacklist alot of number and lastly theres only a thousand ish brick color and my obby is going to have more than that

for i = 1, 1032 do
    if tostring(BrickColor.new(i)) == "Medium stone grey" then
        print(i)
    end
end