Open/Close gui button- Roblox Studio Tutorial

Описание к видео Open/Close gui button- Roblox Studio Tutorial

Open/Close gui button- Roblox Studio Tutorial
___________________________________________________________________________
background music: Coconut mall from Mario kart wii
___________________________________________________________________________
Open Script:
local frame = script.Parent.Parent.Test -- change “Test” to the name of the frane
local open = false

script.Parent.MouseButton1Click:Connect(function()
if frame.Visible == false then
frame.Visible = true
end
end)
___________________________________________________________________________
Close Script:
script.Parent.MouseButton1Click:Connect(function()
script.Parent.Parent.Visible = false
end)
___________________________________________________________________________
All my socials in one place:
https://solo.to/just_hamo

Комментарии

Информация по комментариям в разработке