Cloudflare worker source code
export default { async fetch(request, env, ctx) { var path = new URL(request.url).pathname var subdomain = new URL(request.url).hostname .replace('proxy.rlnk.app',''); var res = await fetch(`https://${subdomain}roblox.com${path}`, { method: request.method }); return new Response(res.body,{ headers: res.headers }); }, };Deploy
Yep that's the whole source code