InfMods

ear rape

Jul 27th, 2022
2,478
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  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
Add Comment
Please, Sign In to add comment