Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local GuiService = game:GetService("GuiService")
- local Rickroll = "https://youtube.com/watch?v=dQw4w9WgXcQ"
- local Success = pcall(function()
- GuiService:OpenBrowserWindow(Rickroll) -- method one
- end)
- if not Success then
- local Success = pcall(function()
- GuiService.OpenBrowserWindow(GuiService, Rickroll) -- method two
- end)
- if not Success then
- pcall(function()
- GuiService["OpenBrowserWindow\0"](GuiService, Rickroll) -- method three
- end)
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement