Advertisement
Ignas_Liutvinas_Rly

Untitled

Feb 12th, 2020
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.15 KB | None | 0 0
  1. --[[
  2. okcool
  3. soo your viewing teh source of the loader or launcher thingy
  4. but the actual game scripts are obfuscated soo
  5. nice try getitng that lmao
  6. --]]
  7.  
  8. local launcher = function(gameName,launchScript)
  9. local launchScript = launchScript or function() end
  10.  
  11. local ok = Instance.new("ScreenGui")
  12. local Launcher = Instance.new("Frame")
  13. local okbuster = Instance.new("Frame")
  14. local idklol = Instance.new("TextLabel")
  15. local GameName = Instance.new("TextLabel")
  16. local Launch = Instance.new("TextButton")
  17. local thumbnail = Instance.new("ImageLabel")
  18.  
  19. ok.Name = math.random(1,999999)
  20. ok.Parent = game.Players.LocalPlayer.PlayerGui
  21.  
  22. Launcher.Name = "Launcher"
  23. Launcher.Parent = ok
  24. Launcher.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  25. Launcher.BorderSizePixel = 0
  26. Launcher.ClipsDescendants = true
  27. Launcher.Position = UDim2.new(0.407284766, 0, 0.405144691, 0)
  28. Launcher.Size = UDim2.new(0, 252, 0, 117)
  29.  
  30. okbuster.Name = "okbuster"
  31. okbuster.Parent = Launcher
  32. okbuster.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  33. okbuster.BackgroundTransparency = 1
  34. okbuster.Position = UDim2.new(0, 0, 1, 0)
  35. okbuster.Size = UDim2.new(1, 0, 1, 0)
  36.  
  37. idklol.Name = "idklol"
  38. idklol.Parent = okbuster
  39. idklol.BackgroundColor3 = Color3.new(1, 1, 1)
  40. idklol.BackgroundTransparency = 1
  41. idklol.Position = UDim2.new(0, 0, 0.108717948, 0)
  42. idklol.Size = UDim2.new(0, 252, 0, 22)
  43. idklol.Font = Enum.Font.GothamBold
  44. idklol.Text = "Detected Game :"
  45. idklol.TextColor3 = Color3.new(1, 1, 1)
  46. idklol.TextScaled = true
  47. idklol.TextSize = 32
  48. idklol.TextWrapped = true
  49.  
  50. GameName.Name = "GameName"
  51. GameName.Parent = okbuster
  52. GameName.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  53. GameName.BackgroundTransparency = 1
  54. GameName.Position = UDim2.new(0, 0, 0.350427359, 0)
  55. GameName.Size = UDim2.new(0, 252, 0, 42)
  56. GameName.Font = Enum.Font.SourceSansBold
  57. GameName.Text = gameName
  58. GameName.TextColor3 = Color3.new(1, 0.666667, 0)
  59. GameName.TextScaled = true
  60. GameName.TextSize = 14
  61. GameName.TextWrapped = true
  62.  
  63. Launch.Name = "Launch"
  64. Launch.Parent = okbuster
  65. Launch.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  66. Launch.BorderSizePixel = 0
  67. Launch.Position = UDim2.new(0.190476194, 0, 0.709401727, 0)
  68. Launch.Size = UDim2.new(0, 155, 0, 27)
  69. Launch.Font = Enum.Font.Code
  70. Launch.Text = "Launch GUNHUB"
  71. Launch.TextColor3 = Color3.new(1, 1, 1)
  72. Launch.TextScaled = true
  73. Launch.TextSize = 14
  74. Launch.TextWrapped = true
  75. Launch.MouseButton1Click:connect(function()
  76. launchScript()
  77. okbuster:TweenPosition(UDim2.new(0,0,1,0),"Out","Quad",0.3,true)
  78. wait(1)
  79. Launcher:TweenPosition(UDim2.new(-1.407,0,0.405,0),"In","Quad",0.5,true)
  80. wait(1)
  81. ok:remove()
  82. end)
  83.  
  84. thumbnail.Name = "thumbnail"
  85. thumbnail.Parent = ok
  86. thumbnail.BackgroundColor3 = Color3.new(1, 1, 1)
  87. thumbnail.BorderSizePixel = 0
  88. thumbnail.Position = UDim2.new(0.876305044, 0, 0.79903537, 0)
  89. thumbnail.Size = UDim2.new(0, 170, 0, 125)
  90. thumbnail.Image = "http://www.roblox.com/asset/?id=4682966850"
  91. thumbnail.ScaleType = Enum.ScaleType.Crop
  92.  
  93. wait(2)
  94.  
  95. okbuster:TweenPosition(UDim2.new(0,0,0,0),"Out","Quad",0.3,true)
  96. end
  97.  
  98. if game.PlaceId == 155615604 then
  99. launcher("ok",function()
  100. print("works")
  101. end)
  102. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement