Advertisement
Meliodas0_0

speed bypass

Sep 19th, 2019
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. function speedbypass()
  2. local ws = 16
  3. local lplr = game.Players.LocalPlayer
  4. lplr.Chatted:connect(function(msg)
  5. if string.sub(msg, 1, 5) == "/e ws" then
  6. ws = string.match(msg, "%d+")
  7. end
  8. end)
  9. lplr.Character.Humanoid.Changed:connect(function()
  10. if lplr.Character.Humanoid.WalkSpeed ~= ws then
  11. lplr.Character.Humanoid.WalkSpeed = ws
  12. end
  13. end)
  14. end
  15. speedbypass()
  16. game.Players.LocalPlayer.CharacterAdded:connect(function(chr)
  17. chr:WaitForChild("Humanoid")
  18. speedbypass()
  19. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement