How to get a color 3 value

if player.Data.SkinColor.Value == [0,0,0] then
		print("HAS NO COLOR")
	end

Im currently trying ot detect what the color is but I dont know how

Use the Color3 constructor new()

if player.Data.SkinColor.Value == Color3.new(0, 0, 0) then
1 Like