Player fall sound disable doesnt work

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)

you are defining SoundService to nil (you didn’t define it). also, SoundService does not have Volume as a property.

SoundGroup has the volume property however, so you could utilize that instead.

2 Likes