Hi, I’m trying to Clone a copy of the Players Character to Display in a ViewPortFrame, however whenever I do this - The model is there, however there are no children.
I’ve made sure the model is archivable however nothing seems to be working.
local CoreGui = script.Parent
local Player = game.Players.LocalPlayer
local Character = Player.Character or Player.CharacterAdded:Wait()
if Character then
Character.Archivable = true
print(Character.Name .. "-Loaded") end
local CharDisplayCam = Instance.new("Camera", CoreGui.Frame.LowerBar.PlayerDisplay["3DChar"])
CoreGui.Frame.LowerBar.PlayerDisplay["3DChar"].CurrentCamera = CharDisplayCam
local CharClone = Character:Clone()
CharClone.Parent = CoreGui.Frame.LowerBar.PlayerDisplay["3DChar"]
CharDisplayCam.CFrame = CFrame.new(CharClone:WaitForChild("HumanoidRootPart").CFrame.p + CharClone.HumanoidRootPart.CFrame.LookVector * 5, CharClone:WaitForChild("HumanoidRootPart").CFrame.p)