Hello I just wanted to ask a really quick question, I inserted a dummy into the worksapce and I want the dummy to have the avatar of the local player. I want every local player to see their own avatar and I don't want people seeing other people's avatar. Can you help me?
local Dummy = workspace:WaitForChild('Dummy') local dummyHumanoid = Dummy:WaitForChild('Humanoid') local Players = game:GetService('Players') local Player = Player.LocalPlayer local avatarDescription = Players:GetHumanoidDescriptionFromUserId(Player.UserId) dummyHumanoid:ApplyDescription(avatarDescription)
Make sure this is a LocalScript!