Advertisement
Jakekill871

Untitled

Mar 29th, 2020
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. spawn(function()
  2. --You will need a Autoclicker for this.
  3. --Change "Evil Majin" to the Monster you want to fight
  4. _G.target = "Evil Saiyan"
  5.  
  6. _G.targets = {""}
  7.  
  8. while wait() do
  9. if _G.target ~= "" then
  10. for _,v in pairs(workspace.Live:GetChildren()) do
  11. if v and v.Name ~= game.Players.LocalPlayer.Name and not game.Players:GetPlayerFromCharacter(v) and string.match(string.lower(v.Name), string.lower(_G.target)) and v:FindFirstChild("HumanoidRootPart") then
  12. print(v.Name)
  13. repeat
  14. wait()
  15. workspace.Live:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart.CFrame = CFrame.new(v.HumanoidRootPart.Position + Vector3.new(0,0,2))
  16. workspace.CurrentCamera.CFrame = CFrame.new(workspace.Live:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart.Position, v.HumanoidRootPart.Position)
  17. until v.Humanoid.Health < 1
  18. v:Destroy()
  19. end
  20. end
  21. else
  22. for _,v in pairs(workspace.Live:GetChildren()) do
  23. for _,vv in pairs(_G.targets) do
  24. if not game.Players:GetPlayerFromCharacter(v) and string.match(string.lower(v.Name), string.lower(vv)) and v:FindFirstChild("HumanoidRootPart") then
  25. print(v.Name)
  26. repeat
  27. wait()
  28. workspace.Live:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart.CFrame = CFrame.new(v.HumanoidRootPart.Position + Vector3.new(0,0,2))
  29. workspace.CurrentCamera.CFrame = CFrame.new(workspace.Live:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart.Position, v.HumanoidRootPart.Position)
  30. until v.Humanoid.Health < 1
  31. v:Destroy()
  32. end
  33. end
  34. end
  35. end
  36. end
  37. end)
  38.  
  39. spawn(function()
  40. while true do
  41. keypress(0x52)
  42. keyrelease(0x52)
  43. wait(1)
  44. end
  45. end)
  46.  
  47. spawn(function()
  48. while true do
  49. local Player = game:GetService("Players").LocalPlayer
  50. Player.Character.Humanoid.Health = 0
  51. wait(14)
  52. end
  53. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement