Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How would I make more audio play in my game than just this one I scripted?

Asked by 6 years ago
Edited 6 years ago

LocalScript:

game.ReplicatedStorage.BackgorundMusic:Play()

I can make one audio file play with this script, but how can I make more play after this one ends?

1 answer

Log in to vote
0
Answered by 6 years ago
game.ReplicatedStorage.BackgorundMusic:Play()
wait (---How long you want to wait before you play next song here in second numbers)
game.ReplicatedStorage.Nextsoundhere:Play()
wait (---How long you want to wait before you play next song here in second numbers)
--- And so on.
0
^ If I wanted it to loop could I use a while true do loop? Skepticalitys 31 — 6y
0
I would try to do a repeat if so. tim458458 29 — 6y
Ad

Answer this question