Advertisement
Keyboxrd

Untitled

Apr 27th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.02 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local Login = Instance.new("ScreenGui")
  5. local LoginGui = Instance.new("Frame")
  6. local Top = Instance.new("Frame")
  7. local Close = Instance.new("TextButton")
  8. local Text = Instance.new("TextLabel")
  9. local Username = Instance.new("TextBox")
  10. local Password = Instance.new("TextBox")
  11. local TextButton = Instance.new("TextButton")
  12. --Properties:
  13. Login.Name = "Login"
  14. Login.Parent = game.CoreGui
  15. Login.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  16.  
  17. LoginGui.Name = "LoginGui"
  18. LoginGui.Parent = Login
  19. LoginGui.Active = true
  20. LoginGui.BackgroundColor3 = Color3.new(0.113725, 0.113725, 0.113725)
  21. LoginGui.Position = UDim2.new(0.31021899, 0, 0.419303834, 0)
  22. LoginGui.Size = UDim2.new(0, 435, 0, 174)
  23. LoginGui.Draggable = true
  24.  
  25. Top.Name = "Top"
  26. Top.Parent = LoginGui
  27. Top.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  28. Top.Size = UDim2.new(0, 435, 0, 32)
  29.  
  30. Close.Name = "Close"
  31. Close.Parent = Top
  32. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  33. Close.BackgroundTransparency = 1
  34. Close.BorderSizePixel = 0
  35. Close.Position = UDim2.new(0.885057449, 0, 0, 0)
  36. Close.Size = UDim2.new(0, 50, 0, 32)
  37. Close.Font = Enum.Font.Highway
  38. Close.Text = "X"
  39. Close.TextColor3 = Color3.new(0.741176, 0.121569, 0.133333)
  40. Close.TextScaled = true
  41. Close.TextSize = 14
  42. Close.TextWrapped = true
  43. Close.MouseButton1Down:connect(function()
  44. LoginGui:Destroy()
  45. end)
  46.  
  47. Text.Name = "Text"
  48. Text.Parent = Top
  49. Text.BackgroundColor3 = Color3.new(1, 1, 1)
  50. Text.BackgroundTransparency = 1
  51. Text.BorderSizePixel = 0
  52. Text.Position = UDim2.new(0.268965513, 0, 0, 0)
  53. Text.Size = UDim2.new(0, 200, 0, 32)
  54. Text.Font = Enum.Font.Highway
  55. Text.Text = "SimPack Login"
  56. Text.TextColor3 = Color3.new(1, 1, 1)
  57. Text.TextSize = 14
  58.  
  59. Username.Name = "Username"
  60. Username.Parent = LoginGui
  61. Username.BackgroundColor3 = Color3.new(1, 1, 1)
  62. Username.Position = UDim2.new(0.268965513, 0, 0.265640676, 0)
  63. Username.Size = UDim2.new(0, 200, 0, 28)
  64. Username.Font = Enum.Font.Highway
  65. Username.Text = "Username"
  66. Username.TextColor3 = Color3.new(0, 0, 0)
  67. Username.TextSize = 14
  68.  
  69. Password.Name = "Password"
  70. Password.Parent = LoginGui
  71. Password.BackgroundColor3 = Color3.new(1, 1, 1)
  72. Password.Position = UDim2.new(0.268965513, 0, 0.521638572, 0)
  73. Password.Size = UDim2.new(0, 200, 0, 28)
  74. Password.Font = Enum.Font.Highway
  75. Password.Text = "Password"
  76. Password.TextColor3 = Color3.new(0, 0, 0)
  77. Password.TextSize = 14
  78.  
  79. TextButton.Parent = LoginGui
  80. TextButton.BackgroundColor3 = Color3.new(0.168627, 0.168627, 0.168627)
  81. TextButton.Position = UDim2.new(0.268965513, 0, 0.74712646, 0)
  82. TextButton.Size = UDim2.new(0, 200, 0, 37)
  83. TextButton.Font = Enum.Font.Highway
  84. TextButton.Text = "Login"
  85. TextButton.TextColor3 = Color3.new(1, 1, 1)
  86. TextButton.TextScaled = true
  87. TextButton.TextSize = 14
  88. TextButton.TextWrapped = true
  89. TextButton.MouseButton1Down:connect(function()
  90. if Username.Text == "hi" and Password.Text == "hi" then
  91. wait()
  92. LoginGui.Visible = false
  93. loadstring(game:HttpGet("https://pastebin.com/raw/nkNr6w2M", true))()
  94. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement