game.Players.PlayerAdded:connect(function(player) player.Character.Head.Face.TextureID = "http://www.roblox.com/Chill-item?id=7074764" end)
i tried this for face but i could not get any idea about body type can someone plz help me with this
Make sure the character exists (use the CharacterAdded event) and also the decal name is face, not Face and the property is Texture.
game.Players.PlayerAdded:connect(function(player) player.CharacterAdded:connect(function(character) character.Head.face.Texture = "http://www.roblox.com/Chill-item?id=7074764" end) end)