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

[resolved] my playlist script plays all music at once for some reason, why?

Asked by 3 years ago
Edited 3 years ago
1while true do
2    for i,v in pairs(workspace.Musics:GetChildren()) do
3        v:Play()
4        wait(v.TimeLength)
5        v:Stop()
6    end
7end

expected result: plays 1 song at a time

actual result: plays all songs at once

please help me

Answer this question