Advertisement
newtmannewt

Login

May 29th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.54 KB | None | 0 0
  1. local YSMH = Instance.new("ScreenGui")
  2. local Login = Instance.new("Frame")
  3. local WhiteList = Instance.new("TextBox")
  4. local check = Instance.new("TextBox")
  5. local Lable = Instance.new("TextLabel")
  6. local Pass = Instance.new("Frame")
  7. local ImageLabel = Instance.new("ImageLabel")
  8.  
  9. YSMH.Name = "YSMH"
  10. YSMH.Parent = game.CoreGui
  11.  
  12. Login.Name = "Login"
  13. Login.Parent = YSMH
  14. Login.BackgroundColor3 = Color3.new(0, 0, 0)
  15. Login.BackgroundTransparency = 0.40000000596046
  16. Login.BorderSizePixel = 0
  17. Login.Position = UDim2.new(0.120708533, 0, 0.387734473, 0)
  18. Login.Size = UDim2.new(0, 887, 0, 157)
  19.  
  20. WhiteList.Name = "WhiteList"
  21. WhiteList.Parent = Login
  22. WhiteList.BackgroundColor3 = Color3.new(0.52549, 0.52549, 0.52549)
  23. WhiteList.BackgroundTransparency = 0.40000000596046
  24. WhiteList.BorderColor3 = Color3.new(0.654902, 0.654902, 0.654902)
  25. WhiteList.Position = UDim2.new(0.0197294243, 0, 0.299363077, 0)
  26. WhiteList.Size = UDim2.new(0, 852, 0, 50)
  27. WhiteList.Font = Enum.Font.SourceSans
  28. WhiteList.Text = "Whitelist"
  29. WhiteList.TextColor3 = Color3.new(0, 0, 0)
  30. WhiteList.TextSize = 14
  31.  
  32. check.Name = "check"
  33. check.Parent = Login
  34. check.BackgroundColor3 = Color3.new(0.705882, 0.705882, 0.705882)
  35. check.BackgroundTransparency = 0.40000000596046
  36. check.BorderSizePixel = 0
  37. check.Position = UDim2.new(0.417700112, 0, 0.751592338, 0)
  38. check.Size = UDim2.new(0, 146, 0, 28)
  39. check.Font = Enum.Font.SourceSans
  40. check.Text = "Check"
  41. check.TextColor3 = Color3.new(0, 0, 0)
  42. check.TextSize = 14
  43.  
  44. Lable.Name = "Lable"
  45. Lable.Parent = Login
  46. Lable.BackgroundColor3 = Color3.new(0.580392, 0.580392, 0.580392)
  47. Lable.BackgroundTransparency = 0.40000000596046
  48. Lable.BorderSizePixel = 0
  49. Lable.Position = UDim2.new(0.387260407, 0, 0, 0)
  50. Lable.Size = UDim2.new(0, 200, 0, 36)
  51. Lable.Font = Enum.Font.SourceSans
  52. Lable.Text = "Whitelist Checker"
  53. Lable.TextColor3 = Color3.new(0, 0, 0)
  54. Lable.TextSize = 14
  55.  
  56. Pass.Name = "Pass"
  57. Pass.Parent = YSMH
  58. Pass.BackgroundColor3 = Color3.new(1, 1, 1)
  59. Pass.Position = UDim2.new(0.410683751, 0, 0.62750721, 0)
  60. Pass.Size = UDim2.new(0, 209, 0, 107)
  61. Pass.Visible = false
  62.  
  63. ImageLabel.Parent = Pass
  64. ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  65. ImageLabel.Size = UDim2.new(0, 209, 0, 107)
  66. ImageLabel.Image = "rbxassetid://54653911"
  67.  
  68. -- Scripts
  69. check.MouseButton1Click:connect(function()
  70. if WhiteList.Text == "Shfdis-dsjdaf-19231-312893" then
  71. Pass.Visible = true
  72. check.Visible = false
  73. end
  74. end)
  75.  
  76. check.MouseButton1Click:connect(function()
  77. if WhiteList.Text == else then
  78. Pass.Visible = false
  79. check.Visible = false
  80. end
  81. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement