Trying to make dummy in my startercharacter look like your avatar?
I am trying to make the dummy inside of my starter character look like the player who joined. Like if i were to join instead of a dummy inside the ball it would be my avatar. this is the code i tried in a local an d server script. neither worked.
01 | local Players = game:GetService( "Players" ) |
02 | local char = game.Workspace.Player |
03 | local Player = game.Players:GetPlayerFromCharacter(char) |
04 | local Humanoid = char:WaitForChild( "Humanoid" ) |
05 | local humanddesc = char.Humanoid:FindFirstChild( "HumanoidDescription" ) |
06 | local humandescclone = humanddesc:clone() |
07 | humandescclone.Parent = game.StarterPlayer.char.Model |
08 | game.StarterPlayer.char.Name = "StarterCharacter" |