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)
1 | local color = character.UpperTorso.BrickColor |
2 | pet.BrickColor = BrickColor.new(color) |
You already got the BrickColor in the variable color
, just do:
1 | local color = character.UpperTorso.BrickColor |
2 | pet.BrickColor = color |