local points = {
{x = -1783, y = 260, z = 3},
{x = 1900, y = 1054, z = 3},
{x = 207, y = 435, z = 3}
}
newTask(function()
for _, point in ipairs(points) do
coordStart(point.x, point.y, point.z, 25, 100, false)
while (isCoordActive()) do
wait(100)
end
end
end)