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

How do i change a humans (not an NPC) face expression? [closed]

Asked by 6 years ago
Edited 6 years ago

like changing their face to a scared face. Do i need to change the face that they now have to a different face with a decal?

Or can i copy a players looks with an npc?

0
You could change the decal id WaddelsG 69 — 6y
0
Is this from a player or a NPC? Ap_inity 112 — 6y

Closed as Not Constructive by M39a9am3R

This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.

Why was this question closed?

1 answer

Log in to vote
0
Answered by 6 years ago
Edited 6 years ago

Done.

local face = game.Players.LocalPlayer.Character.Head.face
face.Texture = "<insertidhere>"

Also, if you want to change the player's clothing;

local character = game.Players.LocalPlayer.Character

shirt = Instance.new("Shirt", character)
shirt.ShirtTemplate = "<insertshirtid>"

pants = Instance.new("Pants", character)
pants.PantsTemplate = "<insertpantsid>"
Ad