move box forward

Hey, i like to move my box while pushing. But the code is not working.

function OnCollisionEnter(collision : Collision) {

if(collision.gameObject.tag == "man"){
Debug.Log("hit2");
	transform.position = Vector3(464.8797,1.678224,1.839526);
}

}

Stijn

Just use transform.Translate or use a rigidbody which allows for really nice physics. Just set the object’s mass to like .5 or something. Really, USE THE SEARCHBAR to find things that have already been asked and answered before. This is really simple.