Instead, use WaitForChild on Head. Also, you can just directly edit the texture instead.
game.Players.PlayerAdded:Connect(function(plr)
plr.CharacterAdded:Connect(function(chr)
chr:WaitForChild("Head"):WaitForChild("face").Texture = "your custom face here"
end)
end)