Teleporter
From Unify Community Wiki
This script works like the halo Teleporters, but you can shoot rockets in to it and it come out the other teleporter Have fun with it. BY Ryan Davis.
Teleporter.js
<javascript> var teleportTo : Transform; function OnCollisionEnter (col : Collider) {
col.transform.position = teleportTo.position;
} </javascript>