Resetting the gravity of a continuously falling object

I have an object that continues to fall. Upon hitting a trigger however, I reset the object positions to origin using transform.position. The issue is that it maintains its acceleration downwards. Is there a way to reset this acceleration back to 0?

Change the y value of the rigidbody’s velocity to 0.

Thanks. I completely forgot about this. Its been a while since I used Unity.