karobloxYT

hack charwar

Nov 8th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.15 KB | None | 0 0
  1. _G.Farming = false
  2.  
  3.  
  4. local All = false -- This will train everything
  5. local BlackLeg = false -- This will train BlackLeg levels
  6. local Rokushiki = false -- This will train Rokushiki levels
  7. local Ryusoken = false -- This will train Ryusoken levels
  8. local Electro = false -- This will train Electro levels
  9. local Haki = true -- This will train Haki levels
  10. local OneSS = false -- This will train One Sword Style levels
  11.  
  12.  
  13. while _G.Farming == true do
  14. wait()
  15. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  16. if v:IsA("Tool") and v:FindFirstChild("ActionEvent") then
  17. if All == true then
  18. v.Parent = game.Players.LocalPlayer.Character
  19. end
  20. if BlackLeg == true and v.Name:match("Black Leg") then
  21. v.Parent = game.Players.LocalPlayer.Character
  22. end
  23. if Rokushiki == true and v.Name:match("Rokushiki") then
  24. v.Parent = game.Players.LocalPlayer.Character
  25. end
  26. if Ryusoken == true and v.Name:match("Ryusoken") then
  27. v.Parent = game.Players.LocalPlayer.Character
  28. end
  29. if Electro == true and v.Name:match("Electro") then
  30. v.Parent = game.Players.LocalPlayer.Character
  31. end
  32. if Haki == true and v.Name:match("Haki") then
  33. v.Parent = game.Players.LocalPlayer.Character
  34. end
  35. if OneSS == true and v:FindFirstChild("OneSSClient") then
  36. v.Parent = game.Players.LocalPlayer.Character
  37. end
  38. end
  39. end
  40. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  41. if v:IsA("Tool") and v:FindFirstChild("ActionEvent") then
  42. if All == true then
  43. v.ActionEvent:FireServer()
  44. end
  45. if BlackLeg == true and v.Name:match("Black Leg") then
  46. v.ActionEvent:FireServer()
  47. end
  48. if Rokushiki == true and v.Name:match("Rokushiki") then
  49. v.ActionEvent:FireServer()
  50. end
  51. if Ryusoken == true and v.Name:match("Ryusoken") then
  52. v.ActionEvent:FireServer()
  53. end
  54. if Electro == true and v.Name:match("Electro") then
  55. v.ActionEvent:FireServer()
  56. end
  57. if Haki == true and v.Name:match("Haki") then
  58. v.ActionEvent:FireServer()
  59. wait()
  60. v.ActionEvent:FireServer()
  61. wait()
  62. end
  63. if OneSS == true and v:FindFirstChild("OneSSClient") then
  64. v.ActionEvent:FireServer("36 Pound Cannon")
  65. wait()
  66. v.ActionEvent:FireServer("Disaster Harbor Bird")
  67. wait()
  68. v.ActionEvent:FireServer("Lion's Strike")
  69. end
  70. end
  71. end
  72. end
Add Comment
Please, Sign In to add comment