I’m attempting to clone the player’s character into a viewport frame, the script runs (It shows no error messages) however it only copies the model of the character and not it’s descendants as shown here:
I would like to know ways to tackle this as it’s a new subject for me.
local ViewPort = script.Parent
local Character = game.Players.LocalPlayer.Character
local CharacterChildren = Character:GetDescendants()
Character.Archivable = true
local CharClone = Character:Clone()
CharClone.Parent = ViewPort
for index, descendant in pairs(CharacterChildren) do
local s = descendant:Clone()
s.Parent = CharClone
end
Help would be highly appreciated!