Advertisement
DinosaurXxX

inf nitro

Mar 31st, 2020
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. local LocalScript = decompile(game:GetService("Players").LocalPlayer.PlayerScripts.LocalScript)
  2.  
  3. local nitro_remote = "";
  4. local function infnitro(remote)
  5. for i,v in next, getreg() do
  6. if type(v) == "function" then
  7. for i,v in next, debug.getupvalues(v) do
  8. if type(v) == "table" and rawget(v, 'FireServer') then
  9. v:FireServer(remote, -1999999)
  10. end
  11. end
  12. end
  13. end
  14. end
  15.  
  16. local function GrabRemote(rgx)
  17. return string.sub(string.gsub(string.sub(rgx, 13, -1), "", "") .. "", 1, 8)
  18. end
  19.  
  20. local regex = "FireServer%b()"
  21.  
  22. local index = 0;
  23. for v in LocalScript:gmatch(regex) do
  24. index = index + 1;
  25. if index ~= 1 then
  26. local remote = GrabRemote(v)
  27. if index - 1 == 2 then
  28. nitro_remote = remote;
  29. end
  30. end
  31. end
  32.  
  33. infnitro(nitro_remote)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement