Advertisement
Guest User

Untitled

a guest
Aug 12th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. local music = {
  2. "853588295",
  3. "138081652"
  4. }
  5.  
  6. local randomized = true --Change to false if you want it in order
  7.  
  8. local f = Instance.new("Folder"); f.Parent = workspace; f.Name = "music"
  9. if randomized == true then
  10. for i=1, #music do
  11. local s = Instance.new("Sound")
  12. s.Parent = f
  13. s.SoundId = music[i]
  14. end
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement