Advertisement
OfficialArponAG

Pickaxe Simulator by IxLUCASSxI

Apr 10th, 2020
6,218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.93 KB | None | 0 0
  1. -- Credits:
  2. -- https://v3rmillion.net/showthread.php?tid=972459
  3.  
  4.  
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local TopBar = Instance.new("Frame")
  8. local TextButton = Instance.new("TextButton")
  9. local TextLabel = Instance.new("TextLabel")
  10. local Body = Instance.new("Frame")
  11. local AutoFarm = Instance.new("TextButton")
  12. local AutoPick = Instance.new("TextButton")
  13. local AutoBuy = Instance.new("TextButton")
  14. local TextLabel_2 = Instance.new("TextLabel")
  15.  
  16. --Properties:
  17.  
  18. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  19. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  20. ScreenGui.ResetOnSpawn = false
  21.  
  22. TopBar.Name = "TopBar"
  23. TopBar.Parent = ScreenGui
  24. TopBar.Active = true
  25. TopBar.BackgroundColor3 = Color3.fromRGB(5, 123, 249)
  26. TopBar.BorderSizePixel = 0
  27. TopBar.Position = UDim2.new(0.340892971, 0, 0.322946161, 0)
  28. TopBar.Selectable = true
  29. TopBar.Size = UDim2.new(0, 448, 0, 32)
  30.  
  31. TextButton.Parent = TopBar
  32. TextButton.BackgroundColor3 = Color3.fromRGB(255, 34, 37)
  33. TextButton.BorderSizePixel = 0
  34. TextButton.Position = UDim2.new(0.939732194, 0, 0.21875, 0)
  35. TextButton.Size = UDim2.new(0, 17, 0, 17)
  36. TextButton.Font = Enum.Font.SourceSans
  37. TextButton.Text = ""
  38. TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  39. TextButton.TextSize = 14.000
  40.  
  41. TextLabel.Parent = TopBar
  42. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  43. TextLabel.BackgroundTransparency = 1.000
  44. TextLabel.BorderSizePixel = 0
  45. TextLabel.Size = UDim2.new(0, 421, 0, 31)
  46. TextLabel.Font = Enum.Font.Cartoon
  47. TextLabel.Text = " ------- Pickaxe Simulator -------"
  48. TextLabel.TextColor3 = Color3.fromRGB(220, 220, 220)
  49. TextLabel.TextSize = 20.000
  50.  
  51. Body.Name = "Body"
  52. Body.Parent = TopBar
  53. Body.Active = true
  54. Body.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  55. Body.BorderColor3 = Color3.fromRGB(53, 53, 53)
  56. Body.BorderSizePixel = 0
  57. Body.Position = UDim2.new(0, 0, 0.975035191, 0)
  58. Body.Selectable = true
  59. Body.Size = UDim2.new(0, 447, 0, 188)
  60.  
  61. AutoFarm.Name = "AutoFarm"
  62. AutoFarm.Parent = Body
  63. AutoFarm.BackgroundColor3 = Color3.fromRGB(16, 112, 255)
  64. AutoFarm.BorderColor3 = Color3.fromRGB(10, 87, 254)
  65. AutoFarm.BorderSizePixel = 0
  66. AutoFarm.Position = UDim2.new(0.0580307245, 0, 0.127659574, 0)
  67. AutoFarm.Size = UDim2.new(0, 173, 0, 44)
  68. AutoFarm.Font = Enum.Font.Cartoon
  69. AutoFarm.Text = "AutoFarm/AutoSell"
  70. AutoFarm.TextColor3 = Color3.fromRGB(255, 255, 255)
  71. AutoFarm.TextSize = 18.000
  72.  
  73. AutoPick.Name = "AutoPick"
  74. AutoPick.Parent = Body
  75. AutoPick.BackgroundColor3 = Color3.fromRGB(16, 112, 255)
  76. AutoPick.BorderColor3 = Color3.fromRGB(10, 87, 254)
  77. AutoPick.BorderSizePixel = 0
  78. AutoPick.Position = UDim2.new(0.551334262, 0, 0.127659574, 0)
  79. AutoPick.Size = UDim2.new(0, 173, 0, 44)
  80. AutoPick.Font = Enum.Font.Cartoon
  81. AutoPick.Text = "Auto PickUp All"
  82. AutoPick.TextColor3 = Color3.fromRGB(255, 255, 255)
  83. AutoPick.TextSize = 18.000
  84.  
  85. AutoBuy.Name = "AutoBuy"
  86. AutoBuy.Parent = Body
  87. AutoBuy.BackgroundColor3 = Color3.fromRGB(16, 112, 255)
  88. AutoBuy.BorderColor3 = Color3.fromRGB(10, 87, 254)
  89. AutoBuy.BorderSizePixel = 0
  90. AutoBuy.Position = UDim2.new(0.303566396, 0, 0.441489339, 0)
  91. AutoBuy.Size = UDim2.new(0, 173, 0, 44)
  92. AutoBuy.Font = Enum.Font.Cartoon
  93. AutoBuy.Text = "Auto Buy Robux Egg"
  94. AutoBuy.TextColor3 = Color3.fromRGB(255, 255, 255)
  95. AutoBuy.TextSize = 18.000
  96.  
  97. TextLabel_2.Parent = Body
  98. TextLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  99. TextLabel_2.BackgroundTransparency = 1.000
  100. TextLabel_2.BorderSizePixel = 0
  101. TextLabel_2.Position = UDim2.new(-0.00223713648, 0, 0.755319178, 0)
  102. TextLabel_2.Size = UDim2.new(0, 448, 0, 35)
  103. TextLabel_2.Font = Enum.Font.Cartoon
  104. TextLabel_2.Text = "Note: You Need 3k Gems For Free Robux Egg"
  105. TextLabel_2.TextColor3 = Color3.fromRGB(77, 77, 77)
  106. TextLabel_2.TextSize = 20.000
  107.  
  108. -- Scripts:
  109.  
  110. local function YHDLKK_fake_script() -- TopBar.LocalScript
  111.     local script = Instance.new('LocalScript', TopBar)
  112.  
  113.     script.Parent.Draggable = true
  114.    
  115.     script.Parent.Body.AutoBuy.MouseButton1Click:Connect(function()
  116.         --AutoBuyRobuxEgg
  117.     _G.LULU = true--change to true or false
  118.     while _G.LULU do
  119.     wait(1) --change time if you want
  120.     local A_1 = "Robux Egg"
  121.     game:GetService("ReplicatedStorage").Events.Server.OpenEgg:FireServer(A_1)
  122.     end
  123.     end)
  124.    
  125.    
  126.     script.Parent.Body.AutoFarm.MouseButton1Click:Connect(function()
  127.         --AutoFarm-AutoSell
  128.     _G.LULU = true--change to true or false
  129.     while _G.LULU do
  130.     wait() --change time if you want
  131.     game:GetService("ReplicatedStorage").Events.Server.OreNodes.PickaxeStrikeNoNode:FireServer()
  132.     game:GetService("ReplicatedStorage").Events.Server.Sell:FireServer()
  133.     end
  134.     end)
  135.    
  136.    
  137.     script.Parent.Body.AutoPick.MouseButton1Click:Connect(function()
  138.         --AutoPickUpAll
  139.     _G.LULU = true--change to true or false
  140.     while _G.LULU do
  141.     wait(0.4) --change time if you want
  142.     for i,v in pairs(game:GetService("Workspace").Resources.Pickups:GetChildren()) do
  143.     wait(0.4)
  144.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  145.     end
  146.     end
  147.     end)
  148.    
  149. end
  150. coroutine.wrap(YHDLKK_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement