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

How to add custom footsteps sound? [closed]

Asked by 5 years ago

Hello! Can someone tell me how to change default footsteps sound to custom?

0
this is not a script request site, do your own research first and if that fails you can come and ask for help not a solution Gameplayer365247v2 1055 — 5y

Closed as Not Constructive by Void_Frost and DeceptiveCaster

This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.

Why was this question closed?

1 answer

Log in to vote
0
Answered by 5 years ago
Edited 5 years ago

Hello!, all sounds are stored simply player's Head, if you want to make an script that changes it, i would do an server script in StarterCharacterScripts :

player = script.Parent
sound = "rbxassetid://1843382633" -- id here
sounds = player.Head:waitForChild("Running")
sounds.SoundId = sound

You can also do that as well with other sounds like swimming, death, jump, or change the sound properties by expanding the script.

If this answers your question, approve it! Thank you.

tell me if something did not work properly.

NOTE: The script will "restart" as the player dies.

Ad