Advertisement
SirMeme

ECLIPSIS

Aug 4th, 2018
332
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. local cs = game:GetService("CollectionService")
  2. local rs = game:GetService("RunService").RenderStepped
  3. local plr = game.Players.LocalPlayer
  4.  
  5. local function hack(c)
  6. if c:IsA("Tool") and c.Name ~= "Portafab" and not cs:HasTag(c,"hack") then
  7. while not cs:HasTag(c,"hack") and rs:Wait() do
  8. for i,v in next, debug.getregistry() do
  9. if type(v)=='function' and debug.getupvalues(v).self and debug.getupvalues(v).self.Tool and debug.getupvalues(v).self.Tool.Name == c.Name then
  10. local self = debug.getupvalues(v).self
  11. self.PrimaryFireRate = 2^31
  12. self.PrimaryAutomatic = true
  13. self.PrimaryIridiumCost = 0
  14. cs:AddTag(c,"hack")
  15. break
  16. end
  17. end
  18. end
  19. end
  20. end
  21.  
  22.  
  23. plr.Backpack.ChildAdded:Connect(hack)
  24.  
  25. plr.CharacterAdded:Connect(function() plr.Backpack.ChildAdded:Connect(hack) end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement