Face dissapears when changing it from a script

Hello,

I’m currently having an issue.
When my code changes the face, it completely goes blank.


Code :

Remote.OnServerEvent:Connect(function(Player, FaceName)

	local Character = Player.Character
	local Face = Character:WaitForChild("Head"):FindFirstChild("face")

	if FaceName == "Tango" then
		Face.Texture = "rbxassetid://16652251"
	end
end)
1 Like

You don’t have the right ID, you need the Content ID. Paste the ID in a Decal instance and copy what it changes to.

3 Likes

Just did what you told me, but it didn’t work either.

1 Like

What did you copy? You have to copy the whole string.

2 Likes

Yeah I copied everything in the Texture variable

nvm i got it to work. Thanks for your help!

2 Likes