So I’m trying to clone the player but when I clone it it wont clone the clothes and accesories of the player can someone please help me with this problem? This was the script.
game.Players.PlayerAdded:Connect(function(player)
player.CharacterAdded:Connect(function(Character)
Character.Archivable = true
local clone = Character:Clone()
clone.Parent = game.Workspace
clone:SetPrimaryPartCFrame(CFrame.new(1,1,1))
end)
end)