Advertisement
Cyclically

Sword Fight Kill All V1.4 (For any SFing game)

Dec 8th, 2018
11,259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.15 KB | None | 0 0
  1. -- Made by Cyclically
  2. -- Sword Fight Kill Players V1.4
  3. local team = {"Cyclically"}
  4. local forcekill = false
  5. local loopkill = false
  6.  
  7. -- Don't edit anything down here unless you know what you're doing
  8.  
  9. local LocalPlayer = game:GetService("Players").LocalPlayer
  10. local savepos = LocalPlayer.Character.HumanoidRootPart.CFrame
  11. LocalPlayer.Character.Humanoid:EquipTool(LocalPlayer.Backpack:FindFirstChildOfClass("Tool"))
  12. for i = 1, 2 do
  13.     LocalPlayer.Character:FindFirstChildOfClass("Tool"):Activate()
  14.     wait()
  15. end
  16. wait(0.3)
  17. repeat
  18.     for _, player in pairs(game:GetService("Players"):GetPlayers()) do
  19.         for index, teammate in pairs(team) do
  20.             if player.Name ~= LocalPlayer.Name and player.Character.Humanoid.Sit == false and player.Name ~= teammate then
  21.                 repeat
  22.                     LocalPlayer.Character.Humanoid.Jump = true
  23.                     for i = 1, 2 do
  24.                         LocalPlayer.Character:FindFirstChildOfClass("Tool"):Activate()
  25.                         wait()
  26.                     end
  27.                     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(player.Character["Left Arm"].Position + player.Character["Left Arm"].CFrame.lookVector * -2)
  28.                     LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(LocalPlayer.Character.HumanoidRootPart.Position, player.Character["Left Arm"].Position)
  29.                     wait()
  30.                 until player.Character.Humanoid.Health <= 0 or forcekill == false
  31.             end
  32.         end
  33.     end
  34. until loopkill == false or LocalPlayer.Character.Humanoid.Health <= 0
  35. wait(0)
  36. LocalPlayer.Character.HumanoidRootPart.CFrame = savepos
  37. LocalPlayer.Character.Humanoid:UnequipTools()
  38. print("Cyclically's SF Kill All Logs:")
  39. wait(1)
  40. print("Failed to kill players:")
  41. for _, player in pairs(game:GetService("Players"):GetPlayers()) do
  42.     for index, teammate in pairs(team) do
  43.         if player.Character.Humanoid.Health ~= 0 and player.Name ~= LocalPlayer.Name and player.Name ~= teammate then
  44.             warn("Failed to kill: "..player.Name)
  45.         end
  46.     end
  47. end
  48. print("Killed players:")
  49. for _, player in pairs(game:GetService("Players"):GetPlayers()) do
  50.     for index, teammate in pairs(team) do
  51.         if player.Character.Humanoid.Health <= 0 and player.Name ~= LocalPlayer.Name and player.Name ~= teammate then
  52.             warn("Killed: "..player.Name)
  53.         end
  54.     end
  55. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement