The visible box is checked and I have also added this Local Script:
BackgroundF.Visible = true -- BackgroundF is the frame
Alright, this is a very simple answer to begin with. It's most likely your ScreenGui's Enabled property is disabled. If you want to enable it, you need to go to the property of the ScreenGui and make the Enabled value checked. If you want to make a script, it's simple:
local ScreenGui = script.Parent.Parent if ScreenGui.Enabled == false then ScreenGui.Enabled = true end