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

Can someone tell me how to make a walking sound when the character moves? [closed]

Asked by
zpfran -25
4 years ago

I need this for my game and I don't know how to do it... Plz Help that would be really helpful! THANKS!!

0
SIGH... zpfran -25 — 4y
0
NO HATERS zpfran -25 — 4y
0
Who is hating? programmerHere 371 — 4y
0
no bodys hating Deinonychusaurus 21 — 4y

Closed as Not Constructive by hiimgoodpack and Leamir

This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.

Why was this question closed?

1 answer

Log in to vote
-1
Answered by 4 years ago

Don't ask for code but your lucky this time

wait()
local Moving = false

humanoid.Running:Connect(function(s)
 if s > 1 then
    if not Moving then
    script.Sand:Play()
    Moving = true
end
    else
    script.Sand:Stop()
Moving = false
    end
end)

make this a server script and put it in startercharacter scripts put the sound you want to play inside the script and set looping to true

0
This is why people still post request questions hiimgoodpack 2009 — 4y
Ad