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!
01 | local Player = game.Players.LocalPlayer |
02 | local Char = Player.Character or Player.CharacterAdded:wait() |
03 | local Humanoid = Char:WaitForChild( "Humanoid" , 10 ) |
04 | local PossibleFeetNames = { |
12 | local FootstepLife = 10 |
16 | local function GrabFoot(Side) |
18 | for k,v in pairs (PossibleFeetNames [ Side ] ) do |
19 | local Chk = Char:FindFirstChild(v) |
26 | local LeftFoot = GrabFoot( "Left" ) |
27 | local RightFoot = GrabFoot( "Right" ) |
28 | return LeftFoot,RightFoot |
31 | local LeftFoot,RightFoot = FindFeet() |
33 | local Feet = { LeftFoot,RightFoot } |
35 | local MyFootPrints = { } |
37 | function GetFootPrint(Foot) |
38 | local Part = Instance.new( "Part" ,workspace) |
39 | local HRP = Char:FindFirstChild( "HumanoidRootPart" ) |
40 | local SavedCFrame = Foot.CFrame |
42 | local Pos = HRP.Position - Foot.Position |
43 | local x , y , z = HRP.CFrame:ToEulerAnglesXYZ() |
44 | SavedCFrame = CFrame.new( |
45 | (Foot.Position + Vector 3. new( 0 ,-(Foot.Size.Y/ 2 ), 0 ))) * CFrame.Angles(x,y,z) |
47 | Part.Size = Vector 3. new(Foot.Size.X, 0.1 ,Foot.Size.Z) |
48 | Part.CFrame = SavedCFrame |
51 | Part.CanCollide = false |
53 | local Index = #MyFootPrints+ 1 |
54 | MyFootPrints [ Index ] = Part |
55 | Part.AncestryChanged:connect( function (part,parent) |
56 | if (MyFootPrints [ Index ] ~ = nil ) then |
57 | MyFootPrints [ Index ] = nil |
60 | game.Debris:AddItem(Part,FootstepLife) |
64 | for k,v in pairs (Feet) do |
65 | v.Touched:Connect( function (otr) |
66 | print (table.find(MyFootPrints,otr)) |
67 | if (otr:IsDescendantOf(Char) = = false and table.find(MyFootPrints,otr) = = nil and LastFoot ~ = v) then |
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! :)