Face recover helping

Hello!I want to know how to return player face if its changed,for example:You changed face in change face panel,and there button:Recover face.So your changed face will change to normal face.May i ask how to do that,that was just an example.I just want to know how to do that

I think you can just do:

if you doing it of remote event then.

local Recover = remote

Recover.OnServerEvent:Connect(function(player)

	if player.Character then

		local Character = player.Character
		local Head = Character.Head
		local Face = Head.face
		
		local Description = game.Players:GetHumanoidDescriptionFromUserId(player.UserId)

		Face.Texture = "http://www.roblox.com/asset/?id="..Description.Face
		
	end

end)

That should work