If I generate some values in a script, where would be a good place to store them for later use? The values are Vector3's (Positions), and I'm storing them to be used as a path for a humanoid character after they're generated.
If it's more than one value, store them in a table like so:
local PointsTable = { Vector3.new(10, 10, 10), Vector3.new(20, 20, 20), }