Is it possible to detect if a player is walking, and if so, can I get a wiki link or a script?
Yes. The Running
event on a Humanoid fires whenever a person starts or stops running, giving the speed they are moving at (their WalkSpeed
if they start walking, and 0
if they stop).
We can record whether or not they are running by a simple modification of state:
local isRunning = false;
someHumanoid.Running:connect(function(speed) isRunning = speed == 0; end);