Finding which gameobject triggered this event

so this is my visual script

This visual script is embeded to void gameobject ( big red scaled cube) , I dont know how to find a Name of gameobject that collided with void. I need a way to find which gameobject collided with void then teleport it to that vector3 position. plz help

OnTriggerEnter has that “Collider” reference / argument. This is the collider that collided with this object. Currently you don’t have anything connected to it. Do not use the name to search for gameobjects. You get the direct reference passed to the event.