while true do game.StarterGui.Ad1.Advertisment1.Visible = true wait(10) end
is what i tried. but it only opens once. pls help theres almost no source which could help me with it..
You have to put this script as a local script in the menu (The Advertisment1 Menu)
while true do script.Parent.Visible = true wait(10) end
So basically your going to want to write your code like this.
while true do wait(10) game.StarterGui.Ad1.Advertisment1.Visible = true end