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

Why does this only work in studio?

Asked by 8 years ago

So trying to make it so after a song it picks a new one if theres no queued song.It only is working in studio and only plays the same song and stops after it in game. Ive taken precautions to help stop it, but nothing is working. what do i do?

local MusicBrick = workspace.MusicPlayer local Queue = game.ServerStorage.SongQueue

local MusicBrick = workspace.MusicPlayer
local Queue = game.ServerStorage.SongQueue

while wait() do
    if Queue.S1.Value == "Blank" then -- No songs in queue
        local songs = MusicBrick:GetChildren()
        while true do
        song = songs[math.random(1, #songs)]
        repeat wait() until song ~= nil
        if song:IsA("Sound") then break end
        end
        song:Play()
        song.Ended:wait()
    elseif Queue.S1.Value ~= "Blank" then -- Song in Queue
        MusicBrick[Queue.S1.Value]:Play()
        local song = MusicBrick[Queue.S1.Value]
        Queue.S1.Value = Queue.S2.Value
        Queue.S2.Value = Queue.S3.Value
        Queue.S4.Value = Queue.S5.Value
        Queue.S5.Value = "Blank"
        song.Ended:wait()
    end
end
0
Probably not related, but you're missing `Queue.S3.Value = Queue.S4.Value`. XAXA 1569 — 8y
0
omg your right qq bubbaman73 143 — 8y

1 answer

Log in to vote
1
Answered by
Cuvette 246 Moderation Voter
8 years ago

This might help. https://scriptinghelpers.org/blog/it-works-in-studio-but-not-online

1
Typically posts of this kind should be left in the comments section, however due your reputation you do not have that privilege. Note to the asker, this is a blog link not a question link. M39a9am3R 3210 — 8y
0
But im waiting for the sound though in line 9, why wont that work? bubbaman73 143 — 8y
Ad

Answer this question