I want to make a script so it loops for me a hi audio every 10 seconds without having to use the looping thing in the audio properties. I tried script.parent.audio.looping = true but it does that wrong.
While True Do script.Parent.Audio.Playing = true wait(however long the audio is) script.Parent.Audio.Playing = false wait(10) end