Advertisement
Guest User

Untitled

a guest
Jan 13th, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.87 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local TextBox = Instance.new("TextBox")
  7. local TextButton = Instance.new("TextButton")
  8. local Username = Instance.new("TextBox")
  9. local Frame_2 = Instance.new("Frame")
  10. --Properties:
  11. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  12.  
  13. Frame.Parent = ScreenGui
  14. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  15. Frame.BackgroundTransparency = 0.60000002384186
  16. Frame.BorderSizePixel = 0
  17. Frame.Position = UDim2.new(0.312770575, 0, 0.401941746, 0)
  18. Frame.Size = UDim2.new(0, 320, 0, 205)
  19.  
  20. TextBox.Parent = Frame
  21. TextBox.BackgroundColor3 = Color3.new(1, 1, 1)
  22. TextBox.BackgroundTransparency = 0.5
  23. TextBox.BorderSizePixel = 0
  24. TextBox.Position = UDim2.new(0.186874956, 0, 0.482926816, 0)
  25. TextBox.Size = UDim2.new(0, 200, 0, 28)
  26. TextBox.Font = Enum.Font.Highway
  27. TextBox.PlaceholderColor3 = Color3.new(0.698039, 0.698039, 0.698039)
  28. TextBox.Text = "Password"
  29. TextBox.TextColor3 = Color3.new(0, 0, 0)
  30. TextBox.TextScaled = true
  31. TextBox.TextSize = 14
  32. TextBox.TextWrapped = true
  33.  
  34. TextButton.Parent = Frame
  35. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  36. TextButton.BackgroundTransparency = 0.5
  37. TextButton.BorderSizePixel = 0
  38. TextButton.Position = UDim2.new(0.1875, 0, 0.717073143, 0)
  39. TextButton.Size = UDim2.new(0, 200, 0, 50)
  40. TextButton.Font = Enum.Font.Highway
  41. TextButton.Text = "Login"
  42. TextButton.TextColor3 = Color3.new(0, 0, 0)
  43. TextButton.TextScaled = true
  44. TextButton.TextSize = 14
  45. TextButton.TextWrapped = true
  46.  
  47. Username.Name = "Username"
  48. Username.Parent = Frame
  49. Username.BackgroundColor3 = Color3.new(1, 1, 1)
  50. Username.BackgroundTransparency = 0.5
  51. Username.BorderSizePixel = 0
  52. Username.Position = UDim2.new(0.186874956, 0, 0.175609738, 0)
  53. Username.Size = UDim2.new(0, 200, 0, 28)
  54. Username.Font = Enum.Font.Highway
  55. Username.PlaceholderColor3 = Color3.new(0.698039, 0.698039, 0.698039)
  56. Username.Text = "Username"
  57. Username.TextColor3 = Color3.new(0, 0, 0)
  58. Username.TextScaled = true
  59. Username.TextSize = 14
  60. Username.TextWrapped = true
  61.  
  62. Frame_2.Parent = Frame
  63. Frame_2.BackgroundColor3 = Color3.new(1, 1, 1)
  64. Frame_2.BorderSizePixel = 0
  65. Frame_2.Position = UDim2.new(0, 0, -0.000805143034, 0)
  66. Frame_2.Size = UDim2.new(0, 320, 0, 19)
  67. -- Scripts:
  68. function SCRIPT_RSID87_FAKESCRIPT() -- TextButton.LocalScript
  69. local script = Instance.new('LocalScript')
  70. script.Parent = TextButton
  71. local button = script.Parent
  72. local username = script.Parent.Parent:WaitForChild('Username')
  73. local text = script.Parent.Parent:WaitForChild('TextBox')
  74. local pass = "Test"
  75. local feef = "123"
  76.  
  77.  
  78. script.Parent.MouseButton1Click:connect(function()
  79. if text.Text == feef and username.Text == pass then
  80. print("Works")
  81. script.Parent.Parent.Visible = false
  82. end
  83. end)
  84.  
  85.  
  86. end
  87. coroutine.resume(coroutine.create(SCRIPT_RSID87_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement