I think you changed the position manually and not arithmetically, the position changes from screen to screen, if you want to put the gui in a corner to EVERY user you need to use scale and position:
02 | Position: { 0 , 0 } , { 0 , 0 } |
03 | Scale: { 0 , yourSizeX } , { 0 , yourSizeY } |
06 | Position: { 1 , -yourSizeX } , { 0 , 0 } |
07 | Scale: { 0 , yourSizeX } , { 0 , yourSizeY } |
10 | Position: { 0 , 0 } , { 1 , -yourSizeY } |
11 | Scale: { 0 , yourSizeX } , { 0 , yourSizeY } |
14 | Position: { 1 , -yourSizeX } , { 1 , -yourSizeY } |
15 | Scale: { 0 , yourSizeX } , { 0 , yourSizeY } |
That's it :) just remember that if you have to change a frame position which contains textlabes, textbox etc. you need to subtract the position X and Y of your frame's component in your frame's scale and position!