I’m not a big fan on having something destroyed based on a collision so I did this instead
void DestroyBullet()
{
if(transform.position.y > Camera.main.ViewportToWorldPoint(new Vector3(0,1,0)).y +1)
{
Destroy(this.gameObject);
}
}