Need face removed

  1. What do you want to achieve? I want to achieve a script that makes a players’ face transperant.
  2. What is the issue? There is no issue, I just don’t know how to do it. I know how to make the players head transparent, but not the stuff on their face.

How can I achieve this?

Do you mean Head.face.Transparency = 1?

2 Likes

Yes, something like that. Or even removed

1 Like
game.Workspace["PlayerName"].Head.face:Destroy()

Where do I place this exactly?

1 Like

In script, best would be in ServerScriptService.
In case you want to remove player’s face whenever he joins do:

game.Players.PlayerAdded:Connect(function(plr)
	plr.CharacterAdded:Connect(function(char)
		char.Head.face:Destroy()
	end)
end)
2 Likes

Thank you so much. It worked. :slight_smile:

Just know that (at least in my experience) when the face is destroyed, rather than just invisible, it will on occasion put the default face, for various reasons.

In the future, it may be beneficial if you tried searching for the solution or use trial and error in a test world. If you are still unable to figure out a solution, then it’s a good time to ask for help.

Getting familiar with Roblox studio, characters, and how Lua works will help improve your scripting abilities.

I’m not trying to be mean or anything, I just think you may learn better if you try yourself :smile:

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.