Alright, basically I want a script where when I click on a button with a clickdetector in it, a GUI is given to all players for a few seconds, then removed. I do not really know how to script with GUIs, so I can't give any code I have used. If anyone knows how this could be done, please leave a response, it would be appreciated. Thanks, Jhun
local clickDetector = part.ClickDetector clickDetector.MouseClick:connect(function() local guis = {} for i,v in pairs(game.Players:GetChildren())do local gui = ScreenGui:Clone() table.insert(guis, gui) gui.Parent = v.PlayerGui end wait(5) for i,v in ipairs(guis) do v:Destroy() end end)