Advertisement
BenjaminPlays

Music Script - ROBLOX

Oct 2nd, 2020
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. Go to workspace insert "sound" then put this script inside that sound.
  2.  
  3. local sound1=179193677 -- introXX
  4. local sound2=565538403 -- [NCS Release] Survive feat. Neon Dreams
  5. local sound3=311316650 -- [NCS Release] Cartoon feat. Coleman Trapp - why we lose
  6. local sound4=672387727 -- [NCS Release] Kasger - Reflections
  7. local sound5=576096781 -- TheFatRat - monody
  8. local sound6=725861594 -- [NCS Release] Everybody
  9. local sound7=525275139 -- Acivii - levels
  10. local sound8=755156652 -- Dragons - Thunder
  11. local sound9=563882687 -- NCS - Alone
  12. local sound10=631841788 -- Shooting stars
  13. local music=script.Parent
  14.  
  15. while true do
  16. wait()
  17. music.SoundId="rbxassetid://"..sound1
  18. music:Play()
  19. music.Ended:wait()
  20.  
  21. music.SoundId="rbxassetid://"..sound2
  22. music:Play()
  23. music.Ended:wait()
  24.  
  25. music.SoundId="rbxassetid://"..sound3
  26. music:Play()
  27. music.Ended:wait()
  28.  
  29. music.SoundId="rbxassetid://"..sound4
  30. music:Play()
  31. music.Ended:wait()
  32.  
  33. music.SoundId="rbxassetid://"..sound5
  34. music:Play()
  35. music.Ended:wait()
  36.  
  37. music.SoundId="rbxassetid://"..sound6
  38. music:Play()
  39. music.Ended:wait()
  40.  
  41. music.SoundId="rbxassetid://"..sound7
  42. music:Play()
  43. music.Ended:wait()
  44.  
  45. music.SoundId="rbxassetid://"..sound8
  46. music:Play()
  47. music.Ended:wait()
  48.  
  49. music.SoundId="rbxassetid://"..sound9
  50. music:Play()
  51. music.Ended:wait()
  52.  
  53. music.SoundId="rbxassetid://"..sound10
  54. music:Play()
  55. music.Ended:wait()
  56. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement