Hi!
So i’ve got these lines:
PackageColor = script.Parent.PackageColor.Value (This is a Color3Value, which is 255,170,0)
GetTexture.Color3 = Color3.fromRGB(PackageColor.R,PackageColor.G,PackageColor.B)
GetTexture is a Texture which is cloned, and the texture’s Color3-Value should change to the Value that’s been set in the Color3Value’s Value.
In the model, where the script belongs to. There’s the Texture which gets cloned, and a Color3Value, which is 255,170,0.
However, when i do print(PackageColor) it returns 1, 0.666667, 0, and the texturecolor is black.
when using Color3.fromHSV, Color3.new or Color3.fromRGB, none of them work?