How to make an open/close GUI! | Roblox studio tutorial

Опубликовано: 10 Октябрь 2024
на канале: CodingBacon
24
0

Thank you guys for watching this video, if you have any questions, comment down below! don't forget to sub and like

Open script:

local Frame = script.Parent.Parent.Frame

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

Close script:
local Frame = script.Parent.Parent

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