I have a command line of code:
1 | data = { } |
2 | for i = 1 , 64 do |
3 | table.insert(data, i, tostring (BrickColor.new(i))) |
4 | print (BrickColor.new(pos + 1 )) |
5 | end |
6 | print ( 'local table = {"' ..table.concat(data, '", "' ).. '"}' ) |
It runs without error. But. What it gives me is really odd. >
1 | local table = { "White" , "Grey" , "Light yellow" , "Medium stone grey" , "Brick yellow" , "Light green (Mint)" , "Medium stone grey" , "Medium stone grey" , "Light reddish violet" , "Medium stone grey" , "Pastel Blue" , "Light orange brown" , "Medium stone grey" , "Medium stone grey" , "Medium stone grey" , "Medium stone grey" , "Medium stone grey" , "Nougat" , "Medium stone grey" , "Medium stone grey" , "Bright red" , "Med. reddish violet" , "Bright blue" , "Bright yellow" , "Earth orange" , "Black" , "Dark grey" , "Dark green" , "Medium green" , "Medium stone grey" , "Medium stone grey" , "Medium stone grey" , "Medium stone grey" , "Medium stone grey" , "Medium stone grey" , "Lig. Yellowich orange" , "Bright green" , "Dark orange" , "Light bluish violet" , "Transparent" , "Tr. Red" , "Tr. Lg blue" , "Tr. Blue" , "Tr. Yellow" , "Light blue" , "Medium stone grey" , "Tr. Flu. Reddish orange" , "Tr. Green" , "Tr. Flu. Green" , "Phosph. White" , "Medium stone grey" , "Medium stone grey" , "Medium stone grey" , "Medium stone grey" , "Medium stone grey" , "Medium stone grey" , "Medium stone grey" , "Medium stone grey" , "Medium stone grey" , "Medium stone grey" , "Medium stone grey" , "Medium stone grey" , "Medium stone grey" , "Medium stone grey" } |
I have no idea why it returns "Medium stone grey" so often. I have testing just changing the brickcolor to BrickColor.new(i) and it still repeats medium stone grey. There is also colors I don't remeber like "Transparent" (Bright white when I tested) and "Tr. Red" and such. Please help me understand why this is happening?
ROBLOX BrickColors are a bundle of hacks, and so they have odd behaviors.
The reason you're getting Medium stone grey so much is that it's the "default" color.
1 | print (BrickColor.new(- 1 )) |
2 | --> Medium stone grey |
If you give BrickColor.new
something that isn't a valid brick color code, it will give you "Medium stone grey"
.
There are "gaps" in the sequence of BrickColors (e.g., 8
isn't assign to any color), and all of those gaps will correspond to "Medium stone grey"
.
ROBLOX also has several deprecated colors, like "Transparent"
. I'm guessing this was going to make transparent bricks before the Transparency
property was realized very early on, but they are pointless (to that end, anyway) now.
I think the full table goes up to 1032 now. If you want to avoid duplicates, you could do this:
01 | local inserted = { } ; |
02 | local text = { } ; |
03 | for i = 1 , 1032 do |
04 | local s = tostring ( BrickColor.new(i)) |
05 | if not inserted [ s ] then |
06 | inserted [ s ] = true |
07 | table.insert(text, "[" .. i .. "] = \"" .. s .. "\"" ) |
08 | end |
09 | end |
10 |
11 | print ( "colors = {" .. table.concat(text, ",\n" ) .. "\n};" ) |
12 |
13 | -- output: http://hastebin.com/devejirubu.lua |
EDIT: Apparently it goes up to 1032 (not 1024) (and there aren't any above that, at least until 10000).
Locked by YellowoTide, EzraNehemiah_TF2, Lacryma, and Redbullusa
This question has been locked to preserve its current state and prevent spam and unwanted comments and answers.
Why was this question closed?