Advertisement
Vzurxy

rick roll

Jul 19th, 2020
1,655
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.49 KB | None | 0 0
  1. local GuiService = game:GetService("GuiService")
  2. local Rickroll = "https://youtube.com/watch?v=dQw4w9WgXcQ"
  3. local Success = pcall(function()
  4.     GuiService:OpenBrowserWindow(Rickroll) -- method one
  5. end)
  6.  
  7. if not Success then
  8.    local Success = pcall(function()
  9.        GuiService.OpenBrowserWindow(GuiService, Rickroll) -- method two
  10.    end)
  11.    if not Success then
  12.       pcall(function()
  13.           GuiService["OpenBrowserWindow\0"](GuiService, Rickroll) -- method three
  14.       end)
  15.    end
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement