PremifyOnYt

ARSENAL OWL HUB

Aug 13th, 2022
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.88 KB | None | 0 0
  1. -- OWN HUB LOG IN
  2.  
  3.  
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local main = Instance.new("Frame")
  6. local LoginButton = Instance.new("TextButton")
  7. local UsernameBox = Instance.new("TextBox")
  8. local close = Instance.new("TextButton")
  9. local Title = Instance.new("TextLabel")
  10. local titlev2 = Instance.new("TextLabel")
  11. local openmain = Instance.new("Frame")
  12. local open = Instance.new("TextButton")
  13.  
  14. --Properties:
  15.  
  16. ScreenGui.Parent = game.CoreGui
  17. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  18.  
  19. main.Name = "main"
  20. main.Parent = ScreenGui
  21. main.BackgroundColor3 = Color3.fromRGB(222, 87, 255)
  22. main.Position = UDim2.new(0.399607599, 0, 0.183598518, 0)
  23. main.Size = UDim2.new(0, 551, 0, 382)
  24. main.Visible = true
  25. main.Active = true
  26. main.Draggable = false
  27.  
  28. LoginButton.Name = "LoginButton"
  29. LoginButton.Parent = main
  30. LoginButton.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  31. LoginButton.Position = UDim2.new(0.317604363, 0, 0.704188466, 0)
  32. LoginButton.Size = UDim2.new(0, 200, 0, 50)
  33. LoginButton.Font = Enum.Font.SourceSans
  34. LoginButton.Text = "Login"
  35. LoginButton.TextColor3 = Color3.fromRGB(0, 0, 0) -- login page...
  36. LoginButton.TextScaled = true
  37. LoginButton.TextSize = 14.000
  38. LoginButton.TextWrapped = true
  39. LoginButton.MouseButton1Down:connect(function()
  40. loadstring(game:HttpGet("https://raw.githubusercontent.com/CriShoux/OwlHub/master/OwlHub.txt"))();
  41. end)
  42.  
  43. UsernameBox.Name = "UsernameBox"
  44. UsernameBox.Parent = main
  45. UsernameBox.BackgroundColor3 = Color3.fromRGB(170, 170, 0)
  46. UsernameBox.Position = UDim2.new(0.290381134, 0, 0.342931926, 0)
  47. UsernameBox.Size = UDim2.new(0, 230, 0, 50)
  48. UsernameBox.Font = Enum.Font.SourceSans
  49. UsernameBox.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
  50. UsernameBox.PlaceholderText = "Username..."
  51. UsernameBox.Text = ""
  52. UsernameBox.TextColor3 = Color3.fromRGB(0, 0, 0)
  53. UsernameBox.TextScaled = true
  54. UsernameBox.TextSize = 14.000
  55. UsernameBox.TextWrapped = true
  56.  
  57. close.Name = "close"
  58. close.Parent = main
  59. close.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  60. close.Position = UDim2.new(0.929219604, 0, 0, 0)
  61. close.Size = UDim2.new(0, 39, 0, 36)
  62. close.Font = Enum.Font.SourceSans
  63. close.Text = "X"
  64. close.TextColor3 = Color3.fromRGB(0, 0, 0)
  65. close.TextScaled = true
  66. close.TextSize = 14.000
  67. close.TextWrapped = true
  68. close.MouseButton1Down:connect(function()
  69. main.Visible = false
  70. openmain.Visible = true
  71. end)
  72.  
  73.  
  74.  
  75. Title.Name = "Title"
  76. Title.Parent = main
  77. Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  78. Title.BackgroundTransparency = 1.000
  79. Title.Position = UDim2.new(0.179673329, 0, 0.0235602092, 0)
  80. Title.Size = UDim2.new(0, 377, 0, 50)
  81. Title.Font = Enum.Font.LuckiestGuy
  82. Title.Text = "Owl Hub Login"
  83. Title.TextColor3 = Color3.fromRGB(0, 0, 0)
  84. Title.TextScaled = true
  85. Title.TextSize = 14.000
  86. Title.TextWrapped = true
  87.  
  88. titlev2.Name = "titlev2"
  89. titlev2.Parent = main
  90. titlev2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  91. titlev2.BackgroundTransparency = 1.000
  92. titlev2.Position = UDim2.new(0, 0, 0.918848157, 0)
  93. titlev2.Size = UDim2.new(0, 175, 0, 31)
  94. titlev2.Font = Enum.Font.LuckiestGuy
  95. titlev2.Text = "Owl Hub "
  96. titlev2.TextColor3 = Color3.fromRGB(0, 0, 0)
  97. titlev2.TextScaled = true
  98. titlev2.TextSize = 14.000
  99. titlev2.TextWrapped = true
  100.  
  101. openmain.Name = "openmain"
  102. openmain.Parent = ScreenGui
  103. openmain.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  104. openmain.BackgroundTransparency = 1.000
  105. openmain.Position = UDim2.new(0.0405493788, 0, 0.796817601, 0)
  106. openmain.Size = UDim2.new(0, 26, 0, 15)
  107. openmain.Active = true
  108. openmain.Draggable = false
  109.  
  110. open.Name = "open"
  111. open.Parent = openmain
  112. open.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  113. open.BackgroundTransparency = 1.000
  114. open.Size = UDim2.new(0, 26, 0, 18)
  115. open.Font = Enum.Font.SourceSans
  116. open.Text = " "
  117. open.TextColor3 = Color3.fromRGB(0, 0, 0)
  118. open.TextSize = 14.000
  119. open.MouseButton1Down:connect(function()
  120. openmain.Visible = false
  121. main.Visible = true
  122. end)
Advertisement
Add Comment
Please, Sign In to add comment