I need some help to make players avatar look like character they want to be.
When ever you click the button, I clone the Rig that i want to make the player look like and put in in StarterPlayer (Its also renamed before put in StarterPlayer to “StarterCharacter”.)
Here is the code:
local Person = game.ReplicatedStorage.Charater_Doge
local player = game.Players.LocalPlayer
script.Parent.MouseButton1Down:Connect(function()
local StarterCharater = Person:Clone()
StarterCharater.Name = "StarterCharacter"
StarterCharater.Parent = game.StarterPlayer
player.Character.Humanoid.Health = 0
game.Workspace.Menu.EqualizerSoundEffect.Enabled = false
script.Parent.Parent.Parent.Enabled = false
end)
Thanks for helping