1 | game.Players.PlayerAdded:connect(onPlayerEntered)game.Players.PlayerAdded:connect( function (player) |
2 | player.CharacterAdded:connect( function (character) |
3 | footsteps.Sound:remove() |
4 | end ) |
5 | end ) |
Heres my script (one line doesn't fit).
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:
1 | wait( 1 ) |
2 | player = game.Players.LocalPlayer |
3 | player:WaitForChild( "Backpack" ) |
4 | player.Character.Head.Running.Volume = 0 |