I want to be able to change a brick color to a color of my choice, rather than Roblox's default colors. But I'm not sure how.
So how would I take something like this...
script.Parent.BrickColor = BrickColor.new("Really red")
and change it to something custom like ("90, 129, 255") ?
poppeyhead's answer does WORK, but not the best. Color3.fromRGB() takes 3 args, R, G, and B. Each being a value from 0-255, eliminating the need to divide by 255.
Instead of script.Parent.BrickColor = BrickColor.new("Really red") you would make BrickColor.new into Color3.new. Then you would get the Color not the BrickColor instead. Last, you would put your numbers out of 255. It would look something like this if you used that color you provided.
script.Parent.Color = Color3.new(90/255, 129/255, 255/255)
If you wanted to change the color change the number/255.