Hello! I havent made a Roblox Studio video in quite a bit soooo.... here it is!
Today I'll show yu how to make a Pop up gui!
Script: https://pastebin.com/ZgUhz6Sk
Close Button Script:rint("Close button loaded")
button = script.Parent
window = button.Parent
function onClicked(GUI)
window:remove()
end
script.Parent.MouseButton1Click:connect(onClicked)