how to addforce to an object in unity facing a certain direwction in 2d code example
Example: how to make something addforce in the direction of something in untiy
dir = target.transform.position - transform.position;
dir = dir.normalized;
rigidbody.AddForce(dir * force);