of     1   

AdminModule
#225860956Monday, October 02, 2017 12:03 AM GMT

Hey i'm trying to position a GUI at the top of the screen. Like a line.. But it's not positioned right for others, what should I do?
QwiZix
#225861297Monday, October 02, 2017 12:09 AM GMT

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}.
SnowlessTheo
#225862442Monday, October 02, 2017 12:30 AM GMT

For contribution: Inside of your GUI ("ScreenGui") You should insert a Frame, It depends on the size mainly.. I made a example here so my Frame size property is currently {0, 500, 0, 50} In order to xCenter it, it becomes {0.5, -250, 0, 0} If you want to lower it (I personally think you should It should be {0.5, -250, 0, 10) Your Welcome in Advance. My Name is HeadlessTheo, and I'm a YouTuber!

    of     1