Color3 problem script!

for some reason this script will make the part color 0,0,0

	v.Color = Color3.new(v.CurrentColor.Value)

Print out the value to see the issue.

print(v.CurrentColor.Value, v.CurrenColor:GetFullName())

the problem is that it just doesnt change to the current color it changees to 0,0,0

I just realised what you did wrong.

You are setting a Color3 value to a Color3 value.

It’s the same as writing:

Color3.new(Color3.fromRGB(163, 162, 165))

Instead change it to

v.Color = v.CurrentColor.Value

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.