Is there a way to make custom footsteps in roblox? There was a script I tried to use, but it was 2014 -- outdated.
001 | local player = script.Parent.Parent |
002 | repeat wait() until player.Character |
003 |
004 | --Remove ROBLOX Sounds: |
005 | if player.Character:FindFirstChild( 'Sound' ) then |
006 | player.Character.Sound:Destroy() |
007 | end |
008 | for i,object in pairs (player.Character.Head:getChildren()) do |
009 | if object:IsA( "Sound" ) then |
010 | object:Destroy() |
011 | end |
012 | end |
013 |
014 | --Sound Data: |
015 | local sound = { |
I want to make my own custom sounds. . . Can someone help me?
Edit the "Running" sound in the player's head.