How to move GUI elements to different position on screen

Hi All, I have a basic rts engine setup and it has a GUI right hand sidebar with all the controls including minimap and structure and unit production buttons, I want to try and move parts of the interface around the screen. For example the minimap is in the top right hand corner and i want to move it to bottom left corner. I can email script for GUI if needed.

Thanks in Advance for any help.

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).