Advertisement
Revo1839

HELP

Jun 22nd, 2018
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.12 KB | None | 0 0
  1. -- Farewell infortality
  2. -- Revamp by ImFrostic, Version 2.81
  3.  
  4. -- Objects
  5.  
  6. local Revo = Instance.new("ScreenGui")
  7. local Login = Instance.new("Frame")
  8. local Design = Instance.new("Frame")
  9. local LoginGuiName = Instance.new("TextLabel")
  10. local UsernameLabel = Instance.new("TextLabel")
  11. local UsernameTextBox = Instance.new("TextBox")
  12. local PasswordLabel = Instance.new("TextLabel")
  13. local PasswordTextBox = Instance.new("TextBox")
  14. local LoginButton = Instance.new("TextButton")
  15.  
  16. -- Properties
  17.  
  18. Revo.Name = "Revo"
  19. Revo.Parent = game.CoreGui
  20.  
  21. Login.Name = "Login"
  22. Login.Parent = Revo
  23. Login.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  24. Login.BorderColor3 = Color3.new(0, 0, 0)
  25. Login.Position = UDim2.new(0.18640992, 0, 0.17670688, 0)
  26. Login.Size = UDim2.new(0, 530, 0, 285)
  27.  
  28. Design.Name = "Design"
  29. Design.Parent = Login
  30. Design.BackgroundColor3 = Color3.new(0, 0, 0)
  31. Design.Size = UDim2.new(0, 530, 0, 29)
  32.  
  33. LoginGuiName.Name = "LoginGuiName"
  34. LoginGuiName.Parent = Login
  35. LoginGuiName.BackgroundColor3 = Color3.new(1, 1, 1)
  36. LoginGuiName.BackgroundTransparency = 1
  37. LoginGuiName.Position = UDim2.new(0.326415092, 0, 0, 0)
  38. LoginGuiName.Size = UDim2.new(0, 200, 0, 29)
  39. LoginGuiName.Font = Enum.Font.SciFi
  40. LoginGuiName.Text = "Login"
  41. LoginGuiName.TextColor3 = Color3.new(1, 1, 1)
  42. LoginGuiName.TextScaled = true
  43. LoginGuiName.TextSize = 14
  44. LoginGuiName.TextWrapped = true
  45.  
  46. UsernameLabel.Name = "UsernameLabel"
  47. UsernameLabel.Parent = Login
  48. UsernameLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  49. UsernameLabel.BackgroundTransparency = 1
  50. UsernameLabel.Position = UDim2.new(0, 0, 0.24501498, 0)
  51. UsernameLabel.Size = UDim2.new(0, 173, 0, 25)
  52. UsernameLabel.Font = Enum.Font.SourceSans
  53. UsernameLabel.Text = "Username :"
  54. UsernameLabel.TextColor3 = Color3.new(1, 1, 1)
  55. UsernameLabel.TextScaled = true
  56. UsernameLabel.TextSize = 14
  57. UsernameLabel.TextWrapped = true
  58.  
  59. UsernameTextBox.Name = "UsernameTextBox"
  60. UsernameTextBox.Parent = Login
  61. UsernameTextBox.BackgroundColor3 = Color3.new(1, 1, 1)
  62. UsernameTextBox.BackgroundTransparency = 1
  63. UsernameTextBox.BorderColor3 = Color3.new(1, 1, 1)
  64. UsernameTextBox.Position = UDim2.new(0.283018857, 0, 0.245614037, 0)
  65. UsernameTextBox.Size = UDim2.new(0, 338, 0, 25)
  66. UsernameTextBox.Font = Enum.Font.SciFi
  67. UsernameTextBox.Text = "Enter your username"
  68. UsernameTextBox.TextColor3 = Color3.new(1, 1, 1)
  69. UsernameTextBox.TextScaled = true
  70. UsernameTextBox.TextSize = 14
  71. UsernameTextBox.TextWrapped = true
  72.  
  73. PasswordLabel.Name = "PasswordLabel"
  74. PasswordLabel.Parent = Login
  75. PasswordLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  76. PasswordLabel.BackgroundTransparency = 1
  77. PasswordLabel.Position = UDim2.new(0, 0, 0.487605214, 0)
  78. PasswordLabel.Size = UDim2.new(0, 173, 0, 25)
  79. PasswordLabel.Font = Enum.Font.SourceSans
  80. PasswordLabel.Text = "Password :"
  81. PasswordLabel.TextColor3 = Color3.new(1, 1, 1)
  82. PasswordLabel.TextScaled = true
  83. PasswordLabel.TextSize = 14
  84. PasswordLabel.TextWrapped = true
  85.  
  86. PasswordTextBox.Name = "PasswordTextBox"
  87. PasswordTextBox.Parent = Login
  88. PasswordTextBox.BackgroundColor3 = Color3.new(1, 1, 1)
  89. PasswordTextBox.BackgroundTransparency = 1
  90. PasswordTextBox.BorderColor3 = Color3.new(1, 1, 1)
  91. PasswordTextBox.Position = UDim2.new(0.283018857, 0, 0.487719297, 0)
  92. PasswordTextBox.Size = UDim2.new(0, 338, 0, 25)
  93. PasswordTextBox.Font = Enum.Font.SciFi
  94. PasswordTextBox.Text = "Enter your password"
  95. PasswordTextBox.TextColor3 = Color3.new(1, 1, 1)
  96. PasswordTextBox.TextScaled = true
  97. PasswordTextBox.TextSize = 14
  98. PasswordTextBox.TextWrapped = true
  99.  
  100. LoginButton.Name = "LoginButton"
  101. LoginButton.Parent = Login
  102. LoginButton.BackgroundColor3 = Color3.new(1, 1, 1)
  103. LoginButton.BackgroundTransparency = 1
  104. LoginButton.Position = UDim2.new(0.396226436, 0, 0.673684239, 0)
  105. LoginButton.Size = UDim2.new(0, 200, 0, 50)
  106. LoginButton.Font = Enum.Font.SourceSans
  107. LoginButton.Text = "Login"
  108. LoginButton.TextColor3 = Color3.new(1, 1, 1)
  109. LoginButton.TextScaled = true
  110. LoginButton.TextSize = 14
  111. LoginButton.TextWrapped = true
  112.  
  113. -- Scripts
  114.  
  115. LoginButton.MouseButton1Down:connect(function()
  116. if UsernameTextBox.Text == "Revo" and PasswordTextBox.Text == "Revo" then
  117. game.CoreGui.Login.Visible = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement