I've got two different GUI's inside one ScreenGUI. One is a Frame and the other is a ImageLabel. The ImageLabel is meant to be a background to the Frame, but the ImageLabel shows up in front of the Frame, and takes up the whole screen so you are unable to see the Frame and its descendants.
How do I make it so the Frame appears in front of the ImageLabel?
Do it with the Zindex property
Set Zindex for the image to 1, Set Zindex for the frame to 2
and there you go :) Hope this helps!
You do this with the ZIndex property.
You can position ScreenGuis using XYZ. X moves a Gui horizontally. Y moves a Gui vertically. And The Z position layers Guis. Use the Z position to adjust which Gui goes in front.