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

How do I make a randomly picking audio script?

Asked by 6 years ago

I'm trying to make an audio playlist that picks a random song and plays it and I thought I had it down but it does absolutely nothing, no errors, nothing.

01local audioFolder = game.Workspace.Audios:GetChildren()
02 
03function selectSong()
04    wait(.2)
05    local pickedSong = math.random(1,#audioFolder)
06    local namePick = tostring(pickedSong)
07    namePick:Play()
08    wait(320)
09    namePick:Pause()
10end
11while true do
12    wait(.2)
13    if audioFolder ~= nil then
14        selectSong()
15        wait(2)
16    else
17        print("Audio folder does not exist")
18    end
19end

Please help, thanks!

3 answers

Log in to vote
0
Answered by 6 years ago

You forgot to wrap the table "audioFolder" with these little brackets, "[]". Also, adding a tostring is unnecessary since you want the audio itself, so use these lines instead

1local pickedSong = audioFolder[math.random(#audioFolder)]
2local namePick = pickedSong
Ad
Log in to vote
0
Answered by 6 years ago

Instead of the sound objects themselves, you could do this.

1local soundIds = {28727449, 2928484, 19395, 29284, 38272} -- random numbers
2-- put the proper id's in the table
3 
4local soundId = soundIds[math.random(1, #soundIds)]
5 
6local sound = Instance.new("Sound",game.Workspace)
7 
8sound.SoundId = "rbxassetid://"..soundId
Log in to vote
0
Answered by 6 years ago
Edited 6 years ago

pickedSong in your script will only be a number not a song. So you need to access the actual song like so:

1local song = audioFolder[pickedSong] -- remember picked song is a number
2-- this is just an example

then you should be good to go.

Answer this question