>>176
function OnTriggerEnter(other:Collider){
if(other.gameObject.tag=="Player")pointCounter=1;
}
function OnTriggerExit(other:Collider){
if(other.gameObject.tag=="Player")pointCounter=0;
}