Zoink101
|
  |
| Joined: 19 Dec 2010 |
| Total Posts: 2758 |
|
|
| 15 Aug 2014 08:11 PM |
| How would I make a play button GUI that when clicked it would remove all GUIs. |
|
|
| Report Abuse |
|
|
Nagrath99
|
  |
| Joined: 26 Mar 2011 |
| Total Posts: 1537 |
|
|
| 15 Aug 2014 08:12 PM |
http://wiki.roblox.com/index.php?title=Lua_Help
^^^^^^^^^^read |
|
|
| Report Abuse |
|
|
Stefan631
|
  |
| Joined: 23 Dec 2010 |
| Total Posts: 1350 |
|
|
| 15 Aug 2014 08:13 PM |
LocalSCript in a textbutton/imagebutton
script.Parent.MouseButton1Down:connect(function() for _, v in pairs(game.Players.LocalPlayer.PlayerGui:getChildren()) do if v:IsA('ScreenGui') then v:Destroy(); end; end; end); |
|
|
| Report Abuse |
|
|