ExoticXOwner

Untitled

Oct 15th, 2020 (edited)
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.33 KB | None | 0 0
  1. local testing = false
  2. --THIS IS TESTING ONLY WHEN YOU DISTRIBUTE CHANGE IT FROM true to false OTHERWISE IT WILL BAN YOU
  3. --also it will be a draggable gui when you execute just maybe not in testing
  4. local Screen = Instance.new("ScreenGui", nil)
  5. if testing == true then
  6. Screen.Parent = game.Players.LocalPlayer.PlayerGui
  7. else
  8. Screen.Parent = game.CoreGui
  9. end
  10. local unlocked = false
  11.  
  12. local Background = Instance.new("Frame", Screen)
  13. Background.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  14. Background.BorderSizePixel = 0
  15. Background.Position = UDim2.new(0.5, 0, 0.505, 0)
  16. Background.Size = UDim2.new(0, 333, 0, 222)
  17.  
  18. local divider = Instance.new("Frame", Background)
  19. divider.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  20. divider.BorderColor3 = Color3.fromRGB(255, 85, 0)
  21. divider.BorderSizePixel = 1
  22. divider.Position = UDim2.new(0.036, 0, 0.149, 0)
  23. divider.Size = UDim2.new(0, 307, 0, 0)
  24.  
  25. local inner = Instance.new("Frame", Background)
  26. inner.BackgroundColor3 = Color3.fromRGB(47, 47, 47)
  27. inner.BorderColor3 = Color3.fromRGB(27, 42, 53)
  28. inner.Position = UDim2.new(0.201, 0, 0.183, 0)
  29. inner.Size = UDim2.new(0, 198, 0, 140)
  30. local innercorner = Instance.new("UICorner", inner)
  31. innercorner.CornerRadius = UDim.new(0.15, 0)
  32.  
  33. local top = Instance.new("ImageLabel", Background)
  34. top.BackgroundTransparency = 1
  35. top.BorderColor3 = Color3.fromRGB(27, 42, 53)
  36. top.Position = UDim2.new(0, 0, 0, -11)
  37. top.Size = UDim2.new(0, 333, 0, 22)
  38. top.Image = "rbxassetid://3570695787"
  39. top.ImageColor3 = Color3.fromRGB(48, 48, 48)
  40. top.ScaleType = "Slice"
  41. top.SliceCenter = Rect.new(100,100,100,100)
  42. top.SliceScale = 0.11
  43. local topconstraint = Instance.new("UIAspectRatioConstraint", top)
  44. topconstraint.AspectRatio = 15.136
  45.  
  46. local left = Instance.new("ImageLabel", Background)
  47. left.BackgroundTransparency = 1
  48. left.BorderColor3 = Color3.fromRGB(27, 42, 53)
  49. left.Position = UDim2.new(-0.005, 0, -0.052, 0)
  50. left.Size = UDim2.new(0, 13, 0, 232)
  51. left.Image = "rbxassetid://3570695787"
  52. left.ImageColor3 = Color3.fromRGB(48, 48, 48)
  53. left.ScaleType = "Slice"
  54. left.SliceCenter = Rect.new(100,100,100,100)
  55. left.SliceScale = 0.11
  56.  
  57. local bottom = Instance.new("ImageLabel", Background)
  58. bottom.BackgroundTransparency = 1
  59. bottom.BorderColor3 = Color3.fromRGB(27, 42, 53)
  60. bottom.Position = UDim2.new(0, -1, 0, 199)
  61. bottom.Size = UDim2.new(0, 332, 0, 22)
  62. bottom.Image = "rbxassetid://3570695787"
  63. bottom.ImageColor3 = Color3.fromRGB(48, 48, 48)
  64. bottom.ScaleType = "Slice"
  65. bottom.SliceCenter = Rect.new(100,100,100,100)
  66. bottom.SliceScale = 0.11
  67. local bottomconstraint = Instance.new("UIAspectRatioConstraint", bottom)
  68. bottomconstraint.AspectRatio = 15.136
  69.  
  70. local right = Instance.new("ImageLabel", Background)
  71. right.BackgroundTransparency = 1
  72. right.BorderColor3 = Color3.fromRGB(27, 42, 53)
  73. right.Position = UDim2.new(0.961, 0, -0.048, 0)
  74. right.Size = UDim2.new(0, 13, 0, 232)
  75. right.Image = "rbxassetid://3570695787"
  76. right.ImageColor3 = Color3.fromRGB(48, 48, 48)
  77. right.ScaleType = "Slice"
  78. right.SliceCenter = Rect.new(100,100,100,100)
  79. right.SliceScale = 0.11
  80.  
  81.  
  82. local keysys = Instance.new("Frame", Screen)
  83. keysys.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
  84. keysys.BorderColor3 = Color3.fromRGB(27, 42, 53)
  85. keysys.BorderSizePixel = 2
  86. keysys.Position = UDim2.new(0.127, 0, 0.054, 0)
  87. keysys.Size = UDim2.new(0, 439, 0, 194)
  88.  
  89. local label = Instance.new("TextLabel", keysys)
  90. label.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
  91. label.BorderColor3 = Color3.fromRGB(255, 85, 0)
  92. label.Size = UDim2.new(0, 440, 0, 50)
  93. label.Font = Enum.Font.ArialBold
  94. label.Text = "Key System"
  95. label.TextSize = 20
  96. label.TextColor3 = Color3.fromRGB(255, 255, 255)
  97.  
  98. local keybox = Instance.new("TextBox", keysys)
  99. keybox.BackgroundColor3 = Color3.fromRGB(60, 60, 60)
  100. keybox.BorderColor3 = Color3.fromRGB(27, 42, 53)
  101. keybox.BorderMode = "Outline"
  102. keybox.Position = UDim2.new(0, 0, 0.365, 0)
  103. keybox.Size = UDim2.new(0, 439, 0, 50)
  104. keybox.PlaceholderColor3 = Color3.fromRGB(112, 112, 112)
  105. keybox.PlaceholderText = "Key Here"
  106. keybox.TextSize = 17
  107. keybox.Text = ""
  108. keybox.BorderSizePixel = 2
  109.  
  110. local keybutton1 = Instance.new("TextButton", keysys)
  111. keybutton1.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
  112. keybutton1.BorderColor3 = Color3.fromRGB(27, 42, 53)
  113. keybutton1.TextColor3 = Color3.fromRGB(255, 255, 255)
  114. keybutton1.BorderMode = "Outline"
  115. keybutton1.Position = UDim2.new(0, 0, 0.749, 0)
  116. keybutton1.Size = UDim2.new(0, 197, 0, 48)
  117. keybutton1.Font = Enum.Font.Fantasy
  118. keybutton1.Text = "Submit"
  119. keybutton1.TextSize = 20
  120.  
  121.  
  122. local keybutton2 = Instance.new("TextButton", keysys)
  123. keybutton2.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
  124. keybutton2.BorderColor3 = Color3.fromRGB(27, 42, 53)
  125. keybutton2.TextColor3 = Color3.fromRGB(255, 255, 255)
  126. keybutton2.BorderMode = "Outline"
  127. keybutton2.Position = UDim2.new(0.55, 0, 0.749, 0)
  128. keybutton2.Size = UDim2.new(0, 197, 0, 48)
  129. keybutton2.Font = Enum.Font.Fantasy
  130. keybutton2.Text = "Get Key"
  131. keybutton2.TextSize = 20
  132.  
  133. keybutton2.MouseButton1Down:connect(function()
  134. setclipboard("https://direct-link.net/166394/Key")
  135. keybutton2.Text = "Copied to clipboard!"
  136. wait(1)
  137. keybutton2.Text = "Get Key"
  138. end)
  139.  
  140. keybutton1.MouseButton1Down:connect(function()
  141. if string.find(game:HttpGet("https://pastebin.com/raw/VTX9vG3W"), keybox.Text) and keybox.Text ~= "" then
  142. unlocked = true
  143. end
  144. end)
  145. repeat wait() until unlocked == true
  146. keysys:Destroy()
  147.  
Add Comment
Please, Sign In to add comment