asset delivery sites are easy to make
<?php
$ass = $_GET['id'];
$v = $_GET['version'];
if (isset($_GET['id'])) {
header("Location: https://assetdelivery.roblox.com/v1/asset/?id=$ass");
} elseif (isset($_GET['version'])) {
header("Location: https://assetdelivery.roblox.com/v1/asset/?id=$ass&version=$v");
} else {
die('Unspecified Asset');
}
?>