moving object how to

Okay i have a script to a bullet

And have started this

function OnControllerColliderHit(hit : ControllerColliderHit)
{
if(hit.gameObject.tag == “tank”)
{

}
}

then i want it to move 2 objects name bluetank5 and redtank2 to a position, how do i do that?

a edit, i want 2 object tag to be moved, instedet of 2 objects name

Hmmm… you have given us an event… “On the event, where our CharacterController has hit an object with the tag ‘tank’, fill in the blank”. The problem is that there is not enough information here. First, you claim this is a bullet, but OnControllerColliderHit, is specifically a CharacterController event.

Now, if we were talking Physcis event, like OnCollisionEnter(obj : Collision)… Then we would be talking bullet like event.

You may benefit from this:
http://forum.unity3d.com/threads/101613-Simple-Weapons-shooting-health-and-XP

This will at least help you understand, how the physics of a bullet can be manipulated, and how to “talk” to other objects. This of course is only one method. There are many out there.