Advertisement
Guest User

Untitled

a guest
May 17th, 2021
481
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.67 KB | None | 0 0
  1. function SCP_914_Rough( target )
  2.     target:SetHealth(target:Health() + 10)
  3.     if target:Health() > 200 then
  4.         target:Kill()
  5.     end
  6. end
  7.  
  8. function SCP_914_Coarse( target )
  9.     target:SetHealth(target:Health() + 20)
  10.     if target:Health() > 200 then
  11.         target:Kill()
  12.     end
  13. end
  14.  
  15. function SCP_914_1_1( target )
  16.     target:SetHealth(target:Health() + 30)
  17.     if target:Health() > 200 then
  18.         target:Kill()
  19.     end
  20. end
  21.  
  22. function SCP_914_Fine( target )
  23.     target:SetHealth(target:Health() + 40)
  24.     if target:Health() > 200 then
  25.         target:Kill()
  26.     end
  27. end
  28.  
  29. function SCP_914_Veryfine( target )
  30.     target:SetHealth(target:Health() + 50)
  31.     if target:Health() > 200 then
  32.         target:Kill()
  33.     end
  34. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement