So i have been looking around and doing research and i was thinking new yeller is like this Chat
ChatColor = Color3.new(1,1,0)
but i want it like this
ChatColor = Color3.new(253/255, 41/255, 67/255) --This right here is bright red and i wanna switch it to new yeller
but im not sure how to get it like that but it is yeller
Before, Parts could only have 1 of 64 predefined brick colors that ROBLOX set. Now, BrickColor
supports any Color3
value.
BrickColors
has a property called Color
which gives you the Color3
value of the BrickColor
.
print(BrickColor.new("New yeller").Color)
Output
0.639216, 0.635294, 0.647059
Since the BrickColor.Color
value of New yeller is a Color3
value, you can change ChatColor
to BrickColor.new("New yeller").Color
ChatColor = BrickColor.new("New yeller").Color
Hope it helps!
look at the properties of a brick that has the new yeller color that should give it to you i think