Hey there! I have recently got into UI Design and what not.
I watched this video https://www.youtube.com/watch?v=5UvLNYBQh7Q&t=64s and have formalized myself with UI Design, however I am yet to find out how I can make a GUI that allows others to click on it.
If you have any tips/tricks or YouTube videos to possibly help me out, that would be great.
Oh well. You’d just have to use the button.MouseButton1Down function and set whatever you want to appear on your screen appear on your screen. Whether it be tween or change the visible property. I’ll link wiki pages for reference.
-- GUI, Frame, Text Button
local gui = script.Parent
local button = gui.TextButton
local Frame = gui.Frame
button.MouseButton1Down:Connect(function()
if Frame.Visible == false then
Frame.Visible = true
else
Frame.Visible = false
end
I think you’re looking to change the property of the guis visibility if that’s what you mean. You can go further with the wikis.