basically trying to make a part the same brickcolor of the players torso. this is what I have and this is the error.
invalid argument #1 to 'new' (Color3 expected, got BrickColor)
local color = character.UpperTorso.BrickColor pet.BrickColor = BrickColor.new(color)
You already got the BrickColor in the variable color
, just do:
local color = character.UpperTorso.BrickColor pet.BrickColor = color