x_320

epics

Mar 29th, 2020
453
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.65 KB | None | 0 0
  1. local DarkDevs = Instance.new("ScreenGui")
  2. local LoginFrame = Instance.new("Frame")
  3. local keyhere = Instance.new("TextBox")
  4. local TextLabel = Instance.new("TextLabel")
  5. local check = Instance.new("TextButton")
  6. local TextLabel_2 = Instance.new("TextLabel")
  7. DarkDevs.Name = "DarkDevs"
  8. DarkDevs.Parent = game.CoreGui
  9. LoginFrame.Name = "LoginFrame"
  10. LoginFrame.Parent = DarkDevs
  11. LoginFrame.BackgroundColor3 = Color3.new(0.301961, 0.301961, 0.301961)
  12. LoginFrame.BorderSizePixel = 0
  13. LoginFrame.Position = UDim2.new(0.349650353, 0, 0.327715367, 0)
  14. LoginFrame.Size = UDim2.new(0, 303, 0, 131)
  15. keyhere.Name = "keyhere"
  16. keyhere.Parent = LoginFrame
  17. keyhere.BackgroundColor3 = Color3.new(0.258824, 0.258824, 0.258824)
  18. keyhere.BorderSizePixel = 0
  19. keyhere.Position = UDim2.new(0.0528052822, 0, 0.312977135, 0)
  20. keyhere.Size = UDim2.new(0, 268, 0, 27)
  21. keyhere.Font = Enum.Font.Fantasy
  22. keyhere.Text = "Enter Your Key Here"
  23. keyhere.TextColor3 = Color3.new(1, 1, 1)
  24. keyhere.TextSize = 14
  25. TextLabel.Parent = LoginFrame
  26. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  27. TextLabel.BackgroundTransparency = 1
  28. TextLabel.BorderSizePixel = 0
  29. TextLabel.Position = UDim2.new(0.0528052822, 0, 0.770992339, 0)
  30. TextLabel.Size = UDim2.new(0, 268, 0, 30)
  31. TextLabel.Font = Enum.Font.Fantasy
  32. TextLabel.Text = "For Any More Info : DarkDevs.Pro"
  33. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  34. TextLabel.TextSize = 12
  35. check.Name = "check"
  36. check.Parent = LoginFrame
  37. check.BackgroundColor3 = Color3.new(0.258824, 0.258824, 0.258824)
  38. check.BorderSizePixel = 0
  39. check.Position = UDim2.new(0.297029704, 0, 0.572519064, 0)
  40. check.Size = UDim2.new(0, 120, 0, 19)
  41. check.Font = Enum.Font.SciFi
  42. check.Text = "Check"
  43. check.TextColor3 = Color3.new(1, 1, 1)
  44. check.TextSize = 14
  45. TextLabel_2.Parent = LoginFrame
  46. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  47. TextLabel_2.BackgroundTransparency = 1
  48. TextLabel_2.BorderSizePixel = 0
  49. TextLabel_2.Position = UDim2.new(0.0528052822, 0, -5.21540642e-08, 0)
  50. TextLabel_2.Size = UDim2.new(0, 268, 0, 30)
  51. TextLabel_2.Font = Enum.Font.Fantasy
  52. TextLabel_2.Text = "WHITELIST CHECKER GUI"
  53. TextLabel_2.TextColor3 = Color3.new(1, 0, 0.0156863)
  54. TextLabel_2.TextSize = 18
  55.  
  56. --SCRIPTS
  57.  
  58. -- EDIT BELOW!
  59.  
  60. check.MouseButton1Down:connect(function()
  61. local key = keyhere.Text -- the localplayer/client will put his key here
  62. local check = "https://pastebin.com/kBJBfdiJ" .. key
  63. if game:HttpGet(check) == "Whitelisted" then
  64. check.Text = "Whitelisted"
  65. wait(0.3)
  66. loadstring(game:HttpGet('https://pastebin.com/uG5QFdV9',true))() -- YOUR SCRIPT HERE AFTER WHITELIST FOR WHITELISTED USER.
  67. else
  68. check.Text = "Not Whitelisted"
  69. wait(0.2)
  70. while true do end
  71. LoginFrame.Visible = false
  72. end)
Add Comment
Please, Sign In to add comment