How do I make a gui appear on all players screen after waiting 30 seconds?
The gui's name is "Map Chooser".
wait(30) -- wait 30 seconds for i,v in pairs(game.Players:GetChildren()) do -- loop through all the players v.PlayerGui["Map Chooser"].Visible = true -- make the map chooser visible. v is the current player in the loop, and we have to use brackets since the name has a space in it. end
Closed as Not Constructive by User#2
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?