The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
BLAST SOUND script pastebin roblox
By BLAST SOUND on 2024-09-21 08:00 am | Syntax: LUA | Views: 15



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. --// Doesn't work if RespectFilteringEnabled is enabled
  2. print(game:GetService("SoundService").RespectFilteringEnabled)
  3.  
  4. --// Get's every sound instance in workspace and play's it (Earrape btw)
  5. for _, sound in next, workspace:GetDescendants() do
  6.    if sound:IsA("Sound") then
  7.        sound:Play()
  8.    end
  9. end