What I am trying to do is I have a camera for my loading screen which works and looks on a backdrop, I then want to clone the players avatar and teleport the cloned avatar in the backdrop. Sort of what Site Delta has: http://prntscr.com/m1novu
This is my current code for the cloning and teleporting part:
local Player = game.Players.LocalPlayer local Name = Player.Name local workspacemodel = workspace.Name local replica = workspacemodel:Clone() replica.Parent = workspacemodel.Parent replica.Torso.Position = 385.09, 10.028, -198.253
I have tried to debug as many errors as I can in the Developer Console but I don't see any now.
Thank you for the help in advance.
Try this in a script
local Players = game:GetService("Players") local Player = Players:WaitForChild("Superameno") local workspacemodel = Player.Character or Player.CharacterAdded:Wait() game.PlayerAdded:Connect(function() workspacemodel.Archivable = true local replica = workspacemodel:Clone() replica.Parent = game.Workspace replica.UpperTorso.Position = 385.09, 10.028, -198.253 end)