I can’t loop audio.
playSound(‘back.wav’ {loop: true});
It just leaves me with “Unexpected token”
I tried using " as the string sorround-er.
I tried using the hacky way (using the audio frame in a clip.)
Yet, none works.
You need a comma after the ‘back.wav’ I think.
playSound(‘back.wav’, {loop: true});
Welcome to the forums @rblx08!
Just like what @awc95014 mentioned, you’ll just need a comma
playSound('back.wav', {loop: true});
bruh i was scrolling frantically through the forums just to find out its a syntax error bruh
6 Likes