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?
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?
In a loop, iterate over all players’ characters, pick the nearest one and use CFrame.lookAt to position and rotate the dummy correctly
Easiest way would be to get a HumanoidDescription of their character using Players:GetHumanoidDescriptionFromUserId() then apply it to the Dummy’s Humanoid.
OOH I’m an idiot, i thought you said to look AT the player, not LIKE the player.
Thanks that actually helped. It sometimes works and sometimes doesn’t but it’s better than nothing.
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