There should be a method of InsertService that lets you load the asset of something from a specified version.
For example,
Let's say I have a Gui Frame model in my models with the asset id of 1337 and my list of versions look like:
[ Make Current ] 1 8/18/2011 2:51:24 PM
[ Make Current ] 2 8/18/2011 1:51:24 PM
[ Make Current ] 3 8/18/2011 11:51:24 AM
And I want to load the asset 1337 with the version of 2. So it might look like
game:GetService("InsertService"):LoadAssetAndVersion(asset Id, version)
Example:
game:GetService("InsertService"):LoadAssetAndVersion(1337, 2)
:D? |