How do I set a players character?

This was literally my script from a previous game:

        local character = myCharacter -- your character you want to clone 
        local characterClone = character:Clone()
		characterClone.Name = player.Name
		characterClone:MakeJoints()
		player.Character = characterClone


		characterClone.Parent = workspace
1 Like

works! Thanks! But now this happens:
robloxapp-20210615-1617584.wmv (677.2 KB)

When loading a new character that character now needs animations, When you load in with the default animations clone the local script inside your Character (With the animations) and put it in the StarterCharacterScripts.

1 Like