AaronSo0908

Babft

Aug 26th, 2022 (edited)
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.09 KB | None | 0 0
  1. --https://raw.githubusercontent.com/deeeity/mercury-lib/master/src.lua
  2. local Mercury = loadstring(game:HttpGet("https://raw.githubusercontent.com/HMECODES/customLib/main/MecurySFX"))() --Custom Lib
  3.  
  4. local player = game.Players.LocalPlayer
  5. local char = player.Character
  6. local human = char:FindFirstChild("HumanoidRootPart")
  7. local base
  8. local basePos
  9. local You = player
  10. local UIS = game:GetService("UserInputService")
  11. _G.speednum = 1
  12. _G.version = "Premium"
  13.  
  14. local GUI = Mercury:Create{
  15. Name = _G.version,
  16. Size = UDim2.fromOffset(650, 450),
  17. Theme = Mercury.Themes.Dark,
  18. Link = "Hackyware (Standard Version) | (Script Made By Hacky Team) | Current Page: "
  19. }
  20.  
  21. local Misc = GUI:Tab{
  22. Name = "Misc",
  23. Icon = "rbxassetid://9129847603"
  24. }
  25.  
  26. local Base = GUI:Tab{
  27. Name = "AutoFarm",
  28. Icon = "rbxassetid://7545193197"
  29. }
  30.  
  31.  
  32. local Credits = GUI:Tab{
  33. Name = "Credits",
  34. Icon = "rbxassetid://10554871699"
  35. }
  36.  
  37. Credits:Button{
  38. Name = "Discord",
  39. Description = "",
  40. Callback = function()
  41. setclipboard("https://discord.gg/Q2pT2kYyJT")
  42. print("copied to clipboard")
  43. end
  44. }
  45.  
  46. Credits:Button{
  47. Name = "Website",
  48. Description = "",
  49. Callback = function()
  50. setclipboard("https://hware.xyz")
  51. print("copied to clipboard")
  52. end
  53. }
  54.  
  55. Base:Toggle{
  56. Name = "AutoFarm (Safe)",
  57. StartingState = false,
  58. Description = "Safe autofarm",
  59. Callback = function(func)
  60. autofarm(func)
  61. end
  62. }
  63.  
  64. Base:Button{
  65. Name = "Common Chest",
  66. StartingState = false,
  67. Callback = function(func)
  68. local a={[1]="Common Chest",[2]=1}workspace.ItemBoughtFromShop:InvokeServer(unpack(a))
  69. end
  70. }
  71.  
  72. Base:Button{
  73. Name = "Uncommon Chest",
  74. StartingState = false,
  75. Callback = function(func)
  76. local a={[1]="Uncommon Chest",[2]=1}workspace.ItemBoughtFromShop:InvokeServer(unpack(a))
  77. end
  78. }
  79.  
  80. Base:Button{
  81. Name = "Rare Chest",
  82. StartingState = false,
  83. Callback = function(func)
  84. local a={[1]="Rare Chest",[2]=1}workspace.ItemBoughtFromShop:InvokeServer(unpack(a))
  85. end
  86. }
  87.  
  88. Base:Button{
  89. Name = "Epic Chest",
  90. StartingState = false,
  91. Callback = function(func)
  92. local a={[1]="Epic Chest",[2]=1}workspace.ItemBoughtFromShop:InvokeServer(unpack(a))
  93. end
  94. }
  95.  
  96. Base:Button{
  97. Name = "Legendary Chest",
  98. StartingState = false,
  99. Callback = function(func)
  100. local a={[1]="Legendary Chest",[2]=1}workspace.ItemBoughtFromShop:InvokeServer(unpack(a))
  101. end
  102. }
  103.  
  104. Misc:Textbox{
  105. Name = "Spoof Gold",
  106. Callback = function(text)
  107. game:GetService("Players").LocalPlayer.Data.Gold.Value = func
  108. end
  109. }
  110.  
  111. Misc:Button{
  112. Name = "Anti Afk",
  113. Description = "Bypass Idle Kick",
  114. Callback = function()
  115. anti()
  116. end
  117. }
  118.  
  119. function autofarm(func)
  120. _G.toggleautofarm = func
  121. while _G.toggleautofarm do
  122. local plr = game:service"Players".LocalPlayer;
  123. local tween_s = game:service"TweenService";
  124. local info = TweenInfo.new(2,Enum.EasingStyle.Quad);
  125. function tp(...)
  126. local tic_k = tick();
  127. local params = {...};
  128. local cframe = CFrame.new(params[1],params[2],params[3]);
  129. local tween,err = pcall(function()
  130. local tween = tween_s:Create(plr.Character["HumanoidRootPart"],info,{CFrame=cframe});
  131. tween:Play();
  132. end)
  133. if not tween then return err end
  134. end
  135.  
  136. tp(-55.1682892, 70.8159409, 1298.73474); --start
  137.  
  138. wait (2)
  139.  
  140. tp(-55.1682892, 70.8159409, 1298.73474); --start
  141.  
  142. wait(2)
  143.  
  144. tp(-55.4936447, 70.283051, 9497.36523, 0.467558503, -3.92381327e-09, 0.883962154, 7.25372047e-08, 1, -3.3928572e-08, -0.883962154, 7.99837352e-08, 0.467558503); --end
  145.  
  146. wait (22)
  147. end
  148. end
  149.  
  150.  
  151.  
  152. function anti()
  153. local vu = game:GetService("VirtualUser")
  154. game:GetService("Players").LocalPlayer.Idled:connect(function()
  155. vu:Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  156. wait(1)
  157. vu:Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  158. end)
  159. print("AFK BYPASSER working")
  160. end
  161.  
Advertisement
Add Comment
Please, Sign In to add comment