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

How to add custom footsteps and remove the old roblox footsteps?

Asked by
clrik 8
7 years ago

Is there a way to make custom footsteps in roblox? There was a script I tried to use, but it was 2014 -- outdated.

001local player = script.Parent.Parent
002repeat wait() until player.Character
003 
004--Remove ROBLOX Sounds:
005if player.Character:FindFirstChild('Sound') then
006    player.Character.Sound:Destroy()
007end
008for i,object in pairs(player.Character.Head:getChildren()) do
009    if object:IsA("Sound") then
010        object:Destroy()
011    end
012end
013 
014--Sound Data:
015local sound = {
View all 142 lines...

I want to make my own custom sounds. . . Can someone help me?

0
I wasn't trying to copyright anybody, or steal any scripts, but I just want to know how to make my own. clrik 8 — 7y

1 answer

Log in to vote
1
Answered by
Nowaha 459 Moderation Voter
7 years ago

Edit the "Running" sound in the player's head.

0
I guess that works :3 clrik 8 — 7y
0
I dont know how that works... clrik 8 — 7y
0
Nvm I got it. clrik 8 — 7y
0
Yeah but I cant save it. It always unsaves what I did because I am editing in Play mode christiandaepic 0 — 6y
0
YOu know you should probably use comments if you aren't gonna post an explanation instead. xxIamInevitable 2 — 4y
Ad

Answer this question