Character change almost works but I am unable to move as new character

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? Keep it simple and clear!
    A character change script that allows movement of the new character (obviously)
  2. What is the issue? Include screenshots / videos if possible!
    When the character changes I cant move
  3. What solutions have you tried so far? Did you look for solutions on the Developer Hub?
    I have tried adding prints and it seems everything works. if it helps any it’s R15 to R15. The character are resized to be smaller (that may be an issue I’m not sure.
    After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!
local OldChar = player.Character
	print(model:GetFullName())
	local NewChar = model:Clone()
	NewChar.Name = (player.Name .. "Plush")
	NewChar.Parent = workspace
	player.Character = NewChar
	NewChar:SetPrimaryPartCFrame(Location.CFrame)
	wait()
	OldChar:Destroy()

Please do not ask people to write entire scripts or design entire systems for you. If you can’t answer the three questions above, you should probably pick a different category.

Check EVERY part in the new character model, and ensure that it is not anchored

1 Like

What @SeargentAUS said and also see if the accessory parts are anchored.