Like, apply a force in the direction your body is facing? That can be easily done. In Godot, we can use transform.basis
to alter a forward force to point in the direction we are facing. Here is what the code would look like:
add_central_force(Vector3(0, 0, -50) * -transform.basis.z)