#GUI glitch
8 messages · Page 1 of 1 (latest)
yea give me a sec
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
@stark notch
-- 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)