What I am trying to do is a script that will play 2 sounds every 180 seconds heres the script:
game.Workspace.Sound:Play() wait(180) game.Workspace.Sound2:Play()
It plays only the first sound.
After
game.Workspace.Sound:Play()
You need to make it come to a stop, I suggest
Destroy()
I suggest putting ~~~~~~~~~~~~~~1 game.Workspace.Sound:Play() destroy() wait(180) game.Workspace.Sound2:Play()
~~~~~~~~~~~~~~~~~