How to make a dummy have the appearance of a player in a server

https://gyazo.com/ebb2f8317925c6aedc84ab20b0550a18

As you can see in the gif above me, theres a dummy, is it possible to turn that dummy to look like the player’s character in the server?

5 Likes

In a loop, iterate over all players’ characters, pick the nearest one and use CFrame.lookAt to position and rotate the dummy correctly

3 Likes

Easiest way would be to get a HumanoidDescription of their character using Players:GetHumanoidDescriptionFromUserId() then apply it to the Dummy’s Humanoid.

13 Likes

OOH I’m an idiot, i thought you said to look AT the player, not LIKE the player. :no_mouth:

6 Likes

Thanks that actually helped. It sometimes works and sometimes doesn’t but it’s better than nothing.

1 Like

For the noobies that still doesnt understand on how to set it up you will do,

game.players.PlayerAdded:connect(function(player)

local FakePlayer = --path to ur dummy
local userlook = game.Players:GetHumanoidDescriptionFromUserId(player.UserId) – giving the dummy the character look
FakePlayer.Humanoid:ApplyDescriptionReset(userlook)-- applying the look to the dummy
end

1 Like