If so, how? I want to play a sound right after the first sound is finished playing.
what i'd do is count the seconds in the song then print it in wait. heres an example:
While true do local soundIDs = (1234567, 7654321) -- put your soundIDs here. -- put the first sound's name here then I think do play. 1stsound:Play() wait(40) -- the amount of time it takes to play the sound 2ndsound:Play() wait(40) -- the amount of time it takes to play the sound end -- hope this works! this is what I used for mine.