browser=game:service("BrowserService") function executejs(code) browser:ExecuteJavaScript(code) end function openlink(x) if string.sub(x, 1, 7) ~= "http://" and string.sub(x, 1, 8) ~= "https://" then x = "https://"..x end browser:OpenBrowserWindow("https://www.roblox.com") task.wait(1) executejs("window.location = '"..x.."';") end openlink("google.com")