View Single Post
  #1  
Old 06-05-2013, 03:51 AM
baseman101 baseman101 is offline
Scripter
baseman101's Avatar
Join Date: Nov 2012
Location: Purcellville, VA
Posts: 76
baseman101 will become famous soon enough
Close All Open GUIs?

I work on a server, but there is a problem I have where I need to close all open GUIs. How would I go around doing so? Thanks. Example:

PHP Code:
//#CLIENTSIDE
Window1.destroy();
Window2.destroy();
Window3.destroy(); 
=>
PHP Code:
//#CLIENTSIDE
for(temp.windows allopenwindows) {
  
temp.windows.destroy();

Reply With Quote