Advertisement
Cakey3101

Episode 1 - Speed Manager Script

Mar 3rd, 2025
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.44 KB | Source Code | 0 0
  1. local Players = game:GetService("Players")
  2.  
  3. while wait(0.5) do
  4.     local Players = Players:GetPlayers()
  5.     for i = 1, #Players do
  6.          if children[i].Character ~= nil then
  7.              local Humanoid = Players[i].Character.Humanoid
  8.              if children[i].leaderstats["⚡Speed"].Value >= 0 then
  9.                  Humanoid.WalkSpeed = children[i].leaderstats["⚡Speed"].Value / 20 + 0.1
  10.              end
  11.          end
  12.     end
  13. end
Tags: robloxstudio
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement