Advertisement
pa1nx9

Decaying Winter INSTA KILL REVOLVER

Oct 16th, 2021
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. --[[
  2. Note: If you set the amount to a high value (over 1000), make sure you also execute an anti-cheat bypass as well
  3. ]]
  4.  
  5. for _, v in ipairs(getgc(true)) do
  6. -- // Make sure is a table and narrow it down to the class stats table
  7. if (typeof(v) == "table" and rawget(v, "damn") and rawget(v, "berz")) then
  8.  
  9. -- Multiplies your defence by 500
  10. v.revolver.basestats.defmod = 500
  11.  
  12. -- Multiplies your reload speed by 500
  13. v.revolver.basestats.reloadmod = 500
  14.  
  15. -- Multiplies your accuracy by 500
  16. v.revolver.basestats.accmod = 500
  17.  
  18. -- Multiplies something, I don't know what it is so im setting it to 500 ;p
  19. v.revolver.basestats.shovemod = 500
  20.  
  21. -- Multiplies the amount of scrap you salvage from an item by 500
  22. v.revolver.basestats.scavmod = 500
  23.  
  24. -- Sets your PERK revolver's range to 500 studs
  25. v.revolver.activestats.revolver_range = 500
  26.  
  27. -- Sets your PERK revolver's base damage by 500
  28. v.revolver.activestats.revolver_damage = 500
  29.  
  30. -- Multiplies your PERK revolver's headshot damage by 500 (What's 500 x 500, kids?)
  31. v.revolver.activestats.revolver_headshot_multi = 500
  32.  
  33. -- Sets your ability cooldown to 0.1
  34. v.revolver.activestats.cooldown = 0.1
  35.  
  36. end
  37.  
  38. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement