Can't clone character?

local characterClone = character:Clone()
print(character, characterClone)
characterClone.Parent = playerIcon

Trying to clone the players character to put into a ViewportFrame, however, it’s returning as nil.

print(character, characterClone)

returns

NinjoOnline, nil

12 Likes

Is the Archivable property set to true?

6 Likes

This is because the Archivable property of a players character is set to false. Try setting it to true before cloning the players character.

50 Likes