Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Is there a way to globally remove default character sound?

Asked by
BiIinear 104
4 years ago

Sorry if this doesn't abide by the rules, I'm just asking for some help on where and how to remove default character sound.

Better way of explaining the title; I want to remove the default character sounds, such as "Running", "Jumping", etc. (I know you can change the volume for all sounds to 0, but that's only client sided, others can still hear it.) If there is a way to remove default character sounds to where nobody can hear them, please tell me.

1 answer

Log in to vote
0
Answered by
haba_nero 386 Moderation Voter
4 years ago
Edited 4 years ago
game.Players.PlayerAdded:Connect(function(plr)
    local Running = plr.Character.Head:FindFirstChild("Running")
    repeat Running.SoundId = "0" until Running.SoundId == "0"
    repeat Running.Volume = 0 until Running.Volume == 0
end

This should do it

0
Sorry but I asked how to remove character sounds for server, not client. I don't want other people hearing other players footsteps. BiIinear 104 — 4y
0
Oh I thought it would work haba_nero 386 — 4y
Ad

Answer this question