Rezokar

AutoFarm Aureum

Sep 18th, 2021 (edited)
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 8.76 KB | None | 0 0
  1. --made by moontiz#0001
  2. --ONLY USE IN VIP SERVERS, A LOT OF THE CFRAMES GRABBED ARE ALL FROM WHERE THE TITANS ARE AND NOT WHERE THEY SPAWN.
  3. --remove BasePlate if it has been used before.
  4. for i,v in pairs(game:GetService("Workspace"):GetChildren()) do
  5.     if v.Name == "bruh" then
  6.         v:Destroy()
  7.     end
  8. end
  9.  
  10. --defining all the important things that are being used throughout
  11. local lp = game.Players.LocalPlayer
  12. local enemyFolder = game:GetService("Workspace").Enemies:GetChildren()
  13. local part2  = Instance.new("Part",workspace) part2.CFrame = CFrame.new(7485.80469, 1733.38843, 6182.83398, -0.546839774, -6.58889476e-09, 0.837236404, -6.51183356e-08, 1, -3.46618521e-08, -0.837236404, -7.34738137e-08, -0.546839774) part2.Anchored = true  part2.Size = Vector3.new(150,2,150) part2.BrickColor = BrickColor.new(18, 238, 212) part2.Material = "ForceField" part2.Name = "bruh"
  14. --gives your the gamepasses QuickTravel and Teleportation
  15. lp.PlayerGui.HUD.QuickTravel.Visible = true
  16. lp.PlayerGui.HUD.Teleportation.Visible = true
  17. --weapon definition
  18. local jet = lp.Backpack:WaitForChild("Jetstream")
  19. local interstellar = lp.Backpack:WaitForChild("Interstellar Bone Sword")
  20. local wrath = lp.Backpack:WaitForChild("Wrath of the Sea")
  21.  
  22. --start of the autofarm
  23. ------PILLAR 1 Lightning Pillar------
  24. --auto equip the Jetstream, tp to Titan Fulmen, and shoot em.
  25. lp.Character.Humanoid:EquipTool(jet)
  26. for i, v in pairs(enemyFolder) do
  27.     if v.Name == "Titan Fulmen" then
  28.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Torso.CFrame * CFrame.new(0,0,-2)
  29.         wait(.5)
  30.         local args = {
  31.             [1] = Vector3.new(v.Torso.Position)
  32.         }
  33.         game:GetService("ReplicatedStorage").Remotes.UseItem:FireServer(unpack(args))
  34.         wait(1)
  35.     end
  36. end
  37. --unequip the Jetstream and teleport to the BasePlate
  38. game.Workspace[lp.Name].Humanoid:UnequipTools()
  39. lp.Character.HumanoidRootPart.CFrame = part2.CFrame * CFrame.new(0,2,0)
  40.  
  41. --delay to wait for the next pillar to activate
  42. wait(35)
  43.  
  44. ------PILLAR 2 Ice Pillar------
  45. --teleport to the Titan Glacies and kill 50 times.
  46. for i,v in pairs(enemyFolder) do
  47.     if v.Name == "Titan Glacies" then
  48.         lp.Character.HumanoidRootPart.CFrame = v.Torso.CFrame * CFrame.new(0,0,2)
  49.     end
  50. end
  51. lp.Character.Humanoid:EquipTool(interstellar)
  52. local iceFarm = true
  53. local ice = 0
  54. wait(.1)
  55.  
  56.     while iceFarm == true do
  57.         if iceFarm == true and ice <= 51 then
  58.             ice += 1
  59.             game.ReplicatedStorage.Remotes.UseItem:FireServer()
  60.             wait(2.5)
  61.         else
  62.             break
  63.         end
  64.     end
  65.  
  66. --basically how long it takes to kill 50 of the Titan Glacies.
  67.  
  68. --set icefarm to false to stop the above function
  69. iceFarm = false
  70.  
  71. --delay to wait for the next pillar to activate
  72. lp.Character.HumanoidRootPart.CFrame = part2.CFrame * CFrame.new(0,2,0)
  73. wait(35)
  74.  
  75. ------PILLAR 3 Fire Pillar------
  76. --teleport all of the enemies required for the 3rd pillar to the BasePlate
  77. for i,v in pairs(enemyFolder) do
  78.     if v.Name == "Togarmah" then
  79.         v.HumanoidRootPart.CFrame = lp.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,-2)
  80.     elseif v.Name == "The Bone Lord's Son" then
  81.         v.HumanoidRootPart.CFrame = lp.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,-2)
  82.     elseif v.Name == "The Currupted  Bone Lord [FINAL BOSS]" then
  83.         v.HumanoidRootPart.CFrame = lp.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,-2)
  84.     elseif v.Name == "I Bone Lord" then
  85.         v.HumanoidRootPart.CFrame = lp.Character.HumanoidRootPart.CFrame * CFrame.new(0,10,-2)
  86.     elseif v.Name == "Ajax" then
  87.         v.HumanoidRootPart.CFrame = lp.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,-2)
  88.     elseif v.Name == "The Bone Lord" then
  89.         v.HumanoidRootPart.CFrame = lp.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,-2)
  90.     elseif v.Name == "Giancarlo" then
  91.         v.HumanoidRootPart.CFrame = lp.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,-2)
  92.     elseif v.Name == "Hazarmaveth" then
  93.         v.HumanoidRootPart.CFrame = lp.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,-2)
  94.     end
  95. end
  96. wait(1)
  97. game.ReplicatedStorage.Remotes.UseItem:FireServer()
  98. wait(.5)
  99. game.ReplicatedStorage.Remotes.UseItem:FireServer()
  100. wait(.5)
  101. game.ReplicatedStorage.Remotes.UseItem:FireServer()
  102.  
  103. --delay to wait for the next pillar to activate
  104. wait(35)
  105.  
  106. -------PILLAR 4 Water Pillar------
  107. spawn(function()
  108.     for i,v in pairs(game.Workspace.WaterOrbs:GetChildren()) do
  109.         if v.Color == Color3.fromRGB(13, 105, 172) then
  110.             v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  111.             wait(.5)
  112.         end
  113.     end
  114. end)
  115.  
  116. --delay to wait for the next pillar to activate
  117. lp.Character.HumanoidRootPart.CFrame = part2.CFrame * CFrame.new(0,2,0)
  118. wait(45)
  119.  
  120. ------PILLAR 5 Solaris Pillar------
  121. game.Workspace[lp.Name].Humanoid:UnequipTools()
  122. wait(1.5)
  123. lp.Character.Humanoid:EquipTool(wrath)
  124. for i,v in pairs(enemyFolder) do
  125.     if v.Name == "Titan Solis" then
  126.         v.HumanoidRootPart.CFrame = lp.Character.HumanoidRootPart.CFrame * CFrame.new(0,20,0)
  127.     end
  128. end
  129. game.ReplicatedStorage.Remotes.UseItem:FireServer()
  130. wait(2)
  131. game.Workspace[lp.Name].Humanoid:UnequipTools()
  132. wait(2.5)
  133. game.Players.LocalPlayer.Character.Humanoid:EquipTool(game.Players.LocalPlayer.Backpack["Interstellar Bone Sword"])
  134. local flareFarm = true
  135. lp.Character.HumanoidRootPart.CFrame = CFrame.new(895.437256, 321.131348, 2312.73315, -0.997791052, 4.50010624e-08, -0.0664308891, 4.37862866e-08, 1, 1.97422629e-08, 0.0664308891, 1.67898904e-08, -0.997791052)
  136. spawn(function()
  137.     while flareFarm == true do
  138.         if flareFarm == true then
  139.             game.ReplicatedStorage.Remotes.UseItem:FireServer()
  140.             wait(2.5)
  141.         elseif flareFarm == false then
  142.             break
  143.         end
  144.     end
  145. end)
  146. wait(35)
  147. flareFarm = false
  148.  
  149. --delay to wait for the next pillar to activate
  150. wait(35)
  151.  
  152. ------PILLAR 6 Void PIllar------
  153. for i,v in pairs(enemyFolder) do
  154.     if v.Name == "Titan Mars" then
  155.         v.HumanoidRootPart.CFrame = lp.Character.HumanoidRootPart.CFrame * CFrame.new(0,20,0)
  156.     elseif v.Name == "Titan Volcanus" then
  157.         v.HumanoidRootPart.CFrame = lp.Character.HumanoidRootPart.CFrame * CFrame.new(0,20,0)
  158.     elseif v.Name == "Titan Fulmen" then
  159.         v.HumanoidRootPart.CFrame = lp.Character.HumanoidRootPart.CFrame * CFrame.new(0,20,0)
  160.     elseif v.Name == "Titan Glacies" then
  161.         v.HumanoidRootPart.CFrame = lp.Character.HumanoidRootPart.CFrame * CFrame.new(0,20,0)
  162.     elseif v.Name == "Titan Terra" then
  163.         v.HumanoidRootPart.CFrame = lp.Character.HumanoidRootPart.CFrame * CFrame.new(0,20,0)
  164.     elseif v.Name == "Titan Venenum" then
  165.         v.HumanoidRootPart.CFrame = lp.Character.HumanoidRootPart.CFrame * CFrame.new(0,20,0)
  166.     elseif v.Name == "Titan Inani" then
  167.         v.HumanoidRootPart.CFrame = lp.Character.HumanoidRootPart.CFrame * CFrame.new(0,20,0)
  168.     elseif v.Name == "Titan Vortex" then
  169.         v.HumanoidRootPart.CFrame = lp.Character.HumanoidRootPart.CFrame * CFrame.new(0,20,0)
  170.     elseif v.Name == "Titan Aureus" then
  171.         v.HumanoidRootPart.CFrame = lp.Character.HumanoidRootPart.CFrame * CFrame.new(0,20,0)
  172.     elseif v.Name == "Titan Vitreus" then
  173.         v.HumanoidRootPart.CFrame = lp.Character.HumanoidRootPart.CFrame * CFrame.new(0,20,0)
  174.     elseif v.Name == "Titan Solis" then
  175.         v.HumanoidRootPart.CFrame = lp.Character.HumanoidRootPart.CFrame * CFrame.new(0,20,0)
  176.     elseif v.Name == "Titan Duplex" then
  177.         v.HumanoidRootPart.CFrame = lp.Character.HumanoidRootPart.CFrame * CFrame.new(0,20,0)
  178.     elseif v.Name == "Titan Subtus" then
  179.         v.HumanoidRootPart.CFrame = lp.Character.HumanoidRootPart.CFrame * CFrame.new(0,20,0)
  180.     elseif v.Name == "Titan Vita" then
  181.         v.HumanoidRootPart.CFrame = lp.Character.HumanoidRootPart.CFrame * CFrame.new(0,20,0)
  182.     end
  183. end
  184. wait(.4)
  185. game.ReplicatedStorage.Remotes.UseItem:FireServer()
  186. wait(.5)
  187. game.ReplicatedStorage.Remotes.UseItem:FireServer()
  188. wait(15)
  189. --MoC Area
  190. --[[workspace.Enemies.DescendantAdded:Connect(function(descendant)
  191.     if descendant.Name == "Mother of Chaos"
  192. end)--]]
  193. --this teleports you to the summoning room, and automatically spawns in the MoC
  194. lp.Character.HumanoidRootPart.CFrame = CFrame.new(-6253.9248, 106.824211, -40.2022057, -0.654558599, 3.49128761e-08, 0.756011248, 7.73473907e-09, 1, -3.9483588e-08, -0.756011248, -1.99967722e-08, -0.654558599)
  195. wait(1.5)
  196. keypress(0x45)
  197. wait(4)
  198. keyrelease(0x45)
  199. wait(1)
  200. --telport back to the BasePlate to kill the MoC
  201. lp.Character.HumanoidRootPart.CFrame = part2.CFrame * CFrame.new(0,2,0)
  202. for i,v in pairs(enemyFolder) do
  203.     if v.Name == "Mother of Chaos" then
  204.         v.HumanoidRootPart.CFrame = lp.Character.HumanoidRootPart.CFrame * CFrame.new(0,10,0)
  205.     end
  206. end
  207.  
  208. local mocFarm = true
  209. wait(.1)
  210. spawn(function()
  211.     while mocFarm == true do
  212.         if mocFarm == true then
  213.             game.ReplicatedStorage.Remotes.UseItem:FireServer()
  214.             wait(.5)
  215.         elseif mocFarm == false then
  216.             break
  217.         end
  218.     end
  219. end)
  220. wait(150)
  221. mocFarm = false
  222.  
  223. lp.Character.HumanoidRootPart.CFrame = CFrame.new(90.3177719, 5.10039377, -8.63909149, -0.43019107, -1.00174155e-07, 0.902737856, -1.10270442e-07, 1, 5.84187276e-08, -0.902737856, -7.44140891e-08, -0.43019107)
Add Comment
Please, Sign In to add comment