I’ve had this issue on my game for a good amount of time now. For some reason when I play the game, the GUI will be not resized properly until I redo the tab. It only does this sometimes and I have no Idea why. Does anyone know what’s going wrong here?
This is due to the UI not caching correctly. Its a Roblox bug, I’ve sent a message to the bug team since I’m not a regular but nothing ever happened.
From the ScreenGui api:
Caching static UI for performance improvements
A Gui’s appearance is cached until one of the following events occurs:
- A descendant is added to the Gui.
- A descendant is removed from the Gui.
- A property of a descendant of the Gui changes.
- A property of the Gui changes.
If any of these events occur, the Gui’s appearance will be recomputed the next frame it gets rendered.
But for some reason it never detects when an event happens, and it doesn’t get recomputed on the next frame.