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

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.

01game.Players.PlayerAdded:Connect(function(player)
02    player:WaitForChild("leaderstats"):WaitForChild("Cardio")
03 
04    local Debounce = false
05 
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
11 
12 
13    local Char = game.Workspace:WaitForChild(player.Name)
14 
15    while true do
View all 30 lines...

Edit: The print(speed) also doesn't print.

1 answer

Log in to vote
0
Answered by 5 years ago

And once again, I ended up solving it myself... Maybe I should just never ask a question. But anyways, here's what I did to make it work:

01game.Players.PlayerAdded:Connect(function(player)
02    player:WaitForChild("leaderstats"):WaitForChild("Cardio")
03 
04    local Speed = player.Speed
05    local TotalSpeed = player.TotalSpeed
06    local Cardio = player.leaderstats.Cardio
07    local TotalCardio = player.TotalCardio
08    local SpeedMulti = player.SpeedMulti
09 
10 
11    local Char = game.Workspace:WaitForChild(player.Name)
12 
13    local runSpeed
14    Char.Humanoid.Running:Connect(function(speed)
15        runSpeed = speed
View all 29 lines...
Ad

Answer this question