local function removeLoopingMusic() local sounds = workspace:GetDescendants() for _, sound in ipairs(sounds) do if sound:IsA("Sound") and sound.Looped == true then sound:Destroy() end end end wait(0.0000000001) removeLoopingMusic()