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

how do i change the body type and face as players enter?

Asked by 9 years ago
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

1 answer

Log in to vote
1
Answered by
jakedies 315 Trusted Moderation Voter Administrator Community Moderator
9 years ago

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)
0
and what about body type stackyjack 0 — 9y
0
Like the CharacterMesh objects? jakedies 315 — 9y
Ad

Answer this question