Advertisement
ShutUpJamesTheLoser

spooky

Mar 6th, 2025
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.04 KB | None | 0 0
  1. local firstSoundId = "rbxassetid://104570724610975"
  2. local secondSoundId = "rbxassetid://91824290033214"
  3. local thirdSoundId = "rbxassetid://98626162521082"
  4. local fourthSoundId = "rbxassetid://114573847650036"
  5. local fifthSoundId = "rbxassetid://98527792396195"
  6. local sixthSoundId = "rbxassetid://138003843805735"
  7. local seventhSoundId = "rbxassetid://76024702679889"
  8. local eighthSoundId = "rbxassetid://82631331316597"
  9. local ninthSoundId = "rbxassetid://99247640743717"
  10. local tenthSoundId = "rbxassetid://95261884054124"
  11.  
  12. local firstSound = Instance.new("Sound")
  13. firstSound.SoundId = firstSoundId
  14. firstSound.PlaybackSpeed = 0.17
  15. firstSound.Volume = 10
  16. firstSound.Parent = workspace
  17.  
  18. local secondSound = Instance.new("Sound")
  19. secondSound.SoundId = secondSoundId
  20. secondSound.PlaybackSpeed = 0.17
  21. secondSound.Volume = 10
  22. secondSound.Parent = workspace
  23.  
  24. local thirdSound = Instance.new("Sound")
  25. thirdSound.SoundId = thirdSoundId
  26. thirdSound.PlaybackSpeed = 0.17
  27. thirdSound.Volume = 10
  28. thirdSound.Parent = workspace
  29.  
  30. local fourthSound = Instance.new("Sound")
  31. fourthSound.SoundId = fourthSoundId
  32. fourthSound.PlaybackSpeed = 0.17
  33. fourthSound.Volume = 10
  34. fourthSound.Parent = workspace
  35.  
  36. local fifthSound = Instance.new("Sound")
  37. fifthSound.SoundId = fifthSoundId
  38. fifthSound.PlaybackSpeed = 0.17
  39. fifthSound.Volume = 10
  40. fifthSound.Parent = workspace
  41.  
  42. local sixthSound = Instance.new("Sound")
  43. sixthSound.SoundId = sixthSoundId
  44. sixthSound.PlaybackSpeed = 0.17
  45. sixthSound.Volume = 10
  46. sixthSound.Parent = workspace
  47.  
  48. local seventhSound = Instance.new("Sound")
  49. seventhSound.SoundId = seventhSoundId
  50. seventhSound.PlaybackSpeed = 0.17
  51. seventhSound.Volume = 10
  52. seventhSound.Parent = workspace
  53.  
  54. local eighthSound = Instance.new("Sound")
  55. eighthSound.SoundId = eighthSoundId
  56. eighthSound.PlaybackSpeed = 0.17
  57. eighthSound.Volume = 10
  58. eighthSound.Parent = workspace
  59.  
  60. local ninthSound = Instance.new("Sound")
  61. ninthSound.SoundId = ninthSoundId
  62. ninthSound.PlaybackSpeed = 0.17
  63. ninthSound.Volume = 10
  64. ninthSound.Parent = workspace
  65.  
  66. local tenthSound = Instance.new("Sound")
  67. tenthSound.SoundId = tenthSoundId
  68. tenthSound.PlaybackSpeed = 0.17
  69. tenthSound.Volume = 10
  70. tenthSound.Parent = workspace
  71.  
  72. local function playSoundsInLoop()
  73. firstSound:Play()
  74. firstSound.Ended:Connect(function()
  75. secondSound:Play()
  76. secondSound.Ended:Connect(function()
  77. thirdSound:Play()
  78. thirdSound.Ended:Connect(function()
  79. fourthSound:Play()
  80. fourthSound.Ended:Connect(function()
  81. fifthSound:Play()
  82. fifthSound.Ended:Connect(function()
  83. sixthSound:Play()
  84. sixthSound.Ended:Connect(function()
  85. seventhSound:Play()
  86. seventhSound.Ended:Connect(function()
  87. eighthSound:Play()
  88. eighthSound.Ended:Connect(function()
  89. ninthSound:Play()
  90. ninthSound.Ended:Connect(function()
  91. tenthSound:Play()
  92. tenthSound.Ended:Connect(function()
  93. playSoundsInLoop()
  94. end)
  95. end)
  96. end)
  97. end)
  98. end)
  99. end)
  100. end)
  101. end)
  102. end)
  103. end)
  104. end
  105.  
  106. playSoundsInLoop()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement