unity add force in the direction an object is thrown 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);