Would there be a way to do this?
code sample cuz not request, genuine question about service
local Http = game:GetService("HttpService") Http:GetAsync("asset id plugin thingy link")
Yes, quite simple infact:
First, lets make a function to bypass the roblox website HttpService block using rprxy.xyz:
local function CreateProxy(STR) return STR = STR:gsub("roblox.com", "rprxy.xyz") -- makes sure it requests through proxy. end
Next we'll make the main part of the script:
local HttpService = game:GetService("HttpService") local AssetVAIDL = CreateProxy("https://www.roblox.com/studio/plugins/info?assetId=AssetID") -- replace AssetVAIDL variable with your assetID HttpService:GetAsync(AssetVAIDL)
Full Script:
local function CreateProxy(STR) return STR = STR:gsub("roblox.com", "rprxy.xyz") -- makes sure it requests through proxy. end local HttpService = game:GetService("HttpService") local AssetVAIDL = CreateProxy("https://www.roblox.com/studio/plugins/info?assetId=AssetID") HttpService:GetAsync(AssetVAIDL)