#GUI glitch

8 messages · Page 1 of 1 (latest)

dusky trout
#

can I see some pictures?

stark notch
#

when I press the Quest button which is a text button it just dosen't open but it used to work but now it dosen't

#

@dusky trout

dusky trout
#

yep sorry

#

show me the explorer and script

glossy ginkgo
#

@stark notch

novel jewel
#
-- Reference to the GUI
local gui = script.Parent.GUI

-- Reference to the button
local button = script.Parent.Button

-- Function to open the GUI
local function openGui()
    gui.Enabled = true
end

-- Connect the function to the button's "Activated" event
button.Activated:Connect(openGui)