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

How to remove footsteps sound?

Asked by 7 years ago
1game.Players.PlayerAdded:connect(onPlayerEntered)game.Players.PlayerAdded:connect(function(player)
2    player.CharacterAdded:connect(function(character)
3footsteps.Sound:remove()
4    end)
5end)

Heres my script (one line doesn't fit).

0
Please anyone help me! Lolamtic 63 — 7y
0
you can't just start of with footsteps.Sound:remove() and plus it is Remove() not 'remove()' caps R btw on line one, thats a major error... do this game.Players.PlayerAdded:connect(function(player) player.CharacterAdded:connect(function(character) -- you didn't even use the character... greatneil80 2647 — 7y
0
i did it but it doesnt fit in this Question Lolamtic 63 — 7y

1 answer

Log in to vote
0
Answered by 7 years ago

The sounds are inside of the player's head. Also your script would only work until the player dies. Just put a localscript in the StarterPack that says:

1wait(1)
2player = game.Players.LocalPlayer
3player:WaitForChild("Backpack")
4player.Character.Head.Running.Volume = 0
0
Thank you so much! Lolamtic 63 — 7y
Ad

Answer this question