Camera is set ok but when i press play it faces down

the camera is set right way but when i press play in play mode it faces down and i have to move it around to the right way. its a 3rd person game the camera is behind the player.

Check that the player’s (or whatever it’s attached to) rotation is all set to 0 (world, note that if it is child from any other thing, calculate all of its parents in the way below). If it’s not, calculate the difference.

(EG

character rotation: 0,0,100

camera rotation should be: n,n,n-100

or

character rotation: -10,0,0

camera rotation should be: n+10,n,n

)

If it is more like a ball of something that constantly rotates check the roll-a-ball tutorial.

:'D