Advertisement
Guest User

SkillWare

a guest
Aug 12th, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.81 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local Skillware = Instance.new("ScreenGui")
  5. local LoginGui = Instance.new("ScreenGui")
  6. local MainFrame = Instance.new("Frame")
  7. local Username = Instance.new("TextBox")
  8. local Password = Instance.new("TextBox")
  9. local Login_2 = Instance.new("TextButton")
  10. local TopLable = Instance.new("TextLabel")
  11. local ExitButton = Instance.new("TextButton")
  12. local Minimise = Instance.new("TextButton")
  13. local Close = Instance.new("TextButton")
  14. local Open = Instance.new("TextButton")
  15. --Properties:
  16. Skillware.Name = "Skillware"
  17. Skillware.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  18.  
  19. LoginGui.Name = "Login"
  20. LoginGui.Parent = Skillware
  21.  
  22. MainFrame.Name = "LoginGui"
  23. MainFrame.Parent = Login
  24. MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  25. MainFrame.BorderColor3 = Color3.new(0.917647, 0.0352941, 0.490196)
  26. MainFrame.BorderSizePixel = 2
  27. MainFrame.Position = UDim2.new(0.405809134, 0, 0.343822837, 0)
  28. MainFrame.Selectable = true
  29. MainFrame.Size = UDim2.new(0, 180, 0, 156)
  30.  
  31. Username.Name = "Username"
  32. Username.Parent = LoginGui
  33. Username.BackgroundColor3 = Color3.new(0, 0, 0)
  34. Username.BorderColor3 = Color3.new(0.917647, 0.0352941, 0.490196)
  35. Username.BorderSizePixel = 2
  36. Username.NextSelectionDown = Password
  37. Username.Position = UDim2.new(0.0657676458, 0, 0.116550103, 0)
  38. Username.Size = UDim2.new(0, 156, 0, 18)
  39. Username.Font = Enum.Font.SourceSans
  40. Username.Text = "Username"
  41. Username.TextColor3 = Color3.new(0.917647, 0.0352941, 0.490196)
  42. Username.TextSize = 14
  43.  
  44. Password.Name = "Password"
  45. Password.Parent = LoginGui
  46. Password.BackgroundColor3 = Color3.new(0, 0, 0)
  47. Password.BorderColor3 = Color3.new(0.917647, 0.0352941, 0.490196)
  48. Password.BorderSizePixel = 2
  49. Password.NextSelectionDown = Login_2
  50. Password.Position = UDim2.new(0.0657676458, 0, 0.378787875, 0)
  51. Password.Size = UDim2.new(0, 156, 0, 19)
  52. Password.Font = Enum.Font.SourceSans
  53. Password.Text = "Password"
  54. Password.TextColor3 = Color3.new(0.917647, 0.0352941, 0.490196)
  55. Password.TextSize = 14
  56.  
  57. Login_2.Name = "Login"
  58. Login_2.Parent = LoginGui
  59. Login_2.BackgroundColor3 = Color3.new(0, 0, 0)
  60. Login_2.BorderColor3 = Color3.new(0.917647, 0.0352941, 0.490196)
  61. Login_2.BorderSizePixel = 2
  62. Login_2.Position = UDim2.new(0.222222239, 0, 0.628205121, 0)
  63. Login_2.Size = UDim2.new(0, 100, 0, 35)
  64. Login_2.Font = Enum.Font.SourceSans
  65. Login_2.Text = "Login"
  66. Login_2.TextColor3 = Color3.new(0.917647, 0.0352941, 0.490196)
  67. Login_2.TextSize = 14
  68.  
  69. TopLable.Name = "TopLable"
  70. TopLable.Parent = LoginGui
  71. TopLable.BackgroundColor3 = Color3.new(0, 0, 0)
  72. TopLable.BorderColor3 = Color3.new(0.917647, 0.0352941, 0.490196)
  73. TopLable.BorderSizePixel = 2
  74. TopLable.Position = UDim2.new(0, 0, -0.0961538479, 0)
  75. TopLable.Selectable = true
  76. TopLable.Size = UDim2.new(0, 180, 0, 15)
  77. TopLable.Font = Enum.Font.SourceSans
  78. TopLable.Text = "SkillWare by Kilas"
  79. TopLable.TextColor3 = Color3.new(0.917647, 0.0352941, 0.490196)
  80. TopLable.TextSize = 18
  81.  
  82. Close.Name = "Close"
  83. Close.Parent = LoginGui
  84. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  85. Close.Size = UDim2.new(0, 200, 0, 50)
  86. Close.Font = Enum.Font.SourceSans
  87. Close.TextColor3 = Color3.new(0, 0, 0)
  88. Close.TextSize = 14
  89. close.MouseButton1Click:connect(function()
  90.     open.Visible = true
  91.     MainFrame.Visible = false
  92. end)
  93.  
  94. Open.Name = "Open"
  95. Open.Parent = Skillware
  96. Open.BackgroundColor3 = Color3.new(0, 0, 0)
  97. Open.BorderColor3 = Color3.new(0.917647, 0.0352941, 0.490196)
  98. Open.BorderSizePixel = 2
  99. Open.Position = UDim2.new(0.148547724, 0, 0.956876457, 0)
  100. Open.Size = UDim2.new(0, 65, 0, 30)
  101. Open.Style = Enum.ButtonStyle.RobloxButtonDefault
  102. Open.Font = Enum.Font.SourceSans
  103. Open.Text = "Open"
  104. Open.TextColor3 = Color3.new(0.917647, 0.0352941, 0.490196)
  105. Open.TextSize = 24
  106. Open.MouseButton1Click:connect(function()
  107.     open.Visible = false
  108.     MainFrame.Visible = true
  109. end)
  110.  
  111. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement