You don't need to use physics, just create a bool falling, and in physics_process add:
if falling:
if position.y >= OS.get_windows_size().y:
falling = false
#Respawn the player, or just remove a live
break
position.x -= 100 * delta
And on collision with the Area2D set falling to true