Advertisement
UNKNOWNSCRIPTER12

DELIVERY SIMULATOR script autofarm

Jun 15th, 2021
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.90 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local TextLabel = Instance.new("TextLabel")
  9. local TextButton = Instance.new("TextButton")
  10. local TextLabel_2 = Instance.new("TextLabel")
  11.  
  12. --Properties:
  13.  
  14. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  15. ScreenGui.ResetOnSpawn = false
  16.  
  17. Frame.Parent = ScreenGui
  18. Frame.BackgroundColor3 = Color3.fromRGB(0, 170, 255)
  19. Frame.Position = UDim2.new(0.545462608, 0, 0.376395017, 0)
  20. Frame.Size = UDim2.new(0, 425, 0, 372)
  21. Frame.Active = true
  22. Frame.Draggable = true
  23.  
  24. TextLabel.Parent = Frame
  25. TextLabel.BackgroundColor3 = Color3.fromRGB(85, 255, 255)
  26. TextLabel.Position = UDim2.new(0, 0, -0.0039049373, 0)
  27. TextLabel.Size = UDim2.new(0, 428, 0, 72)
  28. TextLabel.Font = Enum.Font.SourceSans
  29. TextLabel.Text = "DELIVERY SIMULATOR AUTOFARM"
  30. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  31. TextLabel.TextSize = 35.000
  32.  
  33. TextButton.Parent = Frame
  34. TextButton.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  35. TextButton.Position = UDim2.new(0.141491562, 0, 0.317911685, 0)
  36. TextButton.Size = UDim2.new(0, 304, 0, 151)
  37. TextButton.Font = Enum.Font.SourceSans
  38. TextButton.Text = "ACTIVATE!!!"
  39. TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  40. TextButton.TextSize = 55.000
  41. TextButton.MouseButton1Down:connect(function()
  42. _G.Enabled = true ---Enable script
  43. _G.Stock = true --Auto restock all racks
  44. _G.Deliver = true --Auto sell everything
  45.  
  46. loadstring(game:HttpGet('https://pastebin.com/raw/VkRfdPp1'))()
  47. end)
  48.  
  49. TextLabel_2.Parent = Frame
  50. TextLabel_2.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  51. TextLabel_2.Position = UDim2.new(-0.00154346228, 0, 0.798174858, 0)
  52. TextLabel_2.Size = UDim2.new(0, 426, 0, 75)
  53. TextLabel_2.Font = Enum.Font.SourceSans
  54. TextLabel_2.Text = "Gui Made By Avoidzs On Yt / Brooklyn"
  55. TextLabel_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  56. TextLabel_2.TextSize = 30.000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement