Advertisement
dkg_yt

Untitled

Nov 4th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.36 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Main_Login = Instance.new("Frame")
  8. local Top_Login = Instance.new("Frame")
  9. local FadeBar = Instance.new("Frame")
  10. local Chxe = Instance.new("TextLabel")
  11. local TextBox = Instance.new("TextBox")
  12. local TextButton = Instance.new("TextButton")
  13.  
  14. --Properties:
  15.  
  16. ScreenGui.Parent = game.Workspace
  17. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  18.  
  19. Main_Login.Name = "Main_Login"
  20. Main_Login.Parent = ScreenGui
  21. Main_Login.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  22. Main_Login.BorderSizePixel = 0
  23. Main_Login.Position = UDim2.new(0.344139695, 0, 0.497543007, 0)
  24. Main_Login.Size = UDim2.new(0, 552, 0, 161)
  25.  
  26. Top_Login.Name = "Top_Login"
  27. Top_Login.Parent = Main_Login
  28. Top_Login.BackgroundColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  29. Top_Login.BorderSizePixel = 0
  30. Top_Login.Size = UDim2.new(0, 551, 0, 23)
  31.  
  32. FadeBar.Name = "FadeBar"
  33. FadeBar.Parent = Top_Login
  34. FadeBar.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  35. FadeBar.BorderSizePixel = 0
  36. FadeBar.Position = UDim2.new(0, 0, 1, 0)
  37. FadeBar.Size = UDim2.new(0, 550, 0, 3)
  38.  
  39. Chxe.Name = "Chxe"
  40. Chxe.Parent = Top_Login
  41. Chxe.BackgroundColor3 = Color3.new(1, 1, 1)
  42. Chxe.BackgroundTransparency = 1
  43. Chxe.Position = UDim2.new(0.317604363, 0, 0, 0)
  44. Chxe.Size = UDim2.new(0, 200, 0, 26)
  45. Chxe.Font = Enum.Font.SciFi
  46. Chxe.Text = "Savitar SS - Whitelist"
  47. Chxe.TextColor3 = Color3.new(1, 1, 1)
  48. Chxe.TextSize = 20
  49. Chxe.TextWrapped = true
  50.  
  51. TextBox.Parent = Main_Login
  52. TextBox.BackgroundColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  53. TextBox.BorderSizePixel = 0
  54. TextBox.Position = UDim2.new(0.0724637657, 0, 0.329059839, 0)
  55. TextBox.Size = UDim2.new(0, 471, 0, 35)
  56. TextBox.Font = Enum.Font.SciFi
  57. TextBox.PlaceholderColor3 = Color3.new(0.698039, 0.698039, 0.698039)
  58. TextBox.PlaceholderText = "HWID will be here"
  59. TextBox.Text = ""
  60. TextBox.TextColor3 = Color3.new(1, 1, 1)
  61. TextBox.TextSize = 15
  62. TextBox.TextWrapped = true
  63.  
  64. TextButton.Parent = Main_Login
  65. TextButton.BackgroundColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  66. TextButton.BorderSizePixel = 0
  67. TextButton.Position = UDim2.new(0.222826079, 0, 0.615384638, 0)
  68. TextButton.Size = UDim2.new(0, 304, 0, 50)
  69. TextButton.Font = Enum.Font.Gotham
  70. TextButton.Text = "Get HWID"
  71. TextButton.TextColor3 = Color3.new(1, 1, 1)
  72. TextButton.TextSize = 20
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement