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

Can Anyone Teach Me How To Detect When A Humanoid Is Walking?

Asked by 3 years ago

Im trying to make it so when a humanoid walks the effect gets bigger but idk how to detect when a humanoid is walking so here i am

1 answer

Log in to vote
0
Answered by 3 years ago

Use Humanoid Running events,which fires when the humanoid speed changes

local Humanoid = --Humanoid
Humanoid.Running:Connect(function()
--Effect script here
end)

Hope it helps! More information at: https://developer.roblox.com/en-us/api-reference/event/Humanoid/Running

Ad

Answer this question