I'm making an AI and I can't seem to figure out where to start for path finding, Can anyone help?
You can start by creating an array which contains positions:
npc_points = { Vector3.new(1, 2, 3), Vector3.new(4, 2, 3) }
And then make a for loop that passes the positions of the npc =)