So basically I made a voting system GUI and whatever option got the most votes, for example Option A, in Output, It will print/say Option A won. I want this to launch a code that makes it so another GUI shows up. So basically when it prints "Option A Won" I want it to make it/ launch open another specific GUI for only a specific amount of seconds.
I don't think you can do that but instead you can fire a remote event.
Example
game.ReplicatedStorage.Putremoteeventnamehere:FireServer()
Then in serverscriptservice example
game.ReplicatedStorage.Remoteeventname.OnServerEvent:Connect(function() game.Screengui.Enable = true wait(5) game.Screengui.Enable = false
You will need to get these scripts to work with your setup cause they will not work Hope this helps!!