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:
1 | local PointsTable = { |
2 | Vector 3. new( 10 , 10 , 10 ), |
3 | Vector 3. new( 20 , 20 , 20 ), |
4 | } |