Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- getgenv().apumpkin = false
- getgenv().apumpkin2 = false
- function apumpkin()
- spawn(function()
- while getgenv().apumpkin do
- for _,v in pairs(game:GetService("Workspace").Zones.Halloween.Drops:GetDescendants()) do
- if v.Name == "TouchInterest" then
- wait(0.1)
- if not getgenv().apumpkin then break end
- local success, errorMessage = pcall(function()
- firetouchinterest(v.Parent, game.Players.LocalPlayer.Character.HumanoidRootPart, 0)
- end)
- if not success then
- break
- end
- end
- end
- end
- end)
- end
- function apumpkin2()
- spawn(function()
- while getgenv().apumpkin2 do
- for _,v in pairs(game:GetService("Workspace").Zones.Halloween.Drops:GetDescendants()) do
- if v.Name == "TouchInterest" and v.Parent and v.Parent.Position then
- wait(0.1)
- if not getgenv().apumpkin2 then break end
- local success, errorMessage = pcall(function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.Parent.Position)
- end)
- if not success then
- break
- end
- end
- end
- end
- end)
- end
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
- local Window = Library.CreateLib("Auto Pumpkin", "Ocean")
- local Farming = Window:NewTab("Main")
- local Credits = Window:NewTab("Credits")
- local AutoFarm = Farming:NewSection("Main")
- local Credit = Credits:NewSection("Credit:")
- local Discord = Credits:NewSection("Discord")
- AutoFarm:NewToggle("Auto Collect Pumpkin", "Auto Collect pumpkins", function(bool)
- getgenv().apumpkin = bool
- if bool then
- apumpkin()
- end
- end)
- AutoFarm:NewToggle("Auto Collect Pumpkin (TELEPORT)", "Auto Collect pumpkins with teleport. Might work better than the other one", function(bool)
- getgenv().apumpkin2 = bool
- if bool then
- apumpkin2()
- end
- end)
- Credit:NewLabel("Made By Bebedi#9960")
- Discord:NewButton("Copy Discord Link", "Copy the Arcane Discord URL", function()
- setclipboard("https://discord.gg/ArKmNgwXHV")
- end)
Advertisement
Add Comment
Please, Sign In to add comment