how to make custom footstep sounds in roblox

Опубликовано: 06 Март 2025
на канале: TridePickle
2,541
19

script:
--poner en ServerScriptServicie o Workspace

--[[
Foorsteps para R6 y R15....
este script nosirve mucho para filtering enabled por lo cual no es recomendado usar este
script para places con FE
--CREDITOS: iiMAYK
--CREDOTOS: Xx_andresXx
--]]


game.Players.PlayerAdded:connect(function(p)
p.CharacterAdded:connect(function(c)
local x = script:GetChildren()
if c:FindFirstChild('Sound') then
c.Sound:Destroy()
end
for i = 1, #x do
if x[i]:IsA('Script') then
local e = x[i]:Clone()
e.Parent = c.HumanoidRootPart
e.Disabled = false
else
x[i]:Clone().Parent = c.HumanoidRootPart
end
end
local r = c.Head:GetChildren()
for i = 1,#r do
if r[i]:IsA('Sound') then
r[i]:Destroy()
end
end
end)
end)