Hello everyone! I am currently making my bakery and it’s my first time using screen gui’s. One angle it looks perfectly fine but then in another angle, it looks terrible.
You can also see that it changed color which is odd. I want the size to change mostly the same throughout every angle and for the color to be consistent. Any help is appreciated!
Thanks for reading!
BillboardGuis have an AlwaysOnTop property. Yours is getting clipped because this property is not enabled. Also the LightInfluence should probably be set to 0 if you don’t want any light influencing how it looks.
Someone here had the same type of issue. Just make sure you size the Billboard Gui and it’s elements with scale and not offset.
You should use Scaled for sizing instead of Offset when you go to input the size of both the BillboardGUI and the elements inside of it.
Example of using Scaled:
{1, 0}{1, 0}
Should keep the BillboardGUI more consistent in size.
It seems strange at first that you would want to scale a Billboard Gui since the elements appear to scale as you get closer, but in reality, offset is telling the Gui elements to remain the exact amount of pixels on your screen. Scale in a Billboard Gui however, will scale the pixels so the elements don’t seem to get larger as you walk away.