I want to make it so that the a part can be the same as the background here is the script:
script.Parent.MouseButton1Click:Connect(function()
game.Workspace.CoolPart.Color = script.Parent.BackgroundColor3
end)
Please help if you can
I want to make it so that the a part can be the same as the background here is the script:
script.Parent.MouseButton1Click:Connect(function()
game.Workspace.CoolPart.Color = script.Parent.BackgroundColor3
end)
Please help if you can
Just copy the backgroundColor3’s RGB values, then replace script.Parent.BackgroundColor3
with Color3.fromRGB(yourBackgroundColor3Value)