In my game, I have a colorizer with a ton of colors that set everything in your "Base" to that color. I want to use it on some things that require Color3. After some research, I came up with this:
game.Workspace.NeonColor3.Value = BrickColor.new(game.Workspace.NeonColor.Value).Color
Obviously, it didn't work. I need help!
BTW NeonColor is a BrickColor value in the workspace and NeonColor3 is a Color3 value, also in the workspace
As far as I can tell, you're setting the value wrong. This should be the proper format:
game.Workspace.NeonColor3.Value = BrickColor.new(game.Workspace.NeonColor.Value).Color
If this is not correct, then my apologies; but it should be accurate.