Advertisement
DARKMODZ

fe loud audio script

May 28th, 2023 (edited)
2,411
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. -- Works in any game where RespectFilteringEnabled option is false
  2. -- !! If it doesn't say success, try it on a different game, usually an older game will work. !!
  3.  
  4. --[[
  5. A few games i've tested it on:
  6. https://www.roblox.com/games/12109643/Fencing
  7. https://www.roblox.com/games/189707/Natural-Disaster-Survival
  8. https://www.roblox.com/games/192800/Work-at-a-Pizza-Place
  9. https://www.roblox.com/games/6441847031/CHAOS
  10. https://www.roblox.com/games/155615604/Prison-Life
  11. Works on a lot more games than this, you just need to find them! ~ trial and error :)
  12. --]]
  13.  
  14. local Notification = loadstring(game:HttpGet("https://raw.githubusercontent.com/Jxereas/UI-Libraries/main/notification_gui_library.lua", true))()
  15. local SoundService = game:GetService("SoundService")
  16.  
  17. if SoundService.RespectFilteringEnabled == false then
  18. Notification.new("success", "Success", "Everyone can hear the sounds in this game!")
  19. Notification.new("message", "YouTube : darkModz", "YouTube - darkmodz")
  20. else
  21. Notification.new("warning", "Warning", "Unfortunately no one else can hear it in this game, try a different one.\nMaybe an older game will work.")
  22. end
  23.  
  24. while wait() do
  25. for _, sound in next, workspace:GetDescendants() do
  26. if sound:IsA("Sound") then
  27. sound.Volume = 10
  28. sound:Play()
  29. end
  30. end
  31. end
  32.  
  33.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement