Advertisement
_Thanh_Thy_Cute_

Counter Blox ONE SHOT JULY 2021

Jul 10th, 2021
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. getgenv().OneShot = true -- true/false
  2.  
  3. local mt = getrawmetatable(game)
  4. setreadonly(mt, false)
  5. local nc = mt.__namecall
  6.  
  7. mt.__namecall = newcclosure(function(self, ...)
  8. local Method = getnamecallmethod()
  9. local Args = {...}
  10.  
  11. if Method == 'FireServer' and self.Name == 'HitPart' and OneShot then
  12. for i = 1, 3 do
  13. nc(self, unpack(Args))
  14. end
  15. end
  16.  
  17. return nc(self, ...)
  18. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement