Advertisement
NightGolden

唐县

Jun 3rd, 2024
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.35 KB | None | 0 0
  1. local virtualUser = game:GetService('VirtualUser')
  2. virtualUser:CaptureController()
  3.  
  4. function teleportTo(CFrame)
  5. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame
  6. end
  7.  
  8. _G.autoFarm = false
  9.  
  10. function autoFarm()
  11. while _G.autoFarm do
  12. fireclickdetector(game:GetService("Workspace").DeliverySys.Misc["Package Pile"].ClickDetector)
  13. task.wait(2.2)
  14. for _,point in pairs(game:GetService("Workspace").DeliverySys.DeliveryPoints:GetChildren()) do
  15. if point.Locate.Locate.Enabled then
  16. teleportTo(point.CFrame)
  17. end
  18. end
  19. task.wait(0)
  20. end
  21. end
  22.  
  23. local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/246437373/Venyx-UI-Library/main/source.lua"))()
  24. local venyx = library.new("唐县", 5013109572)
  25.  
  26. if game.CoreGui:FindFirstChild("AWToggle") then
  27. game.CoreGui:FindFirstChild("AWToggle"):Destroy()
  28. end
  29.  
  30. local AWToggle = Instance.new("ScreenGui")
  31. local Logo = Instance.new("ImageButton")
  32. local UIC = Instance.new("UICorner")
  33.  
  34. AWToggle.Parent = game.CoreGui
  35. AWToggle.Name = "AWToggle"
  36.  
  37. Logo.Parent = AWToggle
  38. Logo.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  39. Logo.BorderColor3 = Color3.fromRGB(0, 0, 0)
  40. Logo.BorderSizePixel = 0
  41. Logo.Position = UDim2.new(0.0246002469, 0, 0.44853875, 0)
  42. Logo.Size = UDim2.new(0.0615006164, 0, 0.127064809, 0)
  43. Logo.Image = "http://www.roblox.com/asset/?id=17411013742"
  44. Logo.Draggable = true
  45. Logo.Active = true
  46. Logo.Selectable = true
  47.  
  48. UIC.CornerRadius = UDim.new(1, 0)
  49. UIC.Parent = Logo
  50.  
  51. Logo.MouseButton1Click:Connect(function()
  52. if game.CoreGui:FindFirstChild("唐县") then
  53. local ui = game.CoreGui:FindFirstChild("唐县")
  54. if ui.Enabled == true then
  55. game.CoreGui:FindFirstChild("唐县").Enabled = false
  56. else
  57. game.CoreGui:FindFirstChild("唐县").Enabled = true
  58. end
  59. end
  60. end)
  61.  
  62. local themes = {
  63. Background = Color3.fromRGB(24, 24, 24),
  64. Glow = Color3.fromRGB(0, 0, 0),
  65. Accent = Color3.fromRGB(10, 10, 10),
  66. LightContrast = Color3.fromRGB(20, 20, 20),
  67. DarkContrast = Color3.fromRGB(14, 14, 14),
  68. TextColor = Color3.fromRGB(255, 255, 255)
  69. }
  70.  
  71.  
  72. local page = venyx:addPage("自动刷钱", 5012544693)
  73. local section1 = page:addSection("自动刷钱")
  74.  
  75. section1:addToggle("自动刷钱 | 送货员", nil, function(value)
  76. _G.autoFarm = value
  77. if value then
  78. autoFarm()
  79. end
  80. end)
  81.  
  82.  
  83.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement