Created by borntodie1
Features:
- AUTO FARM
Video
https://streamable.com/92ylyk
To fix: Just disable the toggle then enable.
for i,v in next, game.CoreGui:GetChildren() do
if v.Name == "ScreenGui" and v.ImageButton then
v:Destroy()
end
end
local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/sannin9000/Ui-Libraries/main/uwuware", true))()
local Window = Library:CreateWindow"Dungeon Farm"
local TweenService = game:GetService("TweenService")
local noclipE = false
local antifall = false
local Weapons = {}
for i,v in pairs(game:GetService("ReplicatedStorage").weapons:GetChildren()) do
table.insert(Weapons,tostring(v))
end
local function noclip()
for i, v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
if v:IsA("BasePart") and v.CanCollide == true then
v.CanCollide = false
game.Players.LocalPlayer.Character.HumanoidRootPart.Velocity = Vector3.new(0,0,0)
end
end
end
local function moveto(obj, speed)
local info = TweenInfo.new(((game.Players.LocalPlayer.Character.HumanoidRootPart.Position - obj.Position).Magnitude)/ speed,Enum.EasingStyle.Linear)
local tween = TweenService:Create(game.Players.LocalPlayer.Character.HumanoidRootPart, info, {CFrame = obj})
if not game.Players.LocalPlayer.Character.HumanoidRootPart:FindFirstChild("BodyVelocity") then
antifall = Instance.new("BodyVelocity", game.Players.LocalPlayer.Character.HumanoidRootPart)
antifall.Velocity = Vector3.new(0,0,0)
noclipE = game:GetService("RunService").Stepped:Connect(noclip)
tween:Play()
end
tween.Completed:Connect(function()
antifall:Destroy()
noclipE:Disconnect()
end)
end
Window:AddToggle({text = "Farm", flag = "toggle", state = false, callback = function(a)
aa = a
while aa do task.wait()
for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
if v:FindFirstChild("HumanoidRootPart") and v.Parent.Name == "enemyFolder" then
moveto(v.HumanoidRootPart.CFrame + Vector3.new(0,0,0), 100)
for i,v in pairs(game.Workspace:GetDescendants()) do
if v:IsA"Accessory" then
game:GetService("Players").LocalPlayer.Character:FindFirstChild(tostring(v.Name)).swing:FireServer()
end
end
end
end
end
end})
Window:AddFolder"Credits"
Window:AddLabel({text = "Made by Borntodie1 on v3rm"})
Library:Init()
ENJOY!