Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do you make a gui that opens another gui?

Asked by 10 years ago

not much to say down here..

1 answer

Log in to vote
2
Answered by
LAC44 20
10 years ago
  1. Make the other gui not visible
  2. put this script in the gui that opens it
gui = script.Parent.Parent.othergui --change that part

function open()
gui.Visible = true
-------------------------
script.Parent.Visible = false --remove this part if you don't want the gui that opens it to disappear.
-------------------------
open()
script.Parent.MouseButton1Down:connect()
0
the script.Parent.MouseButton1Down:connect() has red under it for some reason.. zachhg03 35 — 10y
Ad

Answer this question