Kvasa

Case Clicker auto farm

Jan 19th, 2019
4,899
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. local updateCaseBux;
  2. local c_code;
  3.  
  4. for i,v in next, debug.getregistry() do
  5. if type(v) == "function" then
  6. local upvals = debug.getupvalues(v);
  7. for a,b in next, upvals do
  8. if a == "updateCaseBux" then
  9. updateCaseBux = b;
  10. end
  11. if a == "c_code" then
  12. c_code = b;
  13. end
  14. end
  15. end
  16. end
  17.  
  18. game:GetService("RunService").RenderStepped:Connect(function()
  19. updateCaseBux:FireServer(c_code)
  20. end)
Advertisement
Add Comment
Please, Sign In to add comment