Screen.Width and Hieght

scrollPosition = GUI.BeginScrollView ( new Rect ( Screen.width * 420 - Screen.height * 180 - Screen.width * 120 - Screen.height * 150),scrollPosition, new Rect (Screen.width * 0 - Screen.height * 0 - Screen.width * 0 - Screen.height * 2000));

I cant see whats wrong with the code the Screen.Height and Screen.Width are on the right Numbers.

I’m just trying to get it so it stays in the same play Any know?

You must separate the coordinates/values with commas( , )…NOT dashes ( - )

For example :

scrollPosition = GUI.BeginScrollView ( new Rect ( Screen.width * 420 , Screen.height * 180 , Screen.width * 120 , Screen.height * 150),scrollPosition);