You need to use the Scale instead of the Offset when positioning Gui objects. For example, a Frame that is 5 pixels tall and fits the entire length of the screen would have a Size property of {1, 0, 0, 5} and a position property of {0, 0, 0, 0}. Another example is a Frame that is 200 pixels by 50 pixels, which would have a size of {0, 200, 0, 50} and a position of {0.5, -100, 0, 0}. |