slayManiaq Posted May 18, 2020 Share Posted May 18, 2020 I have a script with a working gui but can't figure out how to open the gui mid script and adjust parameters to do different stuff. Can someone help me? Quote Link to comment Share on other sites More sharing options...
Space Posted May 18, 2020 Share Posted May 18, 2020 I don’t know whether it’s possible to do so, whenever I use scripts that have a GUI I’ve never been able to access the GUI, I’ve had to restart the client. I believe with @ProjectPacts hunter script you can do this, maybe he can help I’m not sure though. Quote Link to comment Share on other sites More sharing options...
knifed faces Posted June 12, 2020 Share Posted June 12, 2020 (edited) First off in order to show your gui you have to reference it by a variable gui = mainUI(); Then you have to show your ui in your code using gui.show(); When you finish UI setup you call gui.hide(); So in order to show the UI again, you need to create a mouse event listener to listen within a specific area of the client (a paint button; use that area to listen for the event) and when the spot is clicked do the gui.show(); function again Edited June 16, 2020 by knifed faces 1 Quote Link to comment Share on other sites More sharing options...