Custom MusicPlaylist Kit

I made a Music Playlist Kit Pls Review it and for all the people that can’t script this is really easy to use you just need to read the instructions.

Everytime someone asks me something to chage and i change it i always publish it isntant.
Also a GUI is coming soon with it to mute music and also look what music is playing.

--LoopScript
if Settings.Replay.Value == true then
print("ReplayIsEnabled")
while true do
	for i in pairs(Songs) do
		Music.SoundId = "rbxassetid://"..Songs[i]
		Music:Play()
		repeat wait (1) until not Music.IsPlaying
	end
end
end

(I really don’t like formatting code on Discourse)

Instead of using repeat wait(1) until not Music.IsPlaying you can instead use this:
Music:GetPropertyChangedSignal("IsPlaying"):Wait()

1 Like

Thx for helping and giving some feedback.