Humanoid.Running Script Isn't Working Correctly? [SOLVED]
Asked by
5 years ago Edited 5 years ago
[SOLVED BY MYSELF]
I want this script to detect when a player is moving, and give speed if they are. It was working at one point, and still is, just not all the time.
What I mean by this, is if my speed suddenly changes, it'll detect me moving, but if I'm moving at a relatively constant speed, it doesn't.
I've tried a lot of different things, and nothing is working. Here is the code, any help is appreciated.
01 | game.Players.PlayerAdded:Connect( function (player) |
02 | player:WaitForChild( "leaderstats" ):WaitForChild( "Cardio" ) |
04 | local Debounce = false |
06 | local Speed = player.Speed |
07 | local TotalSpeed = player.TotalSpeed |
08 | local Cardio = player.leaderstats.Cardio |
09 | local TotalCardio = player.TotalCardio |
10 | local SpeedMulti = player.SpeedMulti |
13 | local Char = game.Workspace:WaitForChild(player.Name) |
16 | Char.Humanoid.Running:Connect( function (speed) |
17 | if Debounce = = false and speed > 0 then |
20 | Speed.Value = Speed.Value + 1 * SpeedMulti.Value |
21 | TotalSpeed.Value = TotalSpeed.Value + 1 * SpeedMulti.Value |
22 | Cardio.Value = Cardio.Value + 1 * SpeedMulti.Value |
23 | TotalCardio.Value = TotalCardio.Value + 1 * SpeedMulti.Value |
Edit:
The print(speed) also doesn't print.