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 2 years ago
Edited 2 years ago
while true do
    for i,v in pairs(workspace.Musics:GetChildren()) do
        v:Play()
        wait(v.TimeLength)
        v:Stop()
    end
end

expected result: plays 1 song at a time

actual result: plays all songs at once

please help me

Answer this question