Advertisement
Guest User

BAPN Auto Kill All Script

a guest
Jun 25th, 2022
3,164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. spawn(function()
  2. while task.wait() do
  3. pcall(function()
  4. game:GetService'VirtualUser':Button1Down(Vector2.new(0.9,0.9))
  5. game:GetService'VirtualUser':Button1Up(Vector2.new(0.9,0.9))
  6.  
  7. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  8. if v.name == "Katana" then -- change name of tool here
  9. v.Parent = game.Players.LocalPlayer.Character
  10. end end end) end end)
  11.  
  12. spawn(function()
  13. while task.wait(0.1) do
  14. pcall(function()
  15.  
  16. local Player = game.Players.LocalPlayer
  17. local cpos = Player.Character.HumanoidRootPart.CFrame
  18. for i,v in pairs(game.Players:GetPlayers()) do
  19. if v.Name ~= Player.Name then
  20. local i = 10
  21. repeat
  22. wait(0.5)
  23. i = i-1
  24. local CFrameEnd = CFrame.new(v.Character.HumanoidRootPart.position)
  25. local Time = 0.3
  26. local tween = game:GetService("TweenService"):Create(game.Players.LocalPlayer.Character.HumanoidRootPart, TweenInfo.new(Time), {CFrame = CFrameEnd})
  27. tween:Play()
  28. tween.Completed:Wait(E)
  29.  
  30. until i == 0 or game.Players[v.Name].Character.Humanoid.Health == 0
  31. end end end) end end)
  32. spawn(function()
  33. while task.wait(3) do
  34. pcall(function()
  35. if game.Players.LocalPlayer.Character.Humanoid.Health == 0 then
  36. game:GetService("ReplicatedStorage").RemoteTriggers.SpawnIn:FireServer()
  37. end end) end end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement