How can I scale this frame without moving everything inside of it?

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

  1. convert all children’s position to use offset
  2. resize your main frame to whatever you like
  3. 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