I'm trying to detect if my character has moved using this script:
1 | local hrp = script.Parent.Parent:FindFirstChild( "HumanoidRootPart" ) |
2 |
3 | hrp.Changed:Connect( function (p) |
4 | print (p) |
5 | if p = = "Position" then |
6 | print ( "Your position has changed!" ) |
7 | end |
8 | end ) |
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!
You can use a Humanoid.Running Event. There are other events but I forgot. So this is the script
1 | char = script.Parent.Parent |
2 | hum = char:WaitForChild( "Humanoid" ) |
3 |
4 | hum.Running:Connect( function (Speed) |
5 | if Speed > 0 then |
6 | --code |
7 | end |
8 | end |