How do I make a gui appear for everyone in the server when I click a button?

Fire an event from the localscript when the clickdetector is clicked or however you want,

Event:FireServer()

On the server you would do

Event.OnServerEvent:Connect(function()
       GUI.Enabled = true    --- GUI ENABLE HERE
end)
2 Likes