Okay so how do I just scale the frame without scaling everything else that is inside of it?
Whenver I try to it just does this:
The simple explanation is that all children of your frame should use Offset instead of Scale.
However this will make it appear larger or smaller for some users because the have different screen resolutions.
A more reliable approach is to
- convert all children’s position to use offset
- resize your main frame to whatever you like
- convert all children’s position back to using scale
There are quite a few gui plugins out there which easily allow you to convert scale to offset and vise versa
okay, thank you! i appreciate it