Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- _G.powa = 100 -- 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
- --also it always does headshot
- ----------------------------------------------------------------------------------------------
- local yes = require(game:GetService'Players'.LocalPlayer.PlayerScripts.framework.core.network)
- if _G.old == nil then
- _G.old = yes.hit.send
- end
- yes.hit.send = function(hi1,hi2,hi3,hi4,hi5)
- hi5 = hi5.Parent:WaitForChild'Head'
- for i = 1,_G.powa do
- _G.old(hi1,hi2,hi3,hi4,hi5)
- end
- end
- ----------------------------------------------------------------------------------------------
Add Comment
Please, Sign In to add comment