|
| 24 Apr 2016 05:09 PM |
| Im not using scripting to make my GUI, I Want my ImageLabel Directly in the Middle of the screen how do i do this? |
|
|
| Report Abuse |
|
|
| |
|
|
| 24 Apr 2016 05:16 PM |
Under position, there is a scale option, set both of those to 0.5
#code print("Why did Adele cross the road?") wait(3) print("To say hello from the other side!") |
|
|
| Report Abuse |
|
|
|
| 24 Apr 2016 05:20 PM |
| There is no Scale Option, Im not using Code to make it, Im currently in the Properties, The ImageLabel position is {0, 500},{0, 240}, how do i make it in the Exact center |
|
|
| Report Abuse |
|
|
|
| 24 Apr 2016 05:28 PM |
https://gyazo.com/2e91d83283dc6cc9733a054e4efe3c5c
#code print("Why did Adele cross the road?") wait(3) print("To say hello from the other side!") |
|
|
| Report Abuse |
|
|
|
| 24 Apr 2016 05:32 PM |
Once you understand how the position property works, this Plugin will make your life a lot easier:
https://www.roblox.com/Gui-Positioning-Tools-item?id=338813970 |
|
|
| Report Abuse |
|
|
Quote545
|
  |
| Joined: 29 May 2011 |
| Total Posts: 16 |
|
|
| 24 Apr 2016 06:02 PM |
Directly in the middle of the screen without scripting would be, by setting the position to:
{0.5,-(half the size of your gui)} {0.5,-(half the size of your gui)}
I believe that's how you do it. Please correct me if I'm wrong |
|
|
| Report Abuse |
|
|
Meltist
|
  |
| Joined: 10 Aug 2009 |
| Total Posts: 1832 |
|
|
| 24 Apr 2016 06:07 PM |
To expand on quote's answer,
Position X: {0.5, -(half the X size of your gui)} Position Y: {0.5, -(half the Y size of your gui)}
OP, if you didn't have the - half part, your imageLabel's top left corner would be in the center of the screen. Moving it upwards and to the left halfway will place your ImageLabel directly in the middle of the screen even if the user resizes his or her window.
|
|
|
| Report Abuse |
|
|