Advertisement
mr2meows

scary music

Jun 26th, 2022
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. local ids = {
  2. 13061810,
  3. 13061809,
  4. 13061810,
  5. 13061802,
  6. 13061809,
  7. 12229501
  8. }
  9.  
  10. local sound = Instance.new("Sound")
  11. sound.Parent=script
  12.  
  13. while script and script.Parent and wait(9) do
  14. for i, id in ipairs(ids) do
  15. for i = 1, 0, -0.01 do
  16. sound.Volume = i
  17. wait(1 / 100)
  18. end
  19. sound:Stop()
  20. sound.Volume = 1
  21. sound.SoundId = "rbxassetid://" .. id
  22. if i == 1 then
  23. sound.Pitch = 0.3
  24. elseif i == 2 then
  25. sound.Pitch = 0.2
  26. else
  27. sound.Pitch = 0.1
  28. end
  29. sound:Play()
  30. end
  31. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement