|
| 17 Jul 2016 02:28 PM |
Hello, I need an audio script that will play a audio every 10 minutes, PM me the script! Thanks! |
|
|
| Report Abuse |
|
|
|
| 17 Jul 2016 02:30 PM |
while true do Sound:Play() wait(600) end |
|
|
| Report Abuse |
|
|
|
| 17 Jul 2016 02:30 PM |
sound = Instance.new('Sound', workspace) sound.Name = "YourAudio" sound.Volume = 1 sound.SoundId = 'http://www.roblox.com/asset/?id=27697743' sound:Play() |
|
|
| Report Abuse |
|
|
|
| 17 Jul 2016 02:31 PM |
Oops, I must've misread what you mean.
time = 60*10
while wait(time) do sound:Play() end |
|
|
| Report Abuse |
|
|