Advertisement
lucaslulu

Script Anime Fighting Simulator

Nov 3rd, 2019
78,826
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. --AutoFarm Strength
  2. _G.LULU = true--change to true or false
  3. while _G.LULU do
  4. wait(0.1)
  5. local A_1 = "Stat"
  6. local A_2 = "Strength"-- pick up your item for autofarm
  7. game:GetService("ReplicatedStorage").Events.StatFunction:InvokeServer(A_1, A_2)
  8. end
  9.  
  10. --AutoFarm Durability
  11. _G.LULU = true--change to true or false
  12. while _G.LULU do
  13. wait(0.1)
  14. local A_1 = "Stat"
  15. local A_2 = "Durability"-- pick up your item for autofarm
  16. game:GetService("ReplicatedStorage").Events.StatFunction:InvokeServer(A_1, A_2)
  17. end
  18.  
  19. --AutoFarm Chakra
  20. _G.LULU = true--change to true or false
  21. while _G.LULU do
  22. wait(0.1)
  23. local A_1 = "Stat"
  24. local A_2 = "Chakra"-- pick up your item for autofarm
  25. game:GetService("ReplicatedStorage").Events.StatFunction:InvokeServer(A_1, A_2)
  26. end
  27.  
  28. --AutoFarm Sword
  29. _G.LULU = true--change to true or false
  30. while _G.LULU do
  31. wait(0.1)
  32. local A_1 = "Stat"
  33. local A_2 = "Sword"-- pick up your item for autofarm
  34. game:GetService("ReplicatedStorage").Events.StatFunction:InvokeServer(A_1, A_2)
  35. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement