Advertisement
script_maka

Untitled

Apr 16th, 2023
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. local NetworkClient = game:GetService("NetworkClient")
  2. NetworkClient:SetOutgoingKBPSLimit(9e9)
  3. local old;
  4. local looping = false
  5. old = hookmetamethod(game, "__namecall", function(self, ...)
  6. if tostring(self) == 'train' and not checkcaller() and not looping and getgenv().Active then
  7. looping = true
  8. for i = 1, 2000 do
  9. old(self, ...)
  10. end
  11. task.wait(10)
  12. looping = false
  13. end
  14. return old(self, ...)
  15. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement