How do I fix these two issues?

i am making an ending gui


the first very obvious problem is that the gui isn’t filling the whole screen

the next problem is that the text doesn’t get smaller on smaller screens.

I was wondering if there was a fix to either of these problems.

2 Likes
  1. To make the GUI fill the entire screen, you need to enable “IgnoreGUIInset” on whatever ScreenGui it’s in.

  2. If you want the text to scale dependending on the size of the screen, only alter the scale portions of its size (ex. {0.5, 0, 0.5, 0} instead of {0, 100, 0, 100}). Additionally, try enabling TextScaled on your text label.

I hope this helps!

5 Likes

Thank you for help on #1, but on #2 the text label that has the text in it is chqnging based on the screen size, byt the text stays the same size. Is their a wqy to fix this? Nvm. Ty

2 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.