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

How do you detect if your character has moved?

Asked by 6 years ago
Edited 6 years ago

I'm trying to detect if my character has moved using this script:

1local hrp = script.Parent.Parent:FindFirstChild("HumanoidRootPart")
2 
3hrp.Changed:Connect(function(p)
4    print(p)
5    if p == "Position" then
6        print("Your position has changed!")
7    end
8end)

but for some reason it won't work

Edit: Nevermind i just put the script in the wrong place. If i put the script in starter player, then it works!

0
Connect to the Changed instance in the HumanoidRootPart. It will fire whenever the player moves. exxtremestuffs 380 — 6y
0
changed doesnt fire on busy events, such as position Gey4Jesus69 2705 — 6y

1 answer

Log in to vote
2
Answered by 6 years ago
Edited 6 years ago

You can use a Humanoid.Running Event. There are other events but I forgot. So this is the script

1char = script.Parent.Parent
2hum = char:WaitForChild("Humanoid")
3 
4hum.Running:Connect(function(Speed)
5    if Speed > 0 then
6        --code
7    end
8end

click here for more

0
oops HappyTimIsHim 652 — 6y
0
u could also use the StateChanged event for more precision Gey4Jesus69 2705 — 6y
0
k HappyTimIsHim 652 — 6y
0
the Speed is how fast the player is moving HappyTimIsHim 652 — 6y
0
yeah it would be Enum.HumanoidStateType.Running DeceptiveCaster 3761 — 6y
Ad

Answer this question