Advertisement
QueenFake

Untitled

Jan 5th, 2020
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.75 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 = "-"
  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.  
  46. check.MouseButton1Down:connect(function()
  47. local key = keyhere.Text
  48. local userid = game:GetService('Players').LocalPlayer.UserId
  49. local url = "https://whitescript.000webhostapp.com/WhitelistTEST/index.php?key="..key.."&user="..userid
  50.  
  51. if game:HttpGet(url) == "~ True ~" then
  52. check.Text = "Whitelisted"
  53. wait(1)
  54. local Username = "IZ_TaeKung"
  55. if game.Players.LocalPlayer.Name == Username then
  56. loadstring(game:HttpGet("https://pastebin.com/raw/Rn6vd1vF"))()
  57. else
  58. game.Players.LocalPlayer:Kick("Not Whitelisted")
  59. end
  60. else
  61. --// Not Whitelisted Script Here
  62. check.Text = " ~ Not Whitelisted ~"
  63. wait(1)
  64. LoginFrame.Visible = false
  65. end
  66. end)
  67.  
  68. TextLabel_2.Parent = LoginFrame
  69. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  70. TextLabel_2.BackgroundTransparency = 1
  71. TextLabel_2.BorderSizePixel = 0
  72. TextLabel_2.Position = UDim2.new(0.0528052822, 0, -5.21540642e-08, 0)
  73. TextLabel_2.Size = UDim2.new(0, 268, 0, 30)
  74. TextLabel_2.Font = Enum.Font.Fantasy
  75. TextLabel_2.Text = "WHITELIST CHECKER"
  76. TextLabel_2.TextColor3 = Color3.new(1, 0, 0.0156863)
  77. TextLabel_2.TextSize = 18
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement