This is my script that doesnt disable fall sounds. tried a lot of scripts but this is the one now:
localscript in StarterPlayerScripts:
-- Mute all sounds immediately when player joins
SoundService.Volume = 0
print("🔇 Sounds muted for 6 seconds")
-- Restore sounds after 6 seconds
task.delay(6, function()
SoundService.Volume = 1 -- back to normal
print("🔊 Sounds restored")
end)