Advertisement
Msizz

Kill All

Apr 15th, 2024
665
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.98 KB | None | 0 0
  1. getgenv().kill_all = false
  2.  
  3. local function set(option, bool)
  4.     if option == "kill all" then
  5.         getgenv().kill_all = bool
  6.         while true do
  7.             if kill_all then
  8.                 for i,v in pairs(game.Players:GetPlayers()) do
  9.                     if v.Character then
  10.                         local args = {
  11.                             [1] = {
  12.                                 [1] = v.Character
  13.                             }
  14.                         }
  15.                         game:GetService("Players").LocalPlayer.BasePlayer.RE.EnergyBeamHitbox:FireServer(unpack(args))
  16.                     end
  17.                 end
  18.             else
  19.                 break
  20.             end
  21.             wait()
  22.         end
  23.     end
  24. end
  25.  
  26. local ui = loadstring(game:HttpGet("https://pastebin.com/raw/3xXCHAQD"))()
  27. ui:Window("Ouxie / Legends Arena")
  28.  
  29. local op = ui:NewTab("OP", "0")
  30.  
  31. op:Toggle("kill all", "Spam kills everyone in the game.", function()
  32.     set("kill all", bool)
  33. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement