my coding has no errors but the bullet with a collider still will not destroy the tagged object. BTW that bullet has a box collider it is not floating. here is my code for incase `function OnCollisionEnter (other : Collider)
{
if(other.tag == “Bullet”)
{
Destroy(gameObject);
}
}
[21690-collision+problem.png|21690]`