game.ReplicatedStorage.Color.Value = Color3.new(game.Workspace.Part.Color)
I tested some things with the Color3Value. But the script does never set the Value to the BrickColor Value. What did I wrong?
game.ReplicatedStorage.Color.Value = Color3.new(game.Workspace.Part.Color)
I tested some things with the Color3Value. But the script does never set the Value to the BrickColor Value. What did I wrong?
Can you print out the color vals?
print(game.ReplicatedStorage.Color.Value)
print(game.Workspace.Part.Color)
Is game.ReplicatedStorage.Color a color3 value, or a string value?
The Value is a Color3 Value and not a string value
Ok, but can you print the values? I’m not very good at color 3 values, so if you need to, wrap it in tostring()
The part’s color is already a color3 value, just do this:
game.ReplicatedStorage.Color.Value = game.Workspace.Part.Color