Advertisement
nhaine

Speed Hacks Roblox Free

Apr 24th, 2023
5,414
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.34 KB | Gaming | 0 0
  1. local RunService = game:getService("Run Service")
  2. local Players = game:getService("Players")
  3.  
  4. _G.WalkSpeed = 100
  5.  
  6. local Speed = _G.WalkSpeed
  7.  
  8. RunService.RenderStepped:connect(function()
  9.     local Plr = Players.LocalPlayer
  10.     local Char = Plr.Character
  11.     local Hum = Char.Humanoid
  12.  
  13.     if Plr and Char and Hum then
  14.         Hum.WalkSpeed = Speed
  15.     end
  16. end)
Advertisement
Comments
  • nhaine
    2 years
    # text 0.15 KB | 0 0
    1. Change The 100 Value To Whatever You Want For Example: _G.WalkSpeed = 100 Then I Change It To _G.WalkSpeed = 50, And The Players Speed Will Change To 50
Add Comment
Please, Sign In to add comment
Advertisement