Disable a diffrent collision

Id want to disable a collision of another objects, not the one that the script is connected to. how??

since you’re using 2D the code would look like this

 var object :GameObject;

 function Start (){
     object.collider2D.enabled = false;
 }

this will disable the collider when you press the play button!