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

does anyone know how to make material based footsteps?

Asked by 4 years ago

i want it for the same game i needed the chair stuff for can someone help with this?

0
I do too want to know MediaHQ 53 — 4y

1 answer

Log in to vote
0
Answered by
TGazza 1336 Moderation Voter
4 years ago

funny you should ask. i've made in the past something simular that creates a part where the footstep would be for your character. But i never finished it and if i remeber correctly it's buggy but it works.

if you want to take a look on a way i did this, Heres the code i have:

Must be in a LocalScript!

01local Player = game.Players.LocalPlayer
02local Char = Player.Character or Player.CharacterAdded:wait()
03local Humanoid = Char:WaitForChild("Humanoid",10)
04local PossibleFeetNames = {
05    Left = {
06        "LeftFoot"
07    },
08    Right = {
09        "RightFoot"
10    }
11}
12local FootstepLife = 10
13 
14 
15function FindFeet()
View all 73 lines...

the script still works as of today 07 oct 2020 but it still needs refining and to add the decal foot print to the new'ly created parts.

Hope this helps you getting started! :)

0
think there might be some errors in the footstep table wher its not finding the other foot step parts and starts to spam footsteps parts occasionally lol TGazza 1336 — 4y
0
ok im dumb and ment footstep sounds steel_apples 58 — 4y
Ad

Answer this question