Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Trying to make dummy in my startercharacter look like your avatar?

Asked by 3 years ago

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.

01local Players = game:GetService("Players")
02local char = game.Workspace.Player
03local Player = game.Players:GetPlayerFromCharacter(char)
04local Humanoid = char:WaitForChild("Humanoid")
05local humanddesc = char.Humanoid:FindFirstChild("HumanoidDescription")
06local humandescclone = humanddesc:clone()
07humandescclone.Parent = game.StarterPlayer.char.Model
08game.StarterPlayer.char.Name = "StarterCharacter"
09wait(1)
10Humanoid.Health = 0

Answer this question