itchyscrotum611

Auto Spin Elemental grind game

May 5th, 2020
1,934
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.17 KB | None | 0 0
  1. _G.AutoSpin = true
  2. _G.FarmOnSuccess = true
  3.  
  4.  
  5. local GoodElements = {"Dragon","Heaven's Wrath","Acceleration","Arc of the Elements","Solar","Phoenix","Hydra","Lunar","Mechanization","Cosmic","Lava","Sound"}
  6. local moves = {}
  7. local yourClient = game.ReplicatedStorage:WaitForChild(game.Players.LocalPlayer.UserId .. "Client");
  8. function FireMove(move)
  9. yourClient.StartMove:FireServer(move)
  10. wait()
  11. yourClient.EndMove:FireServer(move)
  12. wait()
  13. end
  14. local function has_value (tab, val)
  15. for index, value in ipairs(tab) do
  16. if value == val then
  17. return true
  18. end
  19. end
  20. return false
  21. end
  22. while _G.AutoSpin == true do
  23. local WhosThatElement = game.ReplicatedStorage.Client.GetElement:InvokeServer()
  24. local Spins = game.ReplicatedStorage.Client.GetSpins:InvokeServer()
  25. if WhosThatElement == "Fire" then
  26. moves = {"Flaming Pillars","Inferno Barrage","Blazing Fist","Flame Eruption"}
  27. elseif WhosThatElement == "Water" then
  28. moves = {"Aquatic Burst","Hydro Barrier","Geyser","Water Entrapment"}
  29. elseif WhosThatElement == "Dark" then
  30. moves = {"Dark Burst","Dark Volley","Dim Cloak","Dark Palm"}
  31. elseif WhosThatElement == "Phoenix" then
  32. moves = {"Phoenix Screech","Flame Armor","Blazing Shell","Phoenix Form","Rain Of Fire","Ash Revival"}
  33. elseif WhosThatElement == "Mechanization" then
  34. moves = {"Mechanical Claw Slicer","Electromagnetic Release","Rocket Boost","Piercing Shots","Electromagnetic Pull"}
  35. elseif WhosThatElement == "Nova" then
  36. moves = {"Nova Blade","Nova Bombs","Nova Beam","Bright Star"}
  37. elseif WhosThatElement == "Dragon" then
  38. moves = {"Flame Breath","Dragon's Form","Dragon's Roar","Flame Wing Burst","Flame Shots"}
  39. elseif WhosThatElement == "Poison" then
  40. moves = {"Poisonous Breath","Plague","Corrosive Path","Poison Aura"}
  41. elseif WhosThatElement == "Lunar" then
  42. moves = {"Moonlight","Midnight Warp","Lunar Drop","Lunar Aura","Midnight Beam"}
  43. elseif WhosThatElement == "Cosmic" then
  44. moves = {"Meteor Shower","Asteroid","Cosmic Beam","Black Hole"}
  45. elseif WhosThatElement == "Sand" then
  46. moves = {"Sand Armor","Dust Devil","Sand Snare","Sandstorm"}
  47. elseif WhosThatElement == "Light" then
  48. moves = {"Light Bomb","Light Bombardment","Bright Cloak","Light Bringer"}
  49. elseif WhosThatElement == "Ice" then
  50. moves = {"Arctic Step","Frozen Spears","Freeze","Frozen Zone","IceSpike"}
  51. elseif WhosThatElement == "Hydra" then
  52. moves = {"Hydra Barrage","Immortal Pull","Green Flame Pillars","Hydra Leap"}
  53. elseif WhosThatElement == "Lightning" then
  54. moves = {"Bolt","Electric Current","Storm","Lightning Bolt Rain"}
  55. elseif WhosThatElement == "Neon" then
  56. moves = {"Neon Travel"}
  57. elseif WhosThatElement == "Wood" then
  58. moves = {"Root Creation","Root","Seed Barrage","Wooden Impalement","Root System","Wooden Wall","Tree Creation"}
  59. elseif WhosThatElement == "Earth" then
  60. moves = {"Earth Tremor","Earth Wall","Earth Shards","Relentless Crush","Earth Pillar Launch"}
  61. elseif WhosThatElement == "Wind" then
  62. moves = {"Tornado","Wind Hop","Hurricane","Wind Current"}
  63. elseif WhosThatElement == "Acceleration" then
  64. moves = {"Acceleration Leap","Acceleration Bullet","Accelerated Force","Accelerated Combat","Devastating Impact"}
  65. elseif WhosThatElement == "Explosion" then
  66. moves = {"Explosive Blast","Incendiary Burst","Remote Detonation","Eruptive Dash"}
  67. elseif WhosThatElement == "Solar" then
  68. moves = {"Solar Energy","Sun Ray","Solar Aura","Solar Drop","Blazing Sun"}
  69. elseif WhosThatElement == "Zeus" then
  70. moves = {"Almighty Bolt","God Ascension","Smite","God Current"}
  71. elseif WhosThatElement == "Heaven's Wrath" then
  72. moves = {"God's Release","Judgement","Heaven's Taker","Heaven's Beads","Heavenly Formation","Affliction"}
  73. elseif WhosThatElement == "Arc Of The Elements" then
  74. moves = {"Multi-element Barrage"}
  75. elseif WhosThatElement == "Metal" then
  76. moves = {"Metal Fist","Metal Shard Volley","Metal Spike Uproar","Metal Spike Slam"}
  77. elseif WhosThatElement == "Blood" then
  78. moves = {"Bloodshot","Siphon","Replenishing Release","Bloodstream"}
  79. elseif WhosThatElement == "Lava" then
  80. moves = {"Obsidian Case","Volcanic Pillars","Eruption","Infernal Lift","Ring Of Fire"}
  81. elseif WhosThatElement == "Sound" then
  82. moves = {"Amplify","Snap Augmentation","Sound Crush","Sound Cloak"}
  83. end
  84. local Spins = game.ReplicatedStorage.Client.GetSpins:InvokeServer()
  85. if has_value(GoodElements, WhosThatElement) then
  86. _G.AutoSpin = false
  87. print("Match Found: ",WhosThatElement,"-",Spins,"Spins")
  88. if _G.FarmOnSuccess == true then
  89. print("Starting AutoFarm...")
  90. game.Players.LocalPlayer.Character.Humanoid.Health = 0
  91. wait(10)
  92. game.ReplicatedStorage.Client.Intro:InvokeServer()
  93. end
  94. while _G.FarmOnSuccess == true do
  95. for i=1,table.getn(moves) do
  96. FireMove(moves[i])
  97. end
  98. end
  99. else
  100. print(WhosThatElement,": No Match - Spinning Again -",Spins,"Spins Remain")
  101. game.ReplicatedStorage.Client.Spin:InvokeServer()
  102. end
  103. wait(0.1)
  104. end
Add Comment
Please, Sign In to add comment