Need help loading character model

Hello.

When a player joins my game, I want their avatar model to be placed at a certain location. Basically I am making a player statue but I cant figure out how to do this.
I tried duplicating the player’s Character and moving it to Workspace when the player joins, but it doesn’t work.

Thanks.

Player’s character will have Archivable set to false. Try set it to true and then clone the player’s character, set their PrimaryPart CFrame like Character.PrimaryPart.CFrame = CFrame.new(pos).

This worked, thanks for the help.