farm2 = true while farm2 do wait() pcall(function() fireclickdetector(game:GetService("Workspace").Map["Job Board"]["Click Part"].ClickDetector) wait() if game.Players.LocalPlayer.PlayerGui.Bars.Quest.Description.Text == "Talk to the NPC" then for i,v in pairs(game:GetService("Workspace").Folders.QuestLocations.NPC:GetChildren()) do if v:IsA("Model") then wait(10) fireclickdetector(v.CD.ClickDetector) wait() end end elseif game.Players.LocalPlayer.PlayerGui.Bars.Quest.Description.Text == "Bring this mail over to the location." then for i2,v2 in pairs(game:GetService("Workspace").Folders.QuestLocations.Delivery:GetChildren()) do if v2:IsA("Part") and v2:FindFirstChild("QuestMarker") then wait(10) game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v2.CFrame wait() end end elseif game.Players.LocalPlayer.PlayerGui.Bars.Quest.Description.Text == "Find Jr Ali's missing gloves" then for i3,v3 in pairs(game:GetService("Workspace").Folders.QuestLocations.Gloves:GetChildren()) do if v3:IsA("Part") and v3:FindFirstChild("QuestMarker") then wait(10) game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v3.CFrame wait() end end end end) end