i was woking on a game of a project and i don't know much about javascript so i was wondering how do i use my dodgeball prefab to distroy my target.
if the dodge ball has a rigid body and a collider you can call function OnCollisionEnter() and then send a message to the other object to get destroyed.
e.g.
function OnCollisionEnter(collision : Collision) {
if(collision.gameObject.CompareTag("Enemy")){
Destroy(collision.gameObject);
}
}