Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- game:GetService("StarterGui"):SetCore("SendNotification", {Title = "FunTratOr On V3rm", Text = "The UI Is Still WIP!"})
- local new = Instance.new("ScreenGui")
- local Main = Instance.new("Frame")
- local frame = Instance.new("Frame")
- local farm = Instance.new("TextButton")
- local name = Instance.new("TextBox")
- local areaname = Instance.new("TextBox")
- local TextLabel = Instance.new("TextLabel")
- local TextLabel_2 = Instance.new("TextLabel")
- new.Name = "new"
- new.Parent = game.CoreGui
- Main.Name = "Main"
- Main.Active = true
- Main.Draggable = true
- Main.Parent = new
- Main.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
- Main.BorderColor3 = Color3.new(0.478431, 0.478431, 0.478431)
- Main.Position = UDim2.new(0.324974805, 0, 0.397578269, 0)
- Main.Size = UDim2.new(0, 232, 0, 153)
- frame.Name = "frame"
- frame.Parent = Main
- frame.BackgroundColor3 = Color3.new(0.133333, 0.133333, 0.133333)
- frame.BorderColor3 = Color3.new(0.478431, 0.478431, 0.478431)
- frame.Position = UDim2.new(0.0246580709, 0, 0.196078435, 0)
- frame.Size = UDim2.new(0, 218, 0, 114)
- farm.Name = "farm"
- farm.Parent = frame
- farm.BackgroundColor3 = Color3.new(0.133333, 0.133333, 0.133333)
- farm.BorderColor3 = Color3.new(0.258824, 0.423529, 0.0117647)
- farm.Position = UDim2.new(0.0366972461, 0, 0.612621665, 0)
- farm.Size = UDim2.new(0, 202, 0, 33)
- farm.Font = Enum.Font.Fantasy
- farm.Text = "Auto Farm | All Mobs"
- farm.TextColor3 = Color3.new(1, 1, 1)
- farm.TextSize = 14
- farm.TextStrokeColor3 = Color3.new(0.67451, 0, 0.00784314)
- farm.TextWrapped = true
- name.Name = "name"
- name.Parent = frame
- name.BackgroundColor3 = Color3.new(0.133333, 0.133333, 0.133333)
- name.BorderColor3 = Color3.new(0.427451, 0.0235294, 0.027451)
- name.Position = UDim2.new(0.0366972461, 0, 0.0948275849, 0)
- name.Size = UDim2.new(0, 202, 0, 19)
- name.Font = Enum.Font.Gotham
- name.Text = "MOB NAME HERE"
- name.TextColor3 = Color3.new(1, 1, 1)
- name.TextSize = 14
- name.TextStrokeColor3 = Color3.new(1, 1, 1)
- areaname.Name = "areaname"
- areaname.Parent = frame
- areaname.BackgroundColor3 = Color3.new(0.133333, 0.133333, 0.133333)
- areaname.BorderColor3 = Color3.new(0.427451, 0.0235294, 0.027451)
- areaname.Position = UDim2.new(0.0366972461, 0, 0.327586204, 0)
- areaname.Size = UDim2.new(0, 202, 0, 19)
- areaname.Font = Enum.Font.Gotham
- areaname.Text = "AREA NAME HERE"
- areaname.TextColor3 = Color3.new(1, 1, 1)
- areaname.TextSize = 14
- areaname.TextStrokeColor3 = Color3.new(1, 1, 1)
- TextLabel.Parent = Main
- TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
- TextLabel.BackgroundTransparency = 1
- TextLabel.Position = UDim2.new(0.0488293022, 0, 0, 0)
- TextLabel.Size = UDim2.new(0, 97, 0, 30)
- TextLabel.Font = Enum.Font.GothamSemibold
- TextLabel.Text = "D"
- TextLabel.TextColor3 = Color3.new(0.729412, 0, 0.0117647)
- TextLabel.TextSize = 18
- TextLabel.TextXAlignment = Enum.TextXAlignment.Left
- TextLabel_2.Parent = Main
- TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
- TextLabel_2.BackgroundTransparency = 1
- TextLabel_2.Position = UDim2.new(0.12240614, 0, 0, 0)
- TextLabel_2.Size = UDim2.new(0, 127, 0, 30)
- TextLabel_2.Font = Enum.Font.GothamSemibold
- TextLabel_2.Text = "a r k D e v s"
- TextLabel_2.TextColor3 = Color3.new(0.729412, 0.729412, 0.729412)
- TextLabel_2.TextSize = 18
- TextLabel_2.TextXAlignment = Enum.TextXAlignment.Left
- farm.MouseButton1Down:connect(function()
- local target; local mob = {}; local plr = game.Players.LocalPlayer
- while wait() do
- plr.Character.HumanoidRootPart.Anchored = false
- mob = game.Workspace.Areas[areaname.Text]['NPCs']:GetChildren()
- for i,v in pairs(mob) do
- if v.Name == name.text then
- target = mob[i]
- wait()
- repeat
- plr.Character.HumanoidRootPart.CFrame = CFrame.new(v.HumanoidRootPart.Position + Vector3.new(0,1,5),v.HumanoidRootPart.Position)
- local Arg1 = "Click"
- local Arg2 =
- {
- }
- local Path = game:GetService("ReplicatedStorage").Events.Npc
- Path:FireServer(Arg1, Arg2) -- The Most Iconic Move That Can't Kill An ANT Itself!!!
- wait()
- until v.Humanoid.Health == 0
- end
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement