How do I create a variable that calls for the StarterGui? Or what IS the term for the startergui?
I have this string of code to take a button off my screen. My variable for it is:
local Button = script.Parent (and this works)
Button.Visible = false
To trigger my frame instead of my button, I know i need a line of code like this:
game.StarterGui.ScreenGui.Frame.Visible = false
However this doesn’t work, and I am guessing because StarterGUI is not the correct formatting…
so what is?