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

TimeLength script not working?

Asked by
NotSoNorm 777 Moderation Voter
9 years ago

I'm trying to get this to play another song when the first song ends, but I keep getting "ending song" spammed in the output.

01repeat wait() until script.Ignore
02--Playlist
03Songs = {234174567,245311593,175588117,152208064} --there are more songs but too many for sh
04--Variables
05local Audio = script.Parent.Speakers:GetChildren()
06local cont = false
07mainspeaker = script.Parent.Speakers.MainSpeaker.Sound
08 
09while true do
10    local randomize = Songs[math.random(1, #Songs)]
11    cont = false
12--  script.Ignore.Previous.Value = Audio.MainSpeaker.Sound.SoundId
13    for i = 1, #Audio do
14        Audio[i].Sound.SoundId = "rbxassetid://"..randomize
15    end
View all 36 lines...

1 answer

Log in to vote
2
Answered by 9 years ago

There is somewhat of a delay with roblox whenever you change the SoundId of a sound, which causes the time length to not immediately change. Try adding a wait() or wait(.1) before the line where you use the TimeLength property.

If this fails, you'll have to either wait a little more or possibly just resort to using a dictionary (a table that contains each song id as an index with its value as the length in seconds).

Ad

Answer this question