How do i make a copy of a the player then put them in front of you sitting down? (playing an animation)
If you are using a local script then you can just do
local clone = game.Players.LocalPlayer.Character:Clone() --Move clone and animate over here
you wouldn't want to do something like
clone = game.Workspace:FindFirstChild(game.Players.localPlayer.Name):Clone()
as if someone with the name terrain or something joins the game everything would break