Advertisement
trollhackerdude

Vacuum Simulator Autofarm

Jun 16th, 2019
1,454
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.07 KB | None | 0 0
  1. -- by trollhackerdude please give credit if you record this
  2. -- Instances:
  3. local vacuum = Instance.new("ScreenGui")
  4. local Autofarm = Instance.new("TextButton")
  5. local TextLabel = Instance.new("TextLabel")
  6. --Properties:
  7. vacuum.Name = "vacuum"
  8. vacuum.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  9.  
  10. Autofarm.Name = "Autofarm"
  11. Autofarm.Parent = vacuum
  12. Autofarm.BackgroundColor3 = Color3.new(0.478431, 0.478431, 0.478431)
  13. Autofarm.Position = UDim2.new(0.92333889, 0, 0.839486361, 0)
  14. Autofarm.Size = UDim2.new(0, 97, 0, 50)
  15. Autofarm.Font = Enum.Font.SourceSans
  16. Autofarm.Text = "Autofarm"
  17. Autofarm.TextColor3 = Color3.new(0, 0, 0)
  18. Autofarm.TextScaled = true
  19. Autofarm.TextSize = 14
  20. Autofarm.TextWrapped = true
  21.  
  22. TextLabel.Parent = vacuum
  23. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  24. TextLabel.BackgroundTransparency = 1
  25. TextLabel.Position = UDim2.new(0.560506165, 0, 0.91974318, 0)
  26. TextLabel.Size = UDim2.new(0, 556, 0, 50)
  27. TextLabel.Font = Enum.Font.SourceSans
  28. TextLabel.Text = "Vacuum simuator destroyer by trollhackerdude"
  29. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  30. TextLabel.TextScaled = true
  31. TextLabel.TextSize = 14
  32. TextLabel.TextWrapped = true
  33. -- Scripts:
  34. function SCRIPT_DFHM76_FAKESCRIPT() -- Autofarm.tp
  35.     local script = Instance.new('LocalScript')
  36.     script.Parent = Autofarm
  37.     script.Parent.MouseButton1Click:Connect(function()
  38.         while true do
  39.             wait(1)
  40.             local sellpos = game.Workspace.GameComponents.SellStuff.Part.Position
  41.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(sellpos)
  42.         end
  43.     end)
  44.  
  45. end
  46. coroutine.resume(coroutine.create(SCRIPT_DFHM76_FAKESCRIPT))
  47. function SCRIPT_DMOI75_FAKESCRIPT() -- Autofarm.farm
  48.     local script = Instance.new('LocalScript')
  49.     script.Parent = Autofarm
  50.     script.Parent.MouseButton1Click:Connect(function()
  51.         while true do
  52.             wait()
  53.             local tbl_main =
  54.     {
  55.           Vector3.new(-36.8166618, -8.98499966, 158.170761)
  56.     }
  57.     game:GetService("ReplicatedStorage").Events.VacuumObject:FireServer(unpack(tbl_main))
  58.    
  59.         end
  60.     end)
  61.  
  62. end
  63. coroutine.resume(coroutine.create(SCRIPT_DMOI75_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement