Hey, im making a treadmill.
And this is the Code
01 | local deb = false |
02 | local conveyer = script.Parent |
03 | local stats = game.ServerStorage.PlrFolder |
04 | local i = 0 |
05 | local update = game.ReplicatedStorage.updateStats |
06 |
07 | script.Parent.Touched:Connect( function (hit) |
08 | if deb = = false then deb = true |
09 | if 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 ~ = Vector 3. 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 |
38 | end |
39 | deb = false |
40 | end |
41 | end ) |
But the walk speed does not increase:
1 | if i = = 500 and speed < 40 then |
2 |
3 | speed = speed+ 1 |
I tried placing the = and the + on other spots like this.
1 | if i = = 500 and speed < 40 then |
2 | speed = 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
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.)
1 | script.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.