Would there be a way to do this?
code sample cuz not request, genuine question about service
1 | local Http = game:GetService( "HttpService" ) |
2 |
3 | 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:
1 | local function CreateProxy(STR) |
2 | return STR = STR:gsub( "roblox.com" , "rprxy.xyz" ) -- makes sure it requests through proxy. |
3 | end |
Next we'll make the main part of the script:
1 | local HttpService = game:GetService( "HttpService" ) |
2 | local AssetVAIDL = CreateProxy( "https://www.roblox.com/studio/plugins/info?assetId=AssetID" ) |
3 |
4 | -- replace AssetVAIDL variable with your assetID |
5 |
6 | HttpService:GetAsync(AssetVAIDL) |
Full Script:
1 | local function CreateProxy(STR) |
2 | return STR = STR:gsub( "roblox.com" , "rprxy.xyz" ) -- makes sure it requests through proxy. |
3 | end |
4 |
5 | local HttpService = game:GetService( "HttpService" ) |
6 | local AssetVAIDL = CreateProxy( "https://www.roblox.com/studio/plugins/info?assetId=AssetID" ) |
7 |
8 | HttpService:GetAsync(AssetVAIDL) |