Scroll Wheel ?

How do you get forward and backwards mouse wheel scrolling?

I am trying the following script to see if anything works, but atm nothing seems to happen.

function Update(){
	if (Input.GetButton("Mouse ScrollWheel")){
		Debug.Log("Movement");
	}
}

Also, how would you get the sides of the screen? for example in rts games when you move your mouse off screen your camera moves in that direction.

Try GetAxis() instead.

Since this is an unrelated question, I’d recommend putting it in its own thread (it’ll probably get more attention that way).