Advertisement
Guest User

Untitled

a guest
May 30th, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.14 KB | None | 0 0
  1. -- Farewell infortality
  2. -- Revamp by ImFrostic, Version 2.81
  3.  
  4. -- Objects
  5.  
  6. local cronix = Instance.new("ScreenGui")
  7. local login = Instance.new("Frame")
  8. local pass = Instance.new("TextBox")
  9. local user = Instance.new("TextBox")
  10. local title = Instance.new("TextLabel")
  11. local bar2 = Instance.new("Frame")
  12. local bar1 = Instance.new("Frame")
  13. local TextButton = Instance.new("TextButton")
  14. local cmdbar = Instance.new("Frame")
  15. local exe = Instance.new("TextButton")
  16. local wherecmds = Instance.new("TextBox")
  17.  
  18. -- Properties
  19.  
  20. cronix.Name = "cronix"
  21. cronix.Parent = game.CoreGui
  22.  
  23. login.Name = "login"
  24. login.Parent = cronix
  25. login.Active = true
  26. login.BackgroundColor3 = Color3.new(0, 0, 0)
  27. login.BorderSizePixel = 0
  28. login.Position = UDim2.new(0.601542413, 0, 0.205533594, 0)
  29. login.Selectable = true
  30. login.Size = UDim2.new(0, 276, 0, 320)
  31.  
  32. pass.Name = "pass"
  33. pass.Parent = login
  34. pass.BackgroundColor3 = Color3.new(0, 0, 0)
  35. pass.BorderColor3 = Color3.new(1, 1, 1)
  36. pass.BorderSizePixel = 2
  37. pass.Position = UDim2.new(0.137681156, 0, 0.554242909, 0)
  38. pass.Size = UDim2.new(0, 200, 0, 25)
  39. pass.Font = Enum.Font.Cartoon
  40. pass.PlaceholderColor3 = Color3.new(0.698039, 0.698039, 0.698039)
  41. pass.Text = "Password"
  42. pass.TextColor3 = Color3.new(1, 1, 1)
  43. pass.TextSize = 24
  44.  
  45. user.Name = "user"
  46. user.Parent = login
  47. user.BackgroundColor3 = Color3.new(0, 0, 0)
  48. user.BorderColor3 = Color3.new(1, 1, 1)
  49. user.BorderSizePixel = 2
  50. user.Position = UDim2.new(0.137681156, 0, 0.272992879, 0)
  51. user.Size = UDim2.new(0, 200, 0, 25)
  52. user.Font = Enum.Font.Cartoon
  53. user.Text = "Username"
  54. user.TextColor3 = Color3.new(1, 1, 1)
  55. user.TextSize = 24
  56.  
  57. title.Name = "title"
  58. title.Parent = login
  59. title.BackgroundColor3 = Color3.new(1, 1, 1)
  60. title.BackgroundTransparency = 1
  61. title.BorderSizePixel = 0
  62. title.Position = UDim2.new(0.137681156, 0, 0.109375, 0)
  63. title.Size = UDim2.new(0, 200, 0, 42)
  64. title.Font = Enum.Font.Cartoon
  65. title.Text = "Cronix Login"
  66. title.TextColor3 = Color3.new(1, 1, 1)
  67. title.TextSize = 30
  68.  
  69. bar2.Name = "bar2"
  70. bar2.Parent = login
  71. bar2.BackgroundColor3 = Color3.new(0.356863, 0.356863, 0.356863)
  72. bar2.BorderSizePixel = 0
  73. bar2.Position = UDim2.new(0, 0, 0.0437500365, 0)
  74. bar2.Size = UDim2.new(0, 276, 0, 14)
  75.  
  76. bar1.Name = "bar1"
  77. bar1.Parent = login
  78. bar1.BackgroundColor3 = Color3.new(0.458824, 0.458824, 0.458824)
  79. bar1.BorderSizePixel = 0
  80. bar1.Position = UDim2.new(0, 0, 4.84287739e-08, 0)
  81. bar1.Size = UDim2.new(0, 276, 0, 14)
  82.  
  83. TextButton.Parent = login
  84. TextButton.BackgroundColor3 = Color3.new(0, 0, 0)
  85. TextButton.BorderColor3 = Color3.new(1, 1, 1)
  86. TextButton.BorderSizePixel = 2
  87. TextButton.Position = UDim2.new(0.137681156, 0, 0.712499976, 0)
  88. TextButton.Size = UDim2.new(0, 200, 0, 50)
  89. TextButton.Font = Enum.Font.Cartoon
  90. TextButton.Text = "Submit"
  91. TextButton.TextColor3 = Color3.new(1, 1, 1)
  92. TextButton.TextSize = 34
  93. TextButton.TextWrapped = true
  94.  
  95. TextButton.MouseButton1Click:connect(function()
  96. if user.Text == "Neptie" and pass.Text == "Tienep" then
  97. login.Visible = false
  98. cmdbar.Visible = true
  99. end
  100. end)
  101.  
  102. cmdbar.Name = "cmdbar"
  103. cmdbar.Parent = cronix
  104. cmdbar.BackgroundColor3 = Color3.new(1, 1, 1)
  105. cmdbar.BackgroundTransparency = 0.40000000596046
  106. cmdbar.BorderSizePixel = 0
  107. cmdbar.Size = UDim2.new(0, 1366, 0, 43)
  108. cmdbar.Visible = false
  109.  
  110. exe.Name = "exe"
  111. exe.Parent = cmdbar
  112. exe.BackgroundColor3 = Color3.new(1, 1, 1)
  113. exe.BackgroundTransparency = 0.40000000596046
  114. exe.BorderSizePixel = 0
  115. exe.Position = UDim2.new(0.934099138, 0, 0.991957009, 0)
  116. exe.Size = UDim2.new(0, 90, 0, 16)
  117. exe.Font = Enum.Font.Cartoon
  118. exe.Text = "Execute cmd"
  119. exe.TextColor3 = Color3.new(0, 0, 0)
  120. exe.TextSize = 14
  121.  
  122. wherecmds.Name = "wherecmds"
  123. wherecmds.Parent = cmdbar
  124. wherecmds.BackgroundColor3 = Color3.new(1, 1, 1)
  125. wherecmds.BackgroundTransparency = 1
  126. wherecmds.BorderSizePixel = 0
  127. wherecmds.Size = UDim2.new(0, 1366, 0, 43)
  128. wherecmds.Font = Enum.Font.Cartoon
  129. wherecmds.PlaceholderColor3 = Color3.new(0.698039, 0.698039, 0.698039)
  130. wherecmds.Text = ""
  131. wherecmds.TextColor3 = Color3.new(0, 0, 0)
  132. wherecmds.TextScaled = true
  133. wherecmds.TextSize = 14
  134. wherecmds.TextWrapped = true
  135. wherecmds.TextXAlignment = Enum.TextXAlignment.Left
  136.  
  137. -- Scripts
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement