Every GUI element (unless you're using GUILayout without using BeginArea()) has a Rect requirement, where you define where each element goes.
Top right for instance would be Rect (Screen.width - 100, 100, 200, 200). To place it bottom right, use (Screen.width - 100, Screen.height - 100, 200, 200).
↧