print(game:GetService("SoundService").RespectFilteringEnabled)
while true do
--// Get's every sound instance in workspace and play's it (Earrape btw)
for _, sound in next, workspace:GetDescendants() do
if sound:IsA("Sound") then
sound:play()
end
end
wait(1)
end