CuckLord

LOGIN

Jul 2nd, 2020
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.08 KB | None | 0 0
  1.  
  2. local LogMeIn = Instance.new("ScreenGui")
  3. local Frame = Instance.new("Frame")
  4. local title = Instance.new("TextLabel")
  5. local putyourkeyhere = Instance.new("TextBox")
  6. local enter = Instance.new("TextButton")
  7. local discord = Instance.new("TextLabel")
  8. local key = Instance.new("TextLabel")
  9.  
  10.  
  11.  
  12. LogMeIn.Name = "LogMeIn"
  13. LogMeIn.Parent = game.CoreGui
  14. LogMeIn.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  15.  
  16. Frame.Parent = LogMeIn
  17. Frame.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  18. Frame.Position = UDim2.new(0.160970226, 0, 0.367435157, 0)
  19. Frame.Size = UDim2.new(0, 521, 0, 257)
  20.  
  21. title.Name = "title"
  22. title.Parent = Frame
  23. title.BackgroundColor3 = Color3.fromRGB(0, 0, 147)
  24. title.Size = UDim2.new(0, 521, 0, 53)
  25. title.Font = Enum.Font.SourceSans
  26. title.Text = "1nferious Cheats GUI Login"
  27. title.TextColor3 = Color3.fromRGB(255, 255, 255)
  28. title.TextScaled = true
  29. title.TextSize = 14.000
  30. title.TextWrapped = true
  31.  
  32. putyourkeyhere.Name = "putyourkeyhere"
  33. putyourkeyhere.Parent = Frame
  34. putyourkeyhere.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  35. putyourkeyhere.Position = UDim2.new(-2.92875022e-08, 0, 0.400778204, 0)
  36. putyourkeyhere.Size = UDim2.new(0, 242, 0, 50)
  37. putyourkeyhere.Font = Enum.Font.SourceSans
  38. putyourkeyhere.Text = "Enter Key Here"
  39. putyourkeyhere.TextColor3 = Color3.fromRGB(255, 255, 255)
  40. putyourkeyhere.TextScaled = true
  41. putyourkeyhere.TextSize = 14.000
  42. putyourkeyhere.TextWrapped = true
  43.  
  44. enter.Name = "enter"
  45. enter.Parent = Frame
  46. enter.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  47. enter.Position = UDim2.new(0.527831078, 0, 0.400778204, 0)
  48. enter.Size = UDim2.new(0, 246, 0, 50)
  49. enter.Font = Enum.Font.SourceSans
  50. enter.Text = "Verify Key"
  51. enter.TextColor3 = Color3.fromRGB(255, 255, 255)
  52. enter.TextScaled = true
  53. enter.TextSize = 14.000
  54. enter.TextWrapped = true
  55. enter.MouseButton1Down:connect(function()
  56. local key = putyourkeyhere.Text
  57. local userid = game:GetService('Players').LocalPlayer.UserId
  58. local url = "https://immobile-volumes.000webhostapp.com/index.php?key="..key.."&user="..userid
  59.  
  60. if game:HttpGet(url) == "~ True ~" then
  61. enter.Text = "Whitelisted"
  62. wait(1)
  63. loadstring(game:HttpGet("https://immobile-volumes.000webhostapp.com/script.lua",true))()
  64. else
  65. --// Not Whitelisted Script Here
  66. enter.Text = " ~ Not Whitelisted ~"
  67. wait(1)
  68. Frame.Visible = false
  69. end
  70. end)
  71.  
  72. discord.Name = "discord"
  73. discord.Parent = Frame
  74. discord.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  75. discord.Position = UDim2.new(0.510556638, 0, 0.805447459, 0)
  76. discord.Size = UDim2.new(0, 255, 0, 50)
  77. discord.Font = Enum.Font.SourceSans
  78. discord.Text = "Join Our Discord: https://discord.gg/BKzzmv7"
  79. discord.TextColor3 = Color3.fromRGB(255, 255, 255)
  80. discord.TextScaled = true
  81. discord.TextSize = 14.000
  82. discord.TextWrapped = true
  83.  
  84. key.Name = "key"
  85. key.Parent = Frame
  86. key.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
  87. key.Position = UDim2.new(0, 0, 0.805447459, 0)
  88. key.Size = UDim2.new(0, 266, 0, 50)
  89. key.Font = Enum.Font.SourceSans
  90. key.Text = "Join Our Discord For Key"
  91. key.TextColor3 = Color3.fromRGB(255, 255, 255)
  92. key.TextScaled = true
  93. key.TextSize = 14.000
  94. key.TextWrapped = true
Add Comment
Please, Sign In to add comment