Advertisement
HHLExploits

Not again

Oct 28th, 2019
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.12 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://pastebin.com/raw/eWKgbdix",true))()
  2. -- Farming tab
  3. local Farming = library:CreateWindow("Farming")
  4. local Enabled = Farming:Toggle("Script Enabled", {flag = "Enabled"}) -- Farming.flags.Enabled
  5. local Swing = Farming:Toggle("Auto Swing", {flag = "Swing"}) -- Farming.flags.Swing
  6. local Sell = Farming:Toggle("Auto Sell", {flag = "Sell"}) -- Farming.flags.Sell
  7. local Boss = Farming:Toggle("Farm Boss", {flag = "Boss"}) -- Farming.flags.Boss
  8.  
  9. Farming:Section("☯Chi & Coins💰")
  10.  
  11. Farming:Dropdown("Collect", {
  12. location = _G,
  13. flag = "Collection",
  14. list = {"Chi", "Coins", "Both"}
  15. }, function(Yeet) print("Selected type:", Yeet) end)
  16. -- _G.Collection
  17.  
  18. local Spawned = Farming:Toggle("Collect Spawned Things", {flag = "Spawn"}) -- Farming.flags.Spawn
  19. local Hoops = Farming:Toggle("Collect Hoops", {flag = "Hoop"}) -- _G.Collection
  20.  
  21. -- Auto Buy Tab
  22. local AutoBuy = library:CreateWindow("Auto Buy")
  23. local Enabled = AutoBuy:Toggle("Auto Purchase", {flag = "Purchase"}) -- AutoBuy.flags.Purchase
  24. local Sword = AutoBuy:Toggle("Auto Sword", {flag = "Sword"}) -- AutoBuy.flags.Sword
  25. local Belt = AutoBuy:Toggle("Auto Belt", {flag = "Belt"}) -- AutoBuy.flags.Belt
  26. local Rank = AutoBuy:Toggle("Auto Rank", {flag = "Rank"}) -- AutoBuy.flags.Rank
  27. local Skill = AutoBuy:Toggle("Auto Skills", {flag = "Skill"}) -- AutoBuy.flags.Skill
  28. _G.Enabled = AutoBuy.flags.Purchase
  29. _G.Sword = AutoBuy.flags.Sword
  30. _G.Belt = AutoBuy.flags.Belt
  31. _G.Rank = AutoBuy.flags.Rank
  32. _G.Skill = AutoBuy.flags.Skill
  33.  
  34. -- Misc
  35. local Misc = library:CreateWindow("Misc")
  36. Misc:Section("🐾Pets")
  37.  
  38. Misc:Dropdown("Eggs", {location = _G, flag = "Egg", list = {
  39. "Blue Crystal", "Purple Crystal", "Orange Crystal", "Enchanted Crystal", "Astral Crystal", "Golden Crystal", "Inferno Crystal", "Galaxy Crystal"
  40. }
  41. }, function(new) print("Selected Egg:", new) end)
  42.  
  43. local Eggs = Misc:Toggle("Open Egg", {flag = "TEgg"}) -- Misc.flags.TEgg
  44.  
  45. Misc:Section("Special")
  46.  
  47. local Heads = Misc:Button("Bring Player Heads", function()
  48. local pos = 5, 0, 5
  49. local player = game.Players:GetChildren()
  50. for i = 1, #player do
  51. if player[i].Name ~= game.Players.LocalPlayer.Name then
  52. local part = player[i].Character.Head
  53. part.Transparency = 0
  54. part.Material = "Neon"
  55. part.CanCollide = false
  56. part.Anchored = true
  57. part.Position = game.Players.LocalPlayer.Character.HumanoidRootPart
  58. .Position + Vector3.new(pos)
  59. end
  60. end
  61. end)
  62.  
  63. Misc:Section("Epic stuff")
  64.  
  65. local StatEffects = Misc:Button("Toggle StatEffects (Popups)", function()
  66. game:GetService("Players").LocalPlayer.PlayerGui.statEffectsGui.Enabled = not game:GetService("Players").LocalPlayer.PlayerGui.statEffectsGui.Enabled
  67. game:GetService("Players").LocalPlayer.PlayerGui.hoopGui.Enabled = not game:GetService("Players").LocalPlayer.PlayerGui.hoopGui.Enabled
  68. end)
  69.  
  70. Misc:Bind("Toggle Gui",
  71. {flag = "Toggle", kbonly = true, default = Enum.KeyCode.LeftControl},
  72. function()
  73. game:GetService("CoreGui").ScreenGui.Container.Visible = not game:GetService("CoreGui").ScreenGui.Container.Visible
  74. end)
  75.  
  76. -- Teleports
  77. local Teleports = library:CreateWindow("Teleports")
  78.  
  79. Teleports:Section("🛠️Utilitys🛠️")
  80.  
  81. local KOTH = Teleports:Button("King Of The Hill", function()
  82. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").kingOfTheHillPart.CFrame
  83. end)
  84.  
  85. local Shop = Teleports:Button("Shop", function()
  86. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").shopAreaCircle3.circleInner.CFrame
  87. end)
  88.  
  89. Teleports:Section("🌀Worlds🌀")
  90.  
  91. local EnchantedIsland = Teleports:Button("Enchanted Island", function()
  92. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").islandUnlockParts["Enchanted Island"]
  93. .CFrame
  94. end)
  95.  
  96. local AstralIsland = Teleports:Button("Astral Island", function()
  97. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").islandUnlockParts["Astral Island"].CFrame
  98. end)
  99.  
  100. local MysticalIsland = Teleports:Button("Mystical Island", function()
  101. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").islandUnlockParts["Mystical Island"].CFrame
  102. end)
  103.  
  104. local SpaceIsland = Teleports:Button("Space Island", function()
  105. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").islandUnlockParts["Space Island"].CFrame
  106. end)
  107.  
  108. Teleports:Section("💰Chests💰")
  109.  
  110. local MythicalChest = Teleports:Button("Mythical Chest", function()
  111. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.workspace.mythicalChest.chestNamePart.CFrame
  112. end)
  113.  
  114. local GoldenChest = Teleports:Button("Golden Chest", function()
  115. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.workspace.goldenChest.chestNamePart.CFrame
  116. end)
  117.  
  118. local EnchantedChest = Teleports:Button("Enchanted Chest", function()
  119. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.workspace.enchantedChest.chestNamePart.CFrame
  120. end)
  121.  
  122. local MagmaChest = Teleports:Button("Magma Chest", function()
  123. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.workspace.magmaChest.chestNamePart.CFrame
  124. end)
  125.  
  126. local DailyRewards = Teleports:Button("Daily Rewards", function()
  127. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.workspace["Daily Chest"].chestNamePart.CFrame
  128. end)
  129.  
  130. local GroupRewards = Teleports:Button("Group Rewards", function()
  131. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.workspace.groupRewardsCircle.circleInner.CFrame
  132. end)
  133.  
  134. -- Credits
  135. local credits = library:CreateWindow("Credits")
  136.  
  137. credits:Button("📋Copy original V3rm Thread", function()
  138. syn.write_clipboard("https://v3rmillion.net/showthread.php?tid=905052")
  139. end)
  140. credits:Section("Gui made by Wallys Lib V2")
  141. credits:Section("📜Scripted By")
  142. credits:Section("Gerard#0123")
  143. credits:Section("V3rm - iTzSadButNotRad")
  144. credits:Button("📋Copy V3rm link", function()
  145. syn.write_clipboard(
  146. "https://v3rmillion.net/member.php?action=profile&uid=211143")
  147. end)
  148. credits:Section("🙌Help from🙌")
  149. credits:Section("Levi#7059")
  150. credits:Section("V3rm - LeviTheOtaku")
  151. credits:Button("📋Copy V3rm link", function()
  152. syn.write_clipboard(
  153. "https://v3rmillion.net/member.php?action=profile&uid=11841")
  154. end)
  155.  
  156. local rs = game:GetService("RunService").RenderStepped
  157.  
  158. spawn(function()
  159. while rs:wait() do
  160. if Misc.flags.TEgg then
  161. -- This script was generated by Hydroxide
  162. local oh1 = "openCrystal"
  163. local oh2 = _G.Egg
  164. print("Purchased", _G.Egg)
  165. game:GetService("ReplicatedStorage").rEvents.openCrystalRemote:InvokeServer(oh1, oh2)
  166. end
  167. end
  168. end)
  169. spawn(function()
  170. while rs:wait() do
  171. if Farming.flags.Enabled then
  172. if Farming.flags.Swing then
  173. game.Players.LocalPlayer.ninjaEvent:FireServer("swingKatana")
  174. end
  175. end
  176. end
  177. end)
  178. spawn(function()
  179. while rs:wait() do
  180. if Farming.flags.Enabled then
  181. if Farming.flags.Sell then
  182. if game.Players.LocalPlayer.Character:findFirstChild(
  183. "HumanoidRootPart") then
  184. game.workspace["sellAreaCircle"].circleInner.CFrame =game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart").CFrame
  185. end
  186. end
  187. end
  188. end
  189. end)
  190.  
  191. spawn(function()
  192. while rs:wait() do
  193. if Farming.flags.Enabled then
  194. if Farming.flags.Boss then
  195. if game:GetService("Workspace").bossFolder:WaitForChild("RobotBoss"):WaitForChild("HumanoidRootPart") then
  196. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.bossFolder.RobotBoss.HumanoidRootPart.CFrame
  197. end
  198. end
  199. end
  200. end
  201. end)
  202.  
  203. spawn(function()
  204. while rs:wait() do
  205. if AutoBuy.flags.Purchase then
  206. if AutoBuy.flags.Sword then
  207. -- This script was generated by Hydroxide
  208. local oh1 = "buyAllSwords"
  209. local oh2 = {"Ground", "Astral Island", "Space Island"}
  210. for i = 1, #oh2 do
  211. game:GetService("Players").LocalPlayer.ninjaEvent:FireServer(oh1, oh2[i])
  212. end
  213. end
  214. end
  215. end
  216. end)
  217.  
  218. spawn(function()
  219. while rs:wait() do
  220. if AutoBuy.flags.Purchase then
  221. if AutoBuy.flags.Belt then
  222. -- This script was generated by Hydroxide
  223. local oh1 = "buyAllBelts"
  224. local oh2 = {"Ground", "Astral Island", "Space Island"}
  225. for i = 1, #oh2 do
  226. game:GetService("Players").LocalPlayer.ninjaEvent:FireServer(oh1, oh2[i])
  227. end
  228. end
  229. end
  230. end
  231. end)
  232.  
  233. spawn(function()
  234. while rs:wait() do
  235. if AutoBuy.flags.Purchase then
  236. if AutoBuy.flags.Skill then
  237. -- This script was generated by Hydroxide
  238. local oh1 = "buyAllSkills"
  239. local oh2 = {"Ground", "Astral Island", "Space Island"}
  240. for i = 1, #oh2 do
  241. game:GetService("Players").LocalPlayer.ninjaEvent:FireServer(oh1, oh2[i])
  242. end
  243. end
  244. end
  245. end
  246. end)
  247.  
  248. spawn(function()
  249. while rs:wait() do
  250. if AutoBuy.flags.Purchase then
  251. if AutoBuy.flags.Rank then
  252. -- This script was generated by Hydroxide
  253. local oh1 = "buyAllSwords"
  254. local oh2 = {"Ground", "Astral Island", "Space Island"}
  255. for i = 1, #oh2 do
  256. game:GetService("Players").LocalPlayer.ninjaEvent:FireServer(oh1, oh2[i])
  257. end
  258. end
  259. end
  260. end
  261. end)
  262.  
  263. spawn(function()
  264. while rs:wait() do
  265. if Farming.flags.Spawn then
  266. if _G.Collection == "Coin" then
  267. for i, v in pairs(game.Workspace.spawnedCoins.Valley:GetChildren()) do
  268. wait(0.1)
  269. if string.match(v.Name, "Coin") == "Coin" then
  270. if Farming.flags.Spawn then
  271. if game.Players.LocalPlayer.Character:findFirstChild("HumanoidRootPart") then
  272. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  273. end
  274. end
  275. end
  276. end
  277. end
  278. if _G.Collection == "Chi" then
  279. for i, v in pairs(game.Workspace.spawnedCoins.Valley:GetChildren()) do
  280. wait(0.1)
  281. if string.match(v.Name, "Chi") == "Chi" then
  282. if Farming.flags.Spawn then
  283. if game.Players.LocalPlayer.Character:findFirstChild(
  284. "HumanoidRootPart") then
  285. game.Players.LocalPlayer.Character
  286. .HumanoidRootPart.CFrame = v.CFrame
  287. end
  288. end
  289. end
  290. end
  291. end
  292. if _G.Collection == "Both" then
  293. for i, v in pairs(game.Workspace.spawnedCoins.Valley:GetChildren()) do
  294. wait(0.1)
  295. if Farming.flags.Spawn then
  296. if game.Players.LocalPlayer.Character:findFirstChild(
  297. "HumanoidRootPart") then
  298. game.Players.LocalPlayer.Character
  299. .HumanoidRootPart.CFrame = v.CFrame
  300. end
  301. end
  302. end
  303. end
  304. end
  305. end
  306. end)
  307.  
  308. spawn(function()
  309. while rs:wait() do
  310. if _G.Collection then
  311. if _G.Collection == "Coin" then
  312. local stuff = workspace.Hoops:getChildren()
  313. for i = 1, #stuff do
  314. if _G.Collection then
  315. if string.match(stuff[i].Name, "Coin") == "Coin" then
  316. for i = 1, 10 do
  317. if game.Players.LocalPlayer.Character:findFirstChild("HumanoidRootPart") then
  318. stuff[i].touchPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  319. wait(0.1)
  320. end
  321. end
  322. end
  323. end
  324. wait()
  325. end
  326. end
  327. if _G.Collection == "Chi" then
  328. local stuff = workspace.Hoops:getChildren()
  329. for i = 1, #stuff do
  330. if _G.Collection then
  331. if string.match(stuff[i].Name, "Chi") == "Chi" then
  332. for i = 1, 10 do
  333. if game.Players.LocalPlayer.Character:findFirstChild("HumanoidRootPart") then
  334. stuff[i].touchPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  335. wait(0.1)
  336. end
  337. end
  338. end
  339. end
  340. wait()
  341. end
  342. end
  343. if _G.Collection == "Both" then
  344. local stuff = workspace.Hoops:getChildren()
  345. for i = 1, #stuff do
  346. if _G.Collection then
  347. for i = 1, 10 do
  348. if game.Players.LocalPlayer.Character:findFirstChild("HumanoidRootPart") then
  349. stuff[i].touchPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  350. wait(0.1)
  351. end
  352. end
  353. end
  354. wait()
  355. end
  356. end
  357. end
  358. end
  359. end)
  360.  
  361. local vu = game:GetService("VirtualUser")
  362. game:GetService("Players").LocalPlayer.Idled:connect(
  363. function()
  364. vu:Button2Down(Vector2.new(0, 0), workspace.CurrentCamera.CFrame)
  365. wait(1)
  366. vu:Button2Up(Vector2.new(0, 0), workspace.CurrentCamera.CFrame)
  367. end)
  368. print("Anti afk acitve")
  369. for i = 1, 10 do
  370. warn("Any errors, DM Gerard#0123")
  371. wait()
  372. end
  373.  
  374.  
  375. function Boss()
  376. if Farming.flags.Enabled then
  377. if Farming.flags.Boss then
  378. if game:GetService("Workspace").bossFolder:FindFirstChild("RobotBoss"):FindFirstChild("HumanoidRootPart") then
  379. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.bossFolder.RobotBoss.HumanoidRootPart.CFrame
  380. end
  381. end
  382. end
  383. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement