Morphing Issues

All right. I know there are topics on this subject, but it those don’t work for me. So I’m not having an issue loading in the new morph but rather just getting it into animation. They’re all default R16 Rigs with the Standard Animation Pack set that Roblox provides. And I’m also fully aware I could use Starter Character. But this morph needs to be changed out in other ways. Here’s the code:

game.Players.PlayerAdded:Connect(function(plr)
	plr.CharacterAdded:Connect(function(char)
		local char2 = game.ReplicatedStorage:WaitForChild("Sovereign Squad Alpha")
		char2.Parent = game.Workspace
		char2:SetPrimaryPartCFrame(char:GetPrimaryPartCFrame())
		char:Destroy()
		plr.Character = char2
	end)
end)
1 Like

Have you tried copying the local script called “Animate” in the player’s character, changing it to your animations and then put it in starter character?

1 Like

Nice quick solution. Thanks for your help!