Advertisement
Guest User

Xenon Login

a guest
Jan 21st, 2019
315
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.67 KB | None | 0 0
  1. local XenonLogin = Instance.new("ScreenGui")
  2. local Login = Instance.new("ImageLabel")
  3. local TopText = Instance.new("TextLabel")
  4. local LoginInfo = Instance.new("Frame")
  5. local Password = Instance.new("TextBox")
  6. local Username = Instance.new("TextBox")
  7. local LoginButton = Instance.new("TextButton")
  8. --Properties:
  9. XenonLogin.Name = "XenonLogin"
  10. XenonLogin.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  11. XenonLogin.ResetOnSpawn = false
  12.  
  13. Login.Name = "Login"
  14. Login.Parent = XenonLogin
  15. Login.BackgroundColor3 = Color3.new(1, 1, 1)
  16. Login.BackgroundTransparency = 1
  17. Login.BorderColor3 = Color3.new(1, 0, 0)
  18. Login.Position = UDim2.new(0.5, -150, 0.5, -200)
  19. Login.Size = UDim2.new(0, 300, 0, 400)
  20. Login.Image = "rbxassetid://2260429633"
  21. Login.ImageColor3 = Color3.new(0, 0, 0)
  22. Login.ScaleType = Enum.ScaleType.Slice
  23. Login.SliceCenter = Rect.new(12, 12, 13, 13)
  24.  
  25. TopText.Name = "TopText"
  26. TopText.Parent = Login
  27. TopText.BackgroundColor3 = Color3.new(0, 0, 0)
  28. TopText.BorderColor3 = Color3.new(1, 0, 0)
  29. TopText.Position = UDim2.new(0.166666552, 0, 0.0400000028, 0)
  30. TopText.Size = UDim2.new(0, 200, 0, 50)
  31. TopText.Font = Enum.Font.SourceSans
  32. TopText.Text = "Xenon V1.0"
  33. TopText.TextColor3 = Color3.new(1, 1, 1)
  34. TopText.TextScaled = true
  35. TopText.TextSize = 14
  36. TopText.TextWrapped = true
  37.  
  38. LoginInfo.Name = "LoginInfo"
  39. LoginInfo.Parent = Login
  40. LoginInfo.BackgroundColor3 = Color3.new(0, 0, 0)
  41. LoginInfo.BorderColor3 = Color3.new(1, 0, 0)
  42. LoginInfo.Position = UDim2.new(0.0230423994, 0, 0.207878798, 0)
  43. LoginInfo.Size = UDim2.new(0, 286, 0, 286)
  44.  
  45. Password.Name = "Password"
  46. Password.Parent = LoginInfo
  47. Password.BackgroundColor3 = Color3.new(0, 0, 0)
  48. Password.BorderColor3 = Color3.new(1, 0, 0)
  49. Password.Position = UDim2.new(0.245908931, 0, 0.405611783, 0)
  50. Password.Size = UDim2.new(0, 148, 0, 53)
  51. Password.Font = Enum.Font.SourceSans
  52. Password.PlaceholderText = "Enter Password"
  53. Password.Text = ""
  54. Password.TextColor3 = Color3.new(1, 1, 1)
  55. Password.TextScaled = true
  56. Password.TextSize = 14
  57. Password.TextWrapped = true
  58.  
  59. Username.Name = "Username"
  60. Username.Parent = LoginInfo
  61. Username.BackgroundColor3 = Color3.new(0, 0, 0)
  62. Username.BorderColor3 = Color3.new(1, 0, 0)
  63. Username.Position = UDim2.new(0.245908931, 0, 0.143374026, 0)
  64. Username.Size = UDim2.new(0, 148, 0, 53)
  65. Username.Font = Enum.Font.SourceSans
  66. Username.PlaceholderText = "Enter Username"
  67. Username.Text = ""
  68. Username.TextColor3 = Color3.new(1, 1, 1)
  69. Username.TextScaled = true
  70. Username.TextSize = 14
  71. Username.TextWrapped = true
  72.  
  73. LoginButton.Name = "LoginButton"
  74. LoginButton.Parent = Login
  75. LoginButton.BackgroundColor3 = Color3.new(0, 0, 0)
  76. LoginButton.BorderColor3 = Color3.new(1, 0, 0)
  77. LoginButton.Position = UDim2.new(0.312616795, 0, 0.798452079, 0)
  78. LoginButton.Size = UDim2.new(0, 112, 0, 40)
  79. LoginButton.Style = Enum.ButtonStyle.RobloxButtonDefault
  80. LoginButton.Font = Enum.Font.SourceSans
  81. LoginButton.Text = "Login"
  82. LoginButton.TextColor3 = Color3.new(1, 1, 1)
  83. LoginButton.TextSize = 20
  84. LoginButton.TextWrapped = true
  85.  
  86. --Solixo's functions
  87. Whitelist = {aseden = "key_1250025", bluhunter577 = "key_520500", ggdevo = "key_250100", thegamekiller = "key_2510250", Entity = "key_02985000"}
  88.  
  89. game:GetService("StarterGui"):SetCore("SendNotification", {
  90. Title = "Xenon";
  91. Text = "Welcome to Xenon, please enter your correct whitelist key and Username!";
  92. Duration = 15;})
  93.  
  94. function loadnew()
  95. loadstring(game:HttpGet("https://pastebin.com/raw/9WUanqUk", true))()
  96. end
  97.  
  98. --Actual Script
  99.  
  100. LoginButton.MouseButton1Click:Connect(function()
  101. for i,v in pairs(Whitelist) do
  102. if Username.Text == i then
  103. if Password.Text == v then
  104. loadnew()
  105. script.Parent.Parent:Destroy()
  106. end
  107. end
  108. end
  109. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement