Is there a way to remove and/or replace the default roblox character footstep sound? It's annoying and it makes everything sound plastic, is there some way to remove it and at best replace it with a more realistic and lively audio file or "Sound"?
Removing:
Put this in a Local Script
and put it in StarterPlayer>StarterCharacterScripts
1 | local walk = script.Parent.Head:WaitForChild( "Running" ) |
2 | walk.Volume = 0 |
Changing:
Put this in a Local Script
and put it in StarterPlayer>StarterCharacterScripts
1 | local change = "put audio id here" |
2 | local walk = script.Parent.Head:WaitForChild( "Running" ) |
3 | walk.Id = change |
Don't let the name of the footstep sound fool you. Running is the name of the walking sound. If this helped, please upvote and accept my answer.
Yes there is ! I did it yesterday:
Go onto Test mode in Studio| Go to Workspace>"YourNameHere" (It's a model)| Click onto your 'Head'| Copy all of the sounds| Go back to Studio| Paste the sounds in your head| Go to Develop>Library>Audio>"YourDesiredAudioName"| Find one you like| Copy the numbers on the address| Go to "YourNameHere">'Head'>'Running'| Replace your current sound| VOILA !
(I just realized,the tutorial I gave here is when you have made a custom rig... I made one custom rig so I did all what's shown above)