browser = function(url, name)
local targetUrl = tostring(url or "about:blank")
local targetName = tostring(name or "Browser")
local info = {
presentationStyle = 2,
url = targetUrl,
title = targetName,
visible = true
}
local success, msg = pcall(function()
return game:GetService("HttpService"):JSONEncode(info)
end)
if success then
game:GetService("GuiService"):BroadcastNotification(msg, 20)
return true
else
return false
end
end