Advertisement
YT_PatricioTGN

dev

Oct 2nd, 2021
370
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.74 KB | None | 0 0
  1. local library = loadstring(game:HttpGet(('https://pastebin.com/raw/FsJak6AT')))()
  2. local w = library:CreateWindow("Delivery Simulator")
  3. local b = w:CreateFolder("AutoFarm")
  4. local f = w:CreateFolder("Get Items")
  5. local e = w:CreateFolder("Mix")
  6. local u = w:CreateFolder("Credits")
  7. --Toggle
  8. b:Toggle("PickUpBoxesSpawn",function(bool)
  9. shared.toggle = bool
  10. PickUpBoxesSpawn = bool
  11. end)
  12.  
  13. b:Toggle("PlaceBoxesBase",function(bool)
  14. shared.toggle = bool
  15. PlaceBoxesBase = bool
  16. end)
  17.  
  18. b:Toggle("PickUpBoxesBase",function(bool)
  19. shared.toggle = bool
  20. PickUpBoxesBase = bool
  21. end)
  22.  
  23. b:Toggle("AutoSellBoxes",function(bool)
  24. shared.toggle = bool
  25. AutoSellBoxes = bool
  26. end)
  27.  
  28. local Jack = "Starter Jack"
  29. Jacks = {}
  30. for i,v in pairs(game:GetService("ReplicatedStorage").Assets.Jacks:GetChildren()) do
  31. Jacks[i] = v.Name
  32. end
  33.  
  34. f:Dropdown("Select Jack",Jacks,true,function(mob)
  35. Jack = mob
  36. end)
  37.  
  38. f:Button("Get Juck",function()
  39. game:GetService("ReplicatedStorage").Remotes.SelectItem:FireServer("Jacks",Jack)
  40. end)
  41.  
  42. local Vehicle = "Starter Van"
  43. Vehicles = {}
  44. for i,v in pairs(game:GetService("ReplicatedStorage").CarModels:GetChildren()) do
  45. Vehicles[i] = v.Name
  46. end
  47.  
  48. f:Dropdown("Select Vehicle",Vehicles,true,function(mob)
  49. Vehicle = mob
  50. end)
  51.  
  52. f:Button("Get Vehicle",function()
  53. game:GetService("ReplicatedStorage").Remotes.SelectItem:FireServer("Vehicles",Vehicle)
  54. end)
  55.  
  56. f:Button("Get Robux Shelf",function()
  57. for i=1,4 do
  58. game:GetService("ReplicatedStorage").Remotes.SelectItem:FireServer("Racks","Starter Pack Shelf")
  59. end
  60. end)
  61.  
  62. e:Toggle("AntiAfk",function(bool)
  63. shared.toggle = bool
  64. AntiAfk = bool
  65. end)
  66. --Credits
  67. u:Button("maxgat5#8395",function()
  68. setclipboard("maxgat5#8395")
  69. end)
  70.  
  71. u:Button("Discrod Server",function()
  72. setclipboard("https://discord.gg/K4txdRSVfq")
  73. end)
  74.  
  75. while wait() do
  76. if PickUpBoxesSpawn == true then
  77. string = game:GetService("Players").LocalPlayer.PlayerGui.Main.Jack.Capacity.Text
  78. a,b = string:match("(.+)/(.+)")
  79. for i,v in pairs(game:GetService("Workspace").GameLogic.SpawnedBoxes:GetChildren()) do
  80. if a ~= b then
  81. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.MeshPart.Position)
  82. game:GetService("ReplicatedStorage").Remotes.PickupBox:InvokeServer(v)
  83. end
  84. end
  85. end
  86.  
  87. if PlaceBoxesBase == true then
  88. for i,v in pairs(game:GetService("Workspace").GameLogic.Warehouses:GetDescendants()) do
  89. if v.Name == "Owner" and v.ClassName == "ObjectValue" then
  90. if v.Value == game.Players.LocalPlayer then
  91. for i,v1 in pairs(v.Parent.Racks:GetChildren()) do
  92. string = v1.Center.RackCapacity.Capacity.Text
  93. a,b = string:match("(.+)/(.+)")
  94. if a ~= b then
  95. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v1.Center.Position)
  96. game:GetService("ReplicatedStorage").Remotes.StackRack:InvokeServer(v1)
  97. end
  98. end
  99. end
  100. end
  101. end
  102. end
  103.  
  104. if PickUpBoxesBase == true then
  105. for i,v in pairs(game:GetService("Workspace").GameLogic.Warehouses:GetDescendants()) do
  106. if v.Name == "Owner" and v.ClassName == "ObjectValue" then
  107. if v.Value == game.Players.LocalPlayer then
  108. for i,v1 in pairs(v.Parent.Racks:GetChildren()) do
  109. for i,v2 in pairs(v1.Boxes:GetChildren()) do
  110. string = game:GetService("Players").LocalPlayer.PlayerGui.Main.Carry.Capacity.Text
  111. a,b = string:match("(.+)/(.+)")
  112. if a ~= b then
  113. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v2.MeshPart.Position)
  114. game:GetService("ReplicatedStorage").Remotes.PickupBox:InvokeServer(v2)
  115. end
  116. end
  117. end
  118. end
  119. end
  120. end
  121. end
  122.  
  123. if AutoSellBoxes == true then
  124. for i,v in pairs(game:GetService("Workspace").GameLogic.DeliveryPoints:GetChildren()) do
  125. game:GetService("ReplicatedStorage").Remotes.SellBox:InvokeServer(v)
  126. end
  127. end
  128.  
  129. if BuyRacks == true then
  130. game:GetService("ReplicatedStorage").Remotes.SelectItem:FireServer("Racks",Rack)
  131. end
  132.  
  133. if AntiAfk == true then
  134. local bb=game:service'VirtualUser'
  135. bb:CaptureController()
  136. bb:ClickButton2(Vector2.new())
  137. end
  138. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement