akaAARON_MULKEY

auto farm unboxing sim

Jun 20th, 2019
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.31 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local GG = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local StageName = Instance.new("TextBox")
  7. local FarmOn = Instance.new("TextButton")
  8. local FarmOff = Instance.new("TextButton")
  9. local TextLabel = Instance.new("TextLabel")
  10. local Open = Instance.new("TextButton")
  11. local Close = Instance.new("TextButton")
  12. --Properties:
  13. GG.Name = "GG"
  14. GG.Parent = game.CoreGui
  15. GG.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  16.  
  17. Frame.Parent = GG
  18. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  19. Frame.Position = UDim2.new(0.239234447, 0, 0.254360467, 0)
  20. Frame.Size = UDim2.new(0, 382, 0, 270)
  21. Frame.Draggable = true
  22. Frame.Active =true
  23. Frame.Visible = false
  24.  
  25. StageName.Parent = Frame
  26. StageName.BackgroundColor3 = Color3.new(1, 1, 1)
  27. StageName.Position = UDim2.new(0.034926679, 0, 0.125925913, 0)
  28. StageName.Size = UDim2.new(0, 180, 0, 65)
  29. StageName.Font = Enum.Font.SourceSans
  30. StageName.Text = "Stage name"
  31. StageName.TextColor3 = Color3.new(0, 0, 0)
  32. StageName.TextSize = 14
  33.  
  34. FarmOn.Name = "FarmOn"
  35. FarmOn.Parent = Frame
  36. FarmOn.BackgroundColor3 = Color3.new(1, 1, 1)
  37. FarmOn.Position = UDim2.new(0.0785340369, 0, 0.496296316, 0)
  38. FarmOn.Size = UDim2.new(0, 145, 0, 50)
  39. FarmOn.Font = Enum.Font.SourceSans
  40. FarmOn.Text = "FarmOn"
  41. FarmOn.TextColor3 = Color3.new(0, 0, 0)
  42. FarmOn.TextSize = 14
  43. FarmOn.MouseButton1Down:connect(function()
  44. game.CoreGui.GG.Frame.FarmOn.Visible = false
  45. game.CoreGui.GG.Frame.FarmOff.Visible = true
  46. _G.enabled = true
  47. _G.delay = 2
  48. _G.BrickColor = StageName.Text
  49.  
  50. -- For the most coins made, change the BrickColor to correspond with your area.
  51. -- Respective to the area numbers, the BrickColors are: Pastel brown, Bright violet, Moss, Neon orange, Ghost grey, and Pine cone.
  52.  
  53. while wait() do
  54. for i, v in pairs(game.Workspace.Chests:GetChildren()) do
  55. if v.ClassName == "Model" then
  56. for a, b in pairs(v:GetChildren()) do
  57. if b.Name == "Base" then
  58. if _G.enabled and b and b.BrickColor.Name == _G.BrickColor then
  59. game.Workspace[game.Players.LocalPlayer.Name]:MoveTo(b.Position)
  60. game.ReplicatedStorage.Aero.AeroRemoteServices.ChestService.DisconnectPlayer:FireServer(tostring(v.Name))
  61. wait(_G.delay)
  62. end
  63. end
  64. end
  65. end
  66. end
  67. end
  68. end)
  69.  
  70. FarmOff.Name = "FarmOff"
  71. FarmOff.Parent = Frame
  72. FarmOff.BackgroundColor3 = Color3.new(1, 1, 1)
  73. FarmOff.Position = UDim2.new(0.0785340369, 0, 0.496296316, 0)
  74. FarmOff.Size = UDim2.new(0, 145, 0, 50)
  75. FarmOff.Visible = false
  76. FarmOff.Font = Enum.Font.SourceSans
  77. FarmOff.Text = "FarmOff"
  78. FarmOff.TextColor3 = Color3.new(0, 0, 0)
  79. FarmOff.TextSize = 14
  80. FarmOff.MouseButton1Down:connect(function()
  81. game.CoreGui.GG.Frame.FarmOff.Visible = false
  82. game.CoreGui.GG.Frame.FarmOn.Visible = true
  83. _G.enabled = false
  84. end)
  85.  
  86. TextLabel.Parent = Frame
  87. TextLabel.BackgroundColor3 = Color3.new(0.333333, 1, 1)
  88. TextLabel.Position = UDim2.new(0.599476397, 0, -0.00370370364, 0)
  89. TextLabel.Size = UDim2.new(0, 153, 0, 270)
  90. TextLabel.Font = Enum.Font.SourceSans
  91. TextLabel.Text = "--stage1 \"Pastel brown\" \n--stage2 \"Bright violet\" \n--stage3 \"Moss\"\n--stage4 \"Neon orange\"\n--stage5 \"Ghost grey\"\n--stage6 \"Pine Cone\"Gui By kiet gamer"
  92. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  93. TextLabel.TextSize = 16
  94. TextLabel.TextWrapped = true
  95.  
  96. Open.Name = "Open"
  97. Open.Parent = GG
  98. Open.BackgroundColor3 = Color3.new(1, 1, 1)
  99. Open.Position = UDim2.new(0, 0, 0.547965169, 0)
  100. Open.Size = UDim2.new(0, 121, 0, 67)
  101. Open.Font = Enum.Font.SourceSans
  102. Open.Text = "Open"
  103. Open.TextColor3 = Color3.new(0, 0, 0)
  104. Open.TextSize = 16
  105. Open.MouseButton1Down:connect(function()
  106. game.CoreGui.GG.Close.Visible = true
  107. game.CoreGui.GG.Open.Visible = false
  108. game.CoreGui.GG.Frame.Visible = true
  109. end)
  110.  
  111. Close.Name = "Close"
  112. Close.Parent = GG
  113. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  114. Close.Position = UDim2.new(0, 0, 0.54651171, 0)
  115. Close.Size = UDim2.new(0, 121, 0, 67)
  116. Close.Visible = false
  117. Close.Font = Enum.Font.SourceSans
  118. Close.Text = "Close"
  119. Close.TextColor3 = Color3.new(0, 0, 0)
  120. Close.TextSize = 16
  121. Close.MouseButton1Down:connect(function()
  122. game.CoreGui.GG.Close.Visible = false
  123. game.CoreGui.GG.Open.Visible = true
  124. game.CoreGui.GG.Frame.Visible = false
  125. end)
  126. -- Scripts:
Add Comment
Please, Sign In to add comment