Categories > Exploiting > Scripts >
[REQ] Mute all sounds in workspace
Posted
basically turn volume for all sounds to 0 in the workspace
anyone know how?
soy pro
Replied
try a for loop and get descendants instead of children
Cancel
Post
Ty for rep: Swiney, Byoke, Lion, Locust, Waves, Weeb, Nickk, darkn, Atari, CubeFaces, Lux14, Rice, Delta, Syraxes, Aeon, Jordan, Pluto, and Hiroku!
P.S, I like cats better too!
soy pro
Replied
this should work, havent tested it tho. if it doesnt work send a screenshot of the error
for _,v in next, game:GetDescendants() do
if v:IsA("Sound") then
v:Stop()
v.Played:Connect(function()
v:Stop()
end)
end
end
game.DescendantAdded:Connect(function(v)
v:Stop()
v.Played:Connect(function()
v:Stop()
end)
end)
Cancel
Post
Added
the game could modify the volume or recreate the sound
also why cant i dirrectly mention you wrd >:((
Cancel
Post
Added
yeah i was too lazy to launch vscode and made it in a discord code block
https://cdn.discordapp.com/attachments/978212409145708565/994548999455526942/KEKE.png
Cancel
Post
Did I mention I use arch btw?
Replied
ty guys i love you
Cancel
Post
soy pro
Replied
Wow
It's very cool.
Cancel
Post
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post