Here is my script
public Rigidbody rp;
void FixedUpdate ()
{
rp.useGravity = false;
rp.AddForce(0, 0, 2000 * Time.deltaTime);
}
The force goes infinitely which I want but I also want to stop it as soon as it starts (just to see something), I don’t wan’t an input key though, sorry i’m a beginner