Links that are off-site aren’t prohibited on Roblox there fore I wouldn’t recommend trying this. If this applies to images then why not game mechanics?
⋮ Hyperlink
All though it’s against the rules, the way I would do it is as follows:
◇ Use a TextBox and disable the player from rewriting it but enable them to select the text.
There’s no perfect way to parse and display HTML through Gui components in Roblox, but this suggestion here is likely the best way you can achieve what you want:
You won’t get a solution closer to your requirement.
Regarding this:
Cookies are not shared between different domains, so other sites can’t get access to Roblox cookies (although theoretically it is possible to access cookies from other domains if you happen to own both of them).
Well well well, I have made my own work around. Using NodeJS to make an api endpoint, and the open library in NodeJS to open the webbrowser, I was able to make a fully working Hyperlink. Best part about it is unlike @EnvisionDev 's method, users won’t have to do anything but join the game!
Demo:
Before I even try to make the “only certain sites allowed” feature, I am waiting for a response from a staff member, anyone know the easiest way to get to them?
All you have to do is sign in to the rapid apis website, go to the link I sent you, and click the subscribe to test, it will list out some payment options (i chose the free one) click that, then go back to the code examples/the link I sent you and copy the url and headers
local HttpService = game:GetService("HttpService")
function getSearches(URL, HEADERS)
local req = HttpService:GetAsync(URL, false, HEADERS)
local searches = HttpService:DecodeJSON(req)
return searches
end
local searches = getSearches(urlFromTheScriptOnRapidApis, headersFromTheScriptFromRapidApis)