So below is my script. I have a BrickColor value but I need it to be a Color3 value to change the color of my text button GUI. How do I make the BrickColor value to a Color3 value?
local ChosenColor = game:GetService("Workspace"):WaitForChild("Configuration").ChosenColor ChosenColor.Changed:Connect(function() script.Parent.BackgroundColor3 = ChosenColor.Value end)
Store a variable (brickColor) and use Color
when referencing it
local bc = BrickColor.new("Lime green") -- change it if u Want print(bc.Color) -- it should print the color3 value