PSA: Internal playback volume for AudioPlayers will soon double

If you don’t have any other scripts that change the volume of an AudioPlayer, this should do the trick.

for i, v in pairs (game:GetDescendants()) do
if v:IsA("AudioPlayer") then
v.Volume = v.Volume / 2
end
end

Of course if you have other scripts that explicitly set the volume number, you’ll just have to divide them by 2 yourself and change the numbers.

4 Likes