Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

How do I make my baseplate Bright Green?

Asked by 5 years ago

This question has been solved by the original poster.

I put a script on the baseplate to turn it Bright Green, but it turns white instead.Can anyone tell me if there is anything wrong with the code or is it a problem with studio,and if anyone knows what the problem is, can you tell me what is wrong.

Here is the code:


local basePlate = script.Parent basePlate.BrickColor = BrickColor.new(75,151,75)

The script is a normal script and not a local script,and it is a child of the baseplate.

0
I think you are confusing BrickColor with Color3. You can now set the Color3 of the part. basePlate.Color = Color3.fromRGB(75, 151, 75) note that Color3 is in the value range 0~1 the fromRGB constructor convert the RGB range 0~255 to 0~1 by /255 for you. User#5423 17 — 5y
0
It worked!Thank you for you time kingdom5. Infinity097 5 — 5y
0
The brights green is from BrickColor.FromRGB(0,255,0)and if you want to you can make it neon so it will be really bright :D bostaffmanbulgaria1 89 — 5y
0
Yeah also you can use brickcolor QsDos 0 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago

So I had the exact same problem what I found out is that roblox is weird and that all I had to do was do the exact opposite colour.

Ad

Answer this question