Advertisement
asdadsasd

Untitled

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