Roblox recently migrated everything to the Creator Dashboard and did not add a section for downloading a Previous Place Version. How can I download a Previous Place Version?
1 Like
You can either use the Roblox API, or you can go into game settings > places in studio to open a place version (save it if you need to).
1 Like
I recently whipped up a bookmarklet to do just that.
javascript:(function(){const host = "https://assetdelivery.roblox.com/v1/asset/"; let asset = window.prompt("Asset ID: "); let version = window.prompt("Version #: "); const url = host+"?id=" + asset.toString() + "&version="+ version.toString() ; window.open(url);})();
You make a browser bookmark and put this code in the url field.
Hope this proves useful.
Do note that you will have to manually append the .rbxl
file extension to the end of each downloaded file. Additionally, pop-up blocker might block this depending on where you run it.
Lastly, Iām not a JS dev, and I take pride in saying that.
Alternatively, you can manually use this endpoint: https://assetdelivery.roblox.com/v1/asset/?id=š¤°š¾&version=š³š¾āāļø
Replace the emojis with the ID and version respectively.
11 Likes
Worked well for me, thank you so much!
2 Likes