How do I hide a screenGUI to show a intro I had found through a plugin and then make it reappear.It is a text button and I have the code for that to disappear after it has reappeared but I can't find how to hide it for about 10 seconds.The code for the text button to disappear:
script.Parent.MouseButton1Click:connect(function()
script.Parent.Visible = false
end)
From what I understand you mean this.
script.Parent.MouseButton1Click:connect(function() script.Parent.Visible = false wait(10) script.Parent.Visible = true end)
Well if you want button to disappear and reappear:
script.Parent.MouseButton1Click:connect(function() script.Parent.Parent.Visible = false wait(10) script.Parent.Parent.Visible = true end)