of     1   

SingleSided
#159653858Wednesday, April 08, 2015 12:34 AM GMT

If I wanted to make an onClick Gui, that once you click it another Gui will pop up... How would I do so? (I click the GUI and another GUI pops up)
Sunsteel_Strike
#159654154Wednesday, April 08, 2015 12:39 AM GMT

So when someone clicks, inside your onClick function, make it set the GUI that you want appear's visible value as true. so: TextButton.MouseButton1Down:connect(function() otherGUI.Visible = true end)
SingleSided
#159720510Wednesday, April 08, 2015 10:43 PM GMT

What if I want to clone the Gui into the player?
TimeTicks
#159720734Wednesday, April 08, 2015 10:45 PM GMT

player = game.Players.LocalPlayer Gui = script.Parent Gui:Clone().Parent = player

    of     1