Advertisement
Guest User

Stats Autofarm

a guest
Jan 18th, 2019
622
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.43 KB | None | 0 0
  1. --Credits go to Koldpai @v3rm
  2. -- I do not own these scripts
  3.  
  4. One Piece Millenium STATS Autofarm
  5.  
  6. -- Strength
  7. for i=1, 9999999999 do
  8. game:GetService("ReplicatedStorage").RemoteEvents.CombatBase:FireServer()
  9. wait()
  10. end
  11.  
  12. -- Defense -- Must equip Weights -- Change "Koldpai" to your ROBLOX Username
  13. for i=1, 9999999999 do
  14. local A_1 = game:GetService("Workspace").Koldpai.Weight.Control.HakiType
  15. local A_2 = game:GetService("Workspace").Koldpai.Weight
  16. local A_3 = game:GetService("Workspace").Koldpai.Weight.Control.Uses
  17. local Event = game:GetService("ReplicatedStorage").RemoteEvents.Weights
  18. Event:FireServer(A_1, A_2, A_3)
  19. wait()
  20. end
  21.  
  22. -- Sword -- Must equip Katana -- Change "Koldpai" to your ROBLOX Username
  23. for i=1, 9999999999 do
  24. local A_1 = game:GetService("Workspace").Koldpai.Katana
  25. local Event = game:GetService("ReplicatedStorage").RemoteEvents.KatanaBase
  26. Event:FireServer(A_1)
  27. wait()
  28. end
  29.  
  30. -- Gun -- Must equip Cannon -- Change "Koldpai" to your ROBLOX Username (dont know if this works)
  31. for i=1, 9999999999 do
  32. local A_1 = game:GetService("Workspace").Koldpai.Cannon
  33. local Event = game:GetService("ReplicatedStorage").RemoteEvents.CannonBase
  34. Event:FireServer(A_1)
  35. wait()
  36. end
  37.  
  38.  
  39. NOTES: Sword Autofarm does NOT work with 2SS, you have to use default Katana
  40. After dying, make sure to execute Gun Autofarm again. With this, you can farm 3 Stats at the same time (Either Strength + Defense + Gun OR Strength + Sword + Gun)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement