Advertisement
Guest User

asd

a guest
Nov 29th, 2018
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.71 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local LoginGui = Instance.new("Frame")
  6. local user = Instance.new("TextBox")
  7. local pass = Instance.new("TextBox")
  8. local submit = Instance.new("TextButton")
  9. local maingui = Instance.new("Frame")
  10. local bubble = Instance.new("TextButton")
  11. local TextButton = Instance.new("TextButton")
  12. local opengui = Instance.new("Frame")
  13. local open = Instance.new("TextButton")
  14. --Properties:
  15. ScreenGui.Parent = game.Workspace
  16.  
  17. LoginGui.Name = "LoginGui"
  18. LoginGui.Parent = ScreenGui
  19. LoginGui.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  20. LoginGui.BackgroundTransparency = 0.80000001192093
  21. LoginGui.Position = UDim2.new(0.296620041, 0, 0.292383283, 0)
  22. LoginGui.Size = UDim2.new(0, 391, 0, 314)
  23. LoginGui.Active = true
  24. LoginGui.Draggable = true
  25.  
  26. user.Name = "user"
  27. user.Parent = LoginGui
  28. user.BackgroundColor3 = Color3.new(1, 1, 1)
  29. user.Position = UDim2.new(0.221606657, 0, 0.24099724, 0)
  30. user.Size = UDim2.new(0, 200, 0, 50)
  31. user.Font = Enum.Font.Garamond
  32. user.Text = "Username"
  33. user.TextColor3 = Color3.new(0, 0, 0)
  34. user.TextScaled = true
  35. user.TextSize = 14
  36. user.TextWrapped = true
  37.  
  38. pass.Name = "pass"
  39. pass.Parent = LoginGui
  40. pass.BackgroundColor3 = Color3.new(1, 1, 1)
  41. pass.Position = UDim2.new(0.221606657, 0, 0.531855941, 0)
  42. pass.Size = UDim2.new(0, 200, 0, 50)
  43. pass.Font = Enum.Font.Garamond
  44. pass.Text = "Password"
  45. pass.TextColor3 = Color3.new(0, 0, 0)
  46. pass.TextScaled = true
  47. pass.TextSize = 14
  48. pass.TextWrapped = true
  49.  
  50. submit.Name = "submit"
  51. submit.Parent = LoginGui
  52. submit.BackgroundColor3 = Color3.new(1, 1, 1)
  53. submit.Position = UDim2.new(0.221606642, 0, 0.731301963, 0)
  54. submit.Size = UDim2.new(0, 200, 0, 50)
  55. submit.Font = Enum.Font.Highway
  56. submit.Text = "Submit"
  57. submit.TextColor3 = Color3.new(0, 0, 0)
  58. submit.TextSize = 14
  59. if user.Text == "nibbatest" and pass.Text == "nibbatest" then
  60. LoginGui.Visible = false
  61. opengui.Visible = true
  62. end
  63. end)
  64.  
  65. maingui.Name = "maingui"
  66. maingui.Parent = ScreenGui
  67. maingui.BackgroundColor3 = Color3.new(1, 1, 1)
  68. maingui.Position = UDim2.new(0.305944026, 0, 0.186643332, 0)
  69. maingui.Size = UDim2.new(0, 362, 0, 349)
  70. maingui.Visible = false
  71. maingui.Active = true
  72. maingui.draggable = true
  73.  
  74. bubble.Name = "bubble"
  75. bubble.Parent = maingui
  76. bubble.BackgroundColor3 = Color3.new(1, 1, 1)
  77. bubble.BorderSizePixel = 0
  78. bubble.Position = UDim2.new(0.0745856464, 0, 0.100286536, 0)
  79. bubble.Size = UDim2.new(0, 124, 0, 50)
  80. bubble.Font = Enum.Font.Code
  81. bubble.Text = "Bubble gum"
  82. bubble.TextColor3 = Color3.new(0, 0, 0)
  83. bubble.TextScaled = true
  84. bubble.TextSize = 14
  85. bubble.TextWrapped = true
  86.  
  87. close.Parent = maingui
  88. close.BackgroundColor3 = Color3.new(1, 1, 1)
  89. close.BorderSizePixel = 0
  90. close.Position = UDim2.new(0.903315008, 0, 0, 0)
  91. close.Size = UDim2.new(0, 35, 0, 42)
  92. close.Font = Enum.Font.Cartoon
  93. close.Text = "X"
  94. close.TextColor3 = Color3.new(0.945098, 0.117647, 0.0431373)
  95. close.TextScaled = true
  96. close.TextSize = 14
  97. close.TextWrapped = true
  98. close.MouseButton1Down:connect(function()
  99. maingui.Visible = false
  100. opengui Visible = true
  101. end)
  102.  
  103. opengui.Name = "opengui"
  104. opengui.Parent = ScreenGui
  105. opengui.BackgroundColor3 = Color3.new(1, 0.333333, 1)
  106. opengui.Position = UDim2.new(0, 0, 0.481572479, 0)
  107. opengui.Size = UDim2.new(0, 100, 0, 33)
  108. opengui.Visible = false
  109.  
  110. open.Name = "open"
  111. open.Parent = opengui
  112. open.BackgroundColor3 = Color3.new(1, 1, 1)
  113. open.Size = UDim2.new(0, 161, 0, 53)
  114. open.Font = Enum.Font.Cartoon
  115. open.Text = "Open/close"
  116. open.TextColor3 = Color3.new(0, 0, 0)
  117. open.TextScaled = true
  118. open.TextSize = 14
  119. open.TextWrapped = true
  120. open.MouseButton1Down:connect(function()
  121. maingui.Visible = true
  122. opengui.Visible = false
  123. end)
  124. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement