I have currently tried to make a GUI that goes invisible after a certain amount of time: this is my code,
1 | local guis = game.StarterGui.Menu.SideMenu |
2 |
3 | while true do |
4 | wait ( 10 ) |
5 | guis.Visible = false |
6 | wait ( 10 ) |
7 | guis.Visible = true |
8 | end |
I am currently new to Roblox Scripting so please help me out lol.
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:
1 | local guis = script.Parent |
Then for the last touch. We must fix your script.
1 | while true do |
2 | wait( 10 ) |
3 | guis.Visible = false |
4 | wait( 10 ) |
5 | guis.Visible = true |
6 | end |
Hope this helped you!
I'm not sure but I would try this:
1 | local guis = game.StarterGui.Menu.SideMenu |
2 |
3 | while wait( 10 ) do |
4 | guis.Visible = true |
5 | wait( 10 ) |
6 | guis.Visible = false |
7 | end |