So basically what i want is a script which allows my gui to play for 10 seconds but then switches over to another gui.
In simpler form
Join>Gui#1 plays for 10 seconds>Gui#2 then comes and covers the whole screen>Gui#2 is permanent on screen though
1
local gui1 = --your gui local gui2 = -- your other gui gui1.Visible = true wait(10) gui1.Visible = false gui2.Visible = truegreatneil802647— 7y
0
You would want to wait for user input seeing as how client loading rates varyGoulstem8144— 7y