Help with cloning multiple things together?
Here is the code:
01 | player = script.Parent.Parent |
02 | player.CanLoadCharacterAppearance = false |
03 | character = player.Character |
04 | character.Head.BrickColor = BrickColor.new( "Bright yellow" ) |
05 | character.Torso.BrickColor = BrickColor.new( "Bright yellow" ) |
06 | character [ "Left Arm" ] .BrickColor = BrickColor.new( "Bright yellow" ) |
07 | character [ "Right Arm" ] .BrickColor = BrickColor.new( "Bright yellow" ) |
08 | character [ "Left Leg" ] .BrickColor = BrickColor.new( "Bright yellow" ) |
09 | character [ "Right Leg" ] .BrickColor = BrickColor.new( "Bright yellow" ) |
12 | game.ServerStorage.farmer:GetChildren():Clone().Parent = character |
It keeps erring, saying that Clone is a nil value, but I clearly assigned the parent of character to the clone. Anyways, it would be great to help with this and also is there an easier way to color the character's body colors without doing each and every part?
Thanks in advanced