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

How would I morph an avatar on a dummy?

Asked by
enboh 2
4 years ago

I want to make a singleplayer game that when you join, a dummy I placed turns into the avatar who joined. How would I make it?

0
You need to first break down the steps needed to achieve your goal. e.g. to do x I first need y. Currently this is too broad to answer in any detail. User#5423 17 — 4y
0
i need to make a script that turns into the avatar of whoever joined but i dont know how enboh 2 — 4y

1 answer

Log in to vote
0
Answered by
Arkrei 389 Moderation Voter
4 years ago
Edited 4 years ago

You can use a players UserId to do this, by using the New API

You can get the description needed by doing

local Description = game:GetService("Players"):GetHumanoidDescriptionFromUserId(userId)

Then with this you can apply the description on the dummy's humanoid by doing

Dummy.Humanoid:ApplyDescription(Description)

This should make your dummy look like the player you got got the UserId from

Ad

Answer this question