#pls help i need to create every 1 second you get 1 walkspeed HELP MEEEE

1 messages · Page 1 of 1 (latest)

umbral stirrup
gaunt python
#

local player = game.Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local humanoid = character:WaitForChild("Humanoid")

player.CharacterAdded:Connect(function(char)
character = char
humanoid = character:WaitForChild("Humanoid")
end)

while true do
wait(1)
if humanoid then
humanoid.WalkSpeed = humanoid.WalkSpeed + 1
end
end

sand mesaBOT
#

studio** You are now Level 1! **studio

gaunt python
#

Put it starterplayerscript (local)

tender loom
#

Or atleast I would

#

Sense it’s affecting stuff wirh the player in workspace

#

But starter player would work

gaunt python
#

i mean if your reset though

#

and that could cause speed to increase too fast or become unstable

gaunt python