Advertisement
Guest User

Untitled

a guest
Feb 18th, 2019
18,157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. _G.powa = 7 -- each bullet will do x7 damage so change it to have more or less damage make sure to not make it 0 because it results in no damage and try not to increase it too much because it will lag
  2. --also it always does headshot
  3. ----------------------------------------------------------------------------------------------
  4. local yes = require(game:GetService'Players'.LocalPlayer.PlayerScripts.framework.core.network)
  5. if _G.old == nil then
  6. _G.old = yes.hit.send
  7. end
  8. yes.hit.send = function(hi1,hi2,hi3,hi4,hi5)
  9. hi5 = hi5.Parent:WaitForChild'Head'
  10. for i = 1,_G.powa do
  11. _G.old(hi1,hi2,hi3,hi4,hi5)
  12. end
  13. end
  14. ----------------------------------------------------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement