Qpwisnd

Heatseeker!!? Maybe!!😉😉

Mar 27th, 2024 (edited)
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. local p = game.Players.LocalPlayer
  2. local c = getconnections(p.Character.Humanoid:GetPropertyChangedSignal("WalkSpeed"))
  3.  
  4. for i,v in pairs(c) do
  5. v:Disable()
  6. end
  7.  
  8. while true do
  9. local walkSpeed = 27
  10.  
  11. local gmt = getrawmetatable(game)
  12. setreadonly(gmt, false)
  13. local oldindex = gmt.__index
  14. gmt.__index = newcclosure(function(self,b)
  15. if b == "WalkSpeed" then
  16. return 16
  17. end
  18. return oldindex(self,b)
  19. end)
  20.  
  21. game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = walkSpeed
  22.  
  23. wait(0.5)
  24.  
  25. local walkSpeed = 10
  26.  
  27. local gmt = getrawmetatable(game)
  28. setreadonly(gmt, false)
  29. local oldindex = gmt.__index
  30. gmt.__index = newcclosure(function(self,b)
  31. if b == "WalkSpeed" then
  32. return 16
  33. end
  34. return oldindex(self,b)
  35. end)
  36.  
  37. game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = walkSpeed
  38.  
  39. wait(1)
  40.  
  41. end
Advertisement
Add Comment
Please, Sign In to add comment