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

How do I make it to where when people click the About button it will open a page about us?

Asked by 1 year ago

I have a side menu that can respawn, teleport, say about us and a help section. I just don't know any script to get it to show about us.

2 answers

Log in to vote
0
Answered by 1 year ago

Use Gui.Visible when the about button is clicked

Ad
Log in to vote
0
Answered by 1 year ago

Put this is your button as a local script

script.Parent.MouseButton1Click:Connect(function()
script.Parent.Parent.Frame.Visible = not script.Parent.Parent.Visible
end)

You can change frame to your frame gui name.

Answer this question