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

My speed script wont increase speed?

Asked by 6 years ago

Hey, im making a treadmill.
TreadMill
And this is the Code

01local deb= false
02local conveyer= script.Parent
03local stats= game.ServerStorage.PlrFolder
04local i= 0
05local update= game.ReplicatedStorage.updateStats
06 
07script.Parent.Touched:Connect(function(hit)
08if deb == false then deb=true
09if hit.Parent:FindFirstChild("Humanoid") then
10    local plr= game.Players:GetPlayerFromCharacter(hit.Parent)
11    if plr then
12        local pf= stats[plr.Name]
13        local speed= pf.Speed
14         
15        do
16        for _,v in pairs(script.Parent.Parent.active:GetChildren()) do
17            v.BrickColor= BrickColor.new("Lime green")
18        end
19        end
20         
21        while (hit.Position - conveyer.Position).magnitude < 10 and hit.Parent.Humanoid.MoveDirection ~= Vector3.new(0,0,0) do
22            i=i+1
23                if i == 500 and speed < 40 then
24                speed = speed+1
25                i=0
26            end
27            wait()
28        end
29         
30        do
31        for _,v in pairs(script.Parent.Parent.active:GetChildren()) do
32            v.BrickColor= BrickColor.new("Bright blue")
33        end
34        end
35         
36        i=0
37    end
38end
39deb=false
40end
41end)

But the walk speed does not increase:

1if i == 500 and speed < 40 then
2 
3speed = speed+1

I tried placing the = and the + on other spots like this.

1if i == 500 and speed < 40 then
2speed = speed + 1

But as you already knew i did not work OOF
So you guys know how to do this?

Treadmill: https://www.roblox.com/catalog/03133642024/redirect

Oh and the output says nothing

0
I'm curious to know how you are storing the player names and why just not use "game.Players:GetPlayers()[plr.Name]"? DeceptiveCaster 3761 — 6y
0
Becasue my friend helped me make this and i know a little of scripting jorickbouw 0 — 6y

1 answer

Log in to vote
0
Answered by
Yuuwa0519 197
6 years ago

I am not good at programming my self so i might be wrong, but i will guess you have to change how you define the speed.(I don`t understand the pairs and stuff so i can only fix first few lines sorry.)

1script.Parent.Touched:Connect(function(hit)
2    if deb == false then deb = true
3    if hit.Parent:FindFirstChild("Humanoid") then
4    local humanoid = hit.Parent:FindFirstChild("Humanoid")
5    local speed = humanoid.WalkSpeed
6    --from here i do not know how to help sorry.

So after defining what speed represents by finding from humanoid part, it should change the speed to whatever you want.

0
if there is any mistake please tell me. Yuuwa0519 197 — 6y
Ad

Answer this question