after the main asset delivery site epicgamers.xyz shut down. there aren't many popular asset delivery sites left to choose from. so if anyone know of working sites that redirects assets, please name them in the comment section under:
A multi-version ROBLOX client launcher built to allow the user to run LAN and Internet servers. · By
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');
}
?>