Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local faceId = "616380929" -- Replace with the ID of the desired face
- game.Players.PlayerAdded:Connect(function(player)
- player.CharacterAdded:Connect(function(character)
- local head = character:WaitForChild("Head") -- Wait for the head to load
- local face = head:WaitForChild("face") -- Check if a face decal already exists
- -- If a face decal already exists, remove it
- if face then
- face:Destroy()
- end
- -- Create a new face decal and assign the desired face ID
- local newFace = Instance.new("Decal")
- newFace.Texture = "http://www.roblox.com/asset/?id=" .. faceId
- newFace.Name = "face"
- newFace.Parent = head
- end)
- end)
Advertisement
Add Comment
Please, Sign In to add comment