This is solved. Thank you for your help, TheAlphaStigma.
This is how my gui looks in explorer:
ScreenGui
-BackgroundFrame
--ForegroundFrame
---Script
I'm trying to get the ForegroundFrame to be in the center of the BackgroundFrame, with each side revealing 6 pixels of the Background Frame. I have a script to do this, but it only seems to work in Solo Mode. There is no output, even when I go online.
wait(2) fg = script.Parent --The ForegroundFrame bg = script.Parent.Parent --The Background Frame bgs = bg.AbsoluteSize --The BackgroundFrame's AbsoluteSize fg.Size = UDim2.new(0, bgs.x - 12, 0, bgs.y - 12) fg.Position = UDim2.new(0, 6, 0, 6) script.Parent.Parent.Visible = true