Help moving objects with script

I’m not looking for you to do this for me. I’m really just looking to find out what exactly I am looking for.

I have an object on the screen, and I want to move it from the left to the right with a script. What would I look for in the manuals and tutorials for more information on how to do it.

Thanks in advance guys. :slight_smile:

Look for info on transform.Translate, and Vector3.

Ohhhhhh. Ok. You rock, haha. I was thinking transform was more of a change the shape/size of something, not move it. Thanks a lot!

The use of transform is actually for reffering to a gameobjects self and the like. For example

transform.LookAt(Target);

or used as a variable like

var Target : Transform;