01 | -- I put this stuff here to show just where the Sound is located |
02 |
03 | Song = Instance.new( "Sound" ) |
04 | Song.Parent = Workspace.Bucket |
05 | Song.Volume = 100 |
06 | Song.Looped = false |
07 |
08 | -- Here's the Assets table |
09 |
10 | Assets = { 143550410 , 142544487 , 154072002 , 150558724 , 147096633 , 143620887 , 148263609 , 142851579 , 154237445 , 142991813 , 152318857 , 142301307 , 157890927 , 144803449 , 148324182 , 146541462 , 160535179 , 154741433 , 142856192 , 162596497 , 144003396 , 144195439 , 145546010 , 152536688 , 162660508 , 145143628 , 146058363 , 148567163 , 142318459 , 163404486 } |
11 | for _, asset in ipairs (Assets) do |
12 | Game:GetService( "ContentProvider" ):Preload( "http://www.roblox.com/asset/?id=" .. asset) |
13 | end |
14 |
15 | -- Here's the actual part that needs work |
16 |
17 | Song.SoundId = Assets [ math.random( 1 ,#Assets) ] |
18 | Song:Play() |
What do I need to do to get this working? I want this to play a song randomly.
You were missing the asset for playing the sound. This is what it should look like.
1 | Song.SoundId = "rbxassetid://" ..Assets [ math.random( 1 ,#Assets) ] --'http://www.roblox.com/asset/?id=' can also be used. |