I made a script that will play radio chatter every 60 seconds, doesn't seem to be working.
Any ideas?
local Audio = script.Parent["Vietnam War Radio Chatter - Briefing"] if Audio.IsPlaying == false and Audio.IsPaused == true then Audio.IsPlaying = true Audio.IsPaused = false print("playing audio") wait(60) Audio.IsPlaying = false Audio.IsPaused = true end
You need to use an audio id for this instead of the name of the audio