Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do i make a mirror image of player?

Asked by 5 years ago
Edited 5 years ago

How do i make a copy of a the player then put them in front of you sitting down? (playing an animation)

0
Can you include some code or show us what you have tried to do for solving this question. https://scriptinghelpers.org/help/how-post-good-questions-answers User#5423 17 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago
Edited 5 years ago

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

0
you need to archivable character first, and wait for chatacter spawn yHasteeD 1819 — 5y
0
localPlayer is deprecated, and yHasteeD that is not always necessary User#24403 69 — 5y
0
thanks AnotherPerson_999 28 — 5y
0
LocalPlayer** TheMysticLynxx 89 — 5y
0
@AnotherPerson_999 if this helped please accept the answer :) TheMysticLynxx 89 — 5y
Ad

Answer this question