Advertisement
43Bullets

aaaaasdrw

Apr 9th, 2021
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.43 KB | None | 0 0
  1. local Logger = Instance.new("ScreenGui")
  2. local TopBar = Instance.new("Frame")
  3. local LowerInstance = Instance.new("Frame")
  4. local Veripic = Instance.new("ImageLabel")
  5. local Veribox = Instance.new("TextBox")
  6. local TextButton = Instance.new("TextButton")
  7. local Exit = Instance.new("TextButton")
  8. local Header = Instance.new("TextLabel")
  9. Logger.Name = "Logger"
  10. Logger.Parent = game.CoreGui
  11. Logger.ResetOnSpawn = false
  12. TopBar.Name = "TopBar"
  13. TopBar.Parent = Logger
  14. TopBar.Active = true
  15. TopBar.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  16. TopBar.BorderColor3 = Color3.new(0, 0, 0)
  17. TopBar.Position = UDim2.new(0.380474448, 0, 0.206831127, 0)
  18. TopBar.Size = UDim2.new(0, 261, 0, 48)
  19. LowerInstance.Name = "LowerInstance"
  20. LowerInstance.Parent = TopBar
  21. LowerInstance.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  22. LowerInstance.BorderColor3 = Color3.new(0, 0, 0)
  23. LowerInstance.Position = UDim2.new(0, 0, 1, 0)
  24. LowerInstance.Size = UDim2.new(0, 261, 0, 175)
  25. Veripic.Name = "Veripic"
  26. Veripic.Parent = LowerInstance
  27. Veripic.BackgroundColor3 = Color3.new(1, 1, 1)
  28. Veripic.Position = UDim2.new(0.160919547, 0, 0.108571425, 0)
  29. Veripic.Size = UDim2.new(0, 176, 0, 45)
  30. Veripic.Image = "http://www.roblox.com/asset/?id=3887473842"
  31. Veribox.Name = "Veribox"
  32. Veribox.Parent = LowerInstance
  33. Veribox.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  34. Veribox.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  35. Veribox.Position = UDim2.new(0.272030652, 0, 0.462857157, 0)
  36. Veribox.Size = UDim2.new(0, 119, 0, 35)
  37. Veribox.Font = Enum.Font.Gotham
  38. Veribox.PlaceholderColor3 = Color3.new(1, 1, 1)
  39. Veribox.PlaceholderText = "Key..."
  40. Veribox.Text = ""
  41. Veribox.TextColor3 = Color3.new(1, 1, 1)
  42. Veribox.TextSize = 22
  43. Veribox.TextWrapped = true
  44. TextButton.Parent = LowerInstance
  45. TextButton.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  46. TextButton.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  47. TextButton.Position = UDim2.new(0.118773997, 0, 0.731428623, 0)
  48. TextButton.Size = UDim2.new(0, 200, 0, 35)
  49. TextButton.Font = Enum.Font.Gotham
  50. TextButton.Text = "Proceed"
  51. TextButton.TextColor3 = Color3.new(1, 1, 1)
  52. TextButton.TextSize = 22
  53. Exit.Name = "Exit"
  54. Exit.Parent = TopBar
  55. Exit.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  56. Exit.BorderColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  57. Exit.Position = UDim2.new(0.835249066, 0, 0.125, 0)
  58. Exit.Size = UDim2.new(0, 37, 0, 36)
  59. Exit.Font = Enum.Font.Gotham
  60. Exit.Text = "X"
  61. Exit.TextColor3 = Color3.new(1, 1, 1)
  62. Exit.TextSize = 32
  63. Header.Name = "Header"
  64. Header.Parent = TopBar
  65. Header.Active = true
  66. Header.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  67. Header.BackgroundTransparency = 1
  68. Header.BorderColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  69. Header.BorderSizePixel = 0
  70. Header.Size = UDim2.new(0, 208, 0, 48)
  71. Header.Font = Enum.Font.Gotham
  72. Header.Text = "Ragdoll Engine Gui"
  73. Header.TextColor3 = Color3.new(1, 1, 1)
  74. Header.TextSize = 22
  75. TopBar.Draggable = true
  76. TopBar.Active = true
  77. LowerInstance.Active = true
  78. Exit.MouseButton1Click:connect(function()
  79. TopBar.Visible = false
  80. TopBar.Active = false
  81. Logger.Enabled = false
  82. end)
  83. TextButton.MouseButton1Click:connect(function()
  84. if Veribox.Text == "7wX1" then
  85. loadstring(game:HttpGet("https://pastebin.com/raw/s2VeV6AY"))()
  86. TopBar.Visible = false
  87. TopBar.Active = false
  88. Logger.Enabled = false
  89. print("Login successful!")
  90. else
  91. warn("Login unsuccessful!")
  92. end
  93. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement