Making Camera move to the right???

I am having a little Problem right now. I want to make a Game, where when you start, the Camera starts moving to the right.

But i dont know how to do it, how can i do it???

You can try it using an animation.
Select the camera and press CTRL + 6.

Doenst work, i need to have the FPC go WITH the Camera, not ONLY the Camera

You can create a new script that gradually translates the camera’s transform position.

Works, but how can i make it faster :smile: ???

I recommend you find some introductory tutorials - either with Unity or programming in general.

As for your question:

var speed : float=1f;

function Update () {
    transform.Translate (Vector3.right*speed*Time.deltaTime);
}

Thanks got it :smile:
And i know how to code but i havent coded for months so i dont remember some stuff…sry