I'm creating a game and the game has GUIs inside of it. The problem is that the background GUI is above the other GUIs. How do I change the layer position so that the background GUI is in the back?
Change the ZIndex of a Gui. It's a property. If the ZIndex is 0 then any Gui that's ZIndex is higher than 0 then it will cover it. If the ZIndex is 2 it will cover the Gui thats ZIndex is 0. It might sound confusing, but you will get it :)