Advertisement
ScriptingFluff

[ROBLOX]Critical Strike Server Destruction v3

Feb 1st, 2020
3,314
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.73 KB | None | 0 0
  1. --[[
  2. Create by SHADOWCRAFTER999
  3. Fluff's Discord: https://discord.gg/dc3HMp3
  4. ]]
  5. --//=======================\\
  6. --||     CONFIGURATION
  7. --\\=======================//
  8.  
  9. if (_G.NS == nil) then -- DO NOT TOUCH
  10.     _G.NS = { } -- DO NOT TOUCH
  11. end -- DO NOT TOUCH
  12.  
  13. _G.NS.Memery_Enabled = true -- Turns on/off Critical Strike Memery
  14. _G.NS.Memery_Rate = 0.5 -- The rate that the Memery runs at (0.3 to 0.6 preferred)
  15.  
  16. _G.NS.Memery_Self = true -- Turns on/off buffs to yourself
  17. _G.NS.Memery_Others = true -- Turns on/off debuffs to others
  18.  
  19. -- CHANGE THESE ONLY IF YOU
  20. -- KNOW WHAT YOU ARE DOING
  21.  
  22. _G.NS.Memery_Buffs = { -- Buff effects that will be given to yourself
  23.     "DEFENSE +2",
  24.     "DEFENSE +5",
  25.     "DEFENSE +6",
  26.     "DEFENSE +8",
  27.     "DEFENSE +10",
  28.  
  29.     "DAMAGE +2",
  30.     "DAMAGE +5",
  31.  
  32.     "HASTE",
  33.  
  34.     "REGENERATE",
  35.     "SUPER REGENERATE",
  36.  
  37.     "PURIFY",
  38.     "UNTARGETABLE",
  39.     "PIXIE"
  40.  
  41. }
  42.  
  43. _G.NS.Memery_Debuffs = { -- Debuff effects that will be given to others
  44.     "DEFENSE -1",
  45.     "DEFENSE -5",
  46.  
  47.     "DAMAGE -3",
  48.     "DAMAGE -5",
  49.     "DAMAGE -6",
  50.  
  51.     "STOPPED",
  52.     "STUNNED",
  53.     "BINDED",
  54.     "SLEEP",
  55.     "TRAPPED",
  56.     "FROZEN",
  57.  
  58.     "SLOWED",
  59.     "SNOWY",
  60.     "CRIPPLE",
  61.     "STAGGERED",
  62.     "DISABLE",
  63.     "SHOCKED",
  64.     "REWIND",
  65.     "BLINDED",
  66.     "SHATTER MARK",
  67.  
  68.     "TOXIC",
  69.     "POISONED",
  70.     "VIRUS",
  71.     "DESPAIR",
  72.     "INJURED",
  73.     "BLEEDING",
  74.     "BURNING x2"
  75. }
  76.  
  77. _G.NS.Memery_Allow = { -- People that will also receive buffs
  78.     "UsernameHere",
  79.     "YouCanAddAsManyAsYouWant",
  80.     "CaseSensitiveBtw"
  81. }
  82.  
  83. _G.NS.Memery_Ignore = { -- People that the debuff spammer will ignore
  84.     "UsernameHere",
  85.     "YouCanAddAsManyAsYouWant",
  86.     "CaseSensitiveBtw"
  87. }
  88.  
  89. --//=======================\\
  90. --||      THE SCRIPT
  91. --\\=======================//
  92.  
  93. loadstring(game:HttpGet("https://pastebin.com/raw/tDPHwmn6", true))()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement