Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to make a GUI's visibility set to false after a certain amount of time?

Asked by
uhjos_h 19
4 years ago
Edited 4 years ago

I have currently tried to make a GUI that goes invisible after a certain amount of time: this is my code,

1local guis = game.StarterGui.Menu.SideMenu
2 
3while true do
4    wait (10)
5    guis.Visible = false
6    wait (10)
7    guis.Visible = true
8end

I am currently new to Roblox Scripting so please help me out lol.

0
Make sure you're using a LocalScript ScuffedAI 435 — 4y

2 answers

Log in to vote
2
Answered by
2_MMZ 1059 Moderation Voter
4 years ago

So here's what you'll need to do. First, if your script is a regular script, then change it to LocalScript, and insert that LocalScript into the target GUI.

Then, you must use a while true do which will make your script loop for eternity, you can even put a wait in there, so it waits every 10 seconds forever to change the GUI.

Next, identify your GUI properly with a good old script.Parent which will get the LocalScripts parent (What it's inside of).

Like this:

1local guis = script.Parent

Then for the last touch. We must fix your script.

1while true do
2wait(10)
3guis.Visible = false
4wait(10)
5guis.Visible = true
6end

Hope this helped you!

0
You can try to make local function and in the call it Odoscementas 0 — 3y
Ad
Log in to vote
0
Answered by
CodeWon 181
4 years ago

I'm not sure but I would try this:

1local guis = game.StarterGui.Menu.SideMenu
2 
3while wait(10) do
4    guis.Visible = true
5    wait(10)
6    guis.Visible = false
7end

Answer this question