How Do I Copy The Players Avatar and Teleport It?
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:
1 | local Player = game.Players.LocalPlayer |
2 | local Name = Player.Name |
3 | local workspacemodel = workspace.Name |
5 | local replica = workspacemodel:Clone() |
6 | replica.Parent = workspacemodel.Parent |
7 | 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.