Advertisement
Guest User

Untitled

a guest
Mar 26th, 2020
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.93 KB | None | 0 0
  1.  
  2. local HorizonHax = Instance.new("ScreenGui")
  3. local LoginFrame = Instance.new("Frame")
  4. local LoginFrameBar = Instance.new("Frame")
  5. local UsernameText = Instance.new("TextBox")
  6. local PasswordText = Instance.new("TextBox")
  7. local LoginButton = Instance.new("TextButton")
  8. local LoginFrameTitle = Instance.new("TextLabel")
  9. local MainFrame = Instance.new("Frame")
  10. local MainFrameBar = Instance.new("Frame")
  11. local MainCloseButton = Instance.new("TextButton")
  12. local RoseHub = Instance.new("TextButton")
  13. local Author = Instance.new("TextBox")
  14. local Credits = Instance.new("TextButton")
  15. local LegacyHub = Instance.new("TextButton")
  16. local OwlHub = Instance.new("TextButton")
  17. local PotatoHub = Instance.new("TextButton")
  18. local Btools = Instance.new("TextButton")
  19. local MainFrameTitle = Instance.new("TextLabel")
  20.  
  21. --Properties:
  22.  
  23. HorizonHax.Name = "Horizon Hax"
  24. HorizonHax.Parent = game.CoreGui
  25. HorizonHax.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  26.  
  27. LoginFrame.Name = "LoginFrame"
  28. LoginFrame.Parent = HorizonHax
  29. LoginFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  30. LoginFrame.BorderColor3 = Color3.fromRGB(255, 255, 255)
  31. LoginFrame.BorderSizePixel = 0
  32. LoginFrame.Position = UDim2.new(0.00801974069, 0, 0.191646188, 0)
  33. LoginFrame.Size = UDim2.new(0, 361, 0, 335)
  34. LoginFrame.Style = Enum.FrameStyle.RobloxRound
  35.  
  36. LoginFrameBar.Name = "LoginFrameBar"
  37. LoginFrameBar.Parent = LoginFrame
  38. LoginFrameBar.Active = true
  39. LoginFrameBar.BackgroundColor3 = Color3.fromRGB(10, 10, 10)
  40. LoginFrameBar.BorderColor3 = Color3.fromRGB(255, 255, 255)
  41. LoginFrameBar.BorderSizePixel = 0
  42. LoginFrameBar.Position = UDim2.new(-0.018653933, 0, -0.0211349614, 0)
  43. LoginFrameBar.Selectable = true
  44. LoginFrameBar.Size = UDim2.new(0, 359, 0, 51)
  45. LoginFrameBar.Style = Enum.FrameStyle.RobloxSquare
  46.  
  47. UsernameText.Name = "UsernameText"
  48. UsernameText.Parent = LoginFrame
  49. UsernameText.BackgroundColor3 = Color3.fromRGB(15, 15, 15)
  50. UsernameText.BorderColor3 = Color3.fromRGB(10, 10, 10)
  51. UsernameText.BorderSizePixel = 4
  52. UsernameText.Position = UDim2.new(0.0627475232, 0, 0.220576242, 0)
  53. UsernameText.Size = UDim2.new(0, 301, 0, 37)
  54. UsernameText.Font = Enum.Font.SourceSansBold
  55. UsernameText.Text = "Username"
  56. UsernameText.TextColor3 = Color3.fromRGB(255, 255, 255)
  57. UsernameText.TextScaled = true
  58. UsernameText.TextSize = 14.000
  59. UsernameText.TextWrapped = true
  60. UsernameText.TextXAlignment = Enum.TextXAlignment.Left
  61.  
  62. PasswordText.Name = "PasswordText"
  63. PasswordText.Parent = LoginFrame
  64. PasswordText.BackgroundColor3 = Color3.fromRGB(15, 15, 15)
  65. PasswordText.BorderColor3 = Color3.fromRGB(10, 10, 10)
  66. PasswordText.BorderSizePixel = 4
  67. PasswordText.Position = UDim2.new(0.059977442, 0, 0.45399797, 0)
  68. PasswordText.Size = UDim2.new(0, 301, 0, 37)
  69. PasswordText.Font = Enum.Font.SourceSansBold
  70. PasswordText.Text = "Password"
  71. PasswordText.TextColor3 = Color3.fromRGB(255, 255, 255)
  72. PasswordText.TextScaled = true
  73. PasswordText.TextSize = 14.000
  74. PasswordText.TextWrapped = true
  75. PasswordText.TextXAlignment = Enum.TextXAlignment.Left
  76.  
  77. LoginButton.Name = "LoginButton"
  78. LoginButton.Parent = LoginFrame
  79. LoginButton.BackgroundColor3 = Color3.fromRGB(15, 15, 15)
  80. LoginButton.BorderColor3 = Color3.fromRGB(10, 10, 10)
  81. LoginButton.BorderSizePixel = 4
  82. LoginButton.Position = UDim2.new(0, 73, 0, 233)
  83. LoginButton.Size = UDim2.new(0, 200, 0, 50)
  84. LoginButton.Font = Enum.Font.SourceSansBold
  85. LoginButton.Text = "Login"
  86. LoginButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  87. LoginButton.TextScaled = true
  88. LoginButton.TextSize = 14.000
  89. LoginButton.TextWrapped = true
  90. LoginButton.MouseButton1Down:connect(function()
  91. MainFrame.Visible = true
  92. LoginFrame.Visible = false
  93. end)
  94.  
  95. LoginFrameTitle.Name = "LoginFrameTitle"
  96. LoginFrameTitle.Parent = LoginFrame
  97. LoginFrameTitle.BackgroundColor3 = Color3.fromRGB(10, 10, 10)
  98. LoginFrameTitle.BorderColor3 = Color3.fromRGB(15, 15, 15)
  99. LoginFrameTitle.Position = UDim2.new(-0.0193905812, 0, -0.0212201588, 0)
  100. LoginFrameTitle.Size = UDim2.new(0, 200, 0, 50)
  101. LoginFrameTitle.Font = Enum.Font.SourceSansBold
  102. LoginFrameTitle.Text = "Horizon Hax"
  103. LoginFrameTitle.TextColor3 = Color3.fromRGB(255, 255, 255)
  104. LoginFrameTitle.TextScaled = true
  105. LoginFrameTitle.TextSize = 14.000
  106. LoginFrameTitle.TextWrapped = true
  107.  
  108. MainFrame.Name = "MainFrame"
  109. MainFrame.Parent = HorizonHax
  110. MainFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  111. MainFrame.BorderColor3 = Color3.fromRGB(255, 255, 255)
  112. MainFrame.Position = UDim2.new(0, 386, 0, 156)
  113. MainFrame.Size = UDim2.new(0, 645, 0, 467)
  114. MainFrame.Style = Enum.FrameStyle.RobloxRound
  115. MainFrame.Visible = false
  116. MainFrame.Draggable = true
  117.  
  118. MainFrameBar.Name = "MainFrameBar"
  119. MainFrameBar.Parent = MainFrame
  120. MainFrameBar.BackgroundColor3 = Color3.fromRGB(10, 10, 10)
  121. MainFrameBar.BorderColor3 = Color3.fromRGB(255, 255, 255)
  122. MainFrameBar.BorderSizePixel = 0
  123. MainFrameBar.Position = UDim2.new(0, -8, 0, -8)
  124. MainFrameBar.Size = UDim2.new(0, 645, 0, 61)
  125.  
  126. MainCloseButton.Name = "MainCloseButton"
  127. MainCloseButton.Parent = MainFrame
  128. MainCloseButton.BackgroundColor3 = Color3.fromRGB(10, 10, 10)
  129. MainCloseButton.BorderColor3 = Color3.fromRGB(15, 15, 15)
  130. MainCloseButton.BorderSizePixel = 0
  131. MainCloseButton.Position = UDim2.new(0, 551, 0, -8)
  132. MainCloseButton.Size = UDim2.new(0, 86, 0, 61)
  133. MainCloseButton.Font = Enum.Font.SourceSansBold
  134. MainCloseButton.Text = "X"
  135. MainCloseButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  136. MainCloseButton.TextScaled = true
  137. MainCloseButton.TextSize = 14.000
  138. MainCloseButton.TextWrapped = true
  139. MainCloseButton.MouseButton1Down:connect(function()
  140. MainFrame.Visible = false
  141. end)
  142.  
  143. RoseHub.Name = "RoseHub"
  144. RoseHub.Parent = MainFrame
  145. RoseHub.BackgroundColor3 = Color3.fromRGB(10, 10, 10)
  146. RoseHub.BorderColor3 = Color3.fromRGB(15, 15, 15)
  147. RoseHub.BorderSizePixel = 4
  148. RoseHub.Position = UDim2.new(0, 32, 0, 78)
  149. RoseHub.Size = UDim2.new(0, 200, 0, 50)
  150. RoseHub.Font = Enum.Font.GothamBold
  151. RoseHub.Text = "Rose Hub"
  152. RoseHub.TextColor3 = Color3.fromRGB(255, 255, 255)
  153. RoseHub.TextScaled = true
  154. RoseHub.TextSize = 14.000
  155. RoseHub.TextWrapped = true
  156. RoseHub.MouseButton1Down:connect(function()
  157. loadstring(game:HttpGet("https://pastebin.com/raw/GMcm7dTA", true))()
  158. end)
  159.  
  160. Author.Name = "Author"
  161. Author.Parent = MainFrame
  162. Author.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  163. Author.BorderColor3 = Color3.fromRGB(255, 255, 255)
  164. Author.BorderSizePixel = 0
  165. Author.Position = UDim2.new(0, -8, 0, 434)
  166. Author.Size = UDim2.new(0, 200, 0, 25)
  167. Author.Font = Enum.Font.SourceSansBold
  168. Author.Text = "Made By ImmuneLion318"
  169. Author.TextColor3 = Color3.fromRGB(255, 255, 255)
  170. Author.TextScaled = true
  171. Author.TextSize = 14.000
  172. Author.TextWrapped = true
  173.  
  174. Credits.Name = "Credits"
  175. Credits.Parent = MainFrame
  176. Credits.BackgroundColor3 = Color3.fromRGB(10, 10, 10)
  177. Credits.BorderColor3 = Color3.fromRGB(15, 15, 15)
  178. Credits.BorderSizePixel = 4
  179. Credits.Position = UDim2.new(0, 408, 0, 384)
  180. Credits.Size = UDim2.new(0, 200, 0, 50)
  181. Credits.Font = Enum.Font.GothamBold
  182. Credits.Text = "Credits"
  183. Credits.TextColor3 = Color3.fromRGB(255, 255, 255)
  184. Credits.TextScaled = true
  185. Credits.TextSize = 14.000
  186. Credits.TextWrapped = true
  187.  
  188. LegacyHub.Name = "LegacyHub"
  189. LegacyHub.Parent = MainFrame
  190. LegacyHub.BackgroundColor3 = Color3.fromRGB(10, 10, 10)
  191. LegacyHub.BorderColor3 = Color3.fromRGB(15, 15, 15)
  192. LegacyHub.BorderSizePixel = 4
  193. LegacyHub.Position = UDim2.new(0, 279, 0, 78)
  194. LegacyHub.Size = UDim2.new(0, 200, 0, 50)
  195. LegacyHub.Font = Enum.Font.GothamBold
  196. LegacyHub.Text = "Legacy Hub"
  197. LegacyHub.TextColor3 = Color3.fromRGB(255, 255, 255)
  198. LegacyHub.TextScaled = true
  199. LegacyHub.TextSize = 14.000
  200. LegacyHub.TextWrapped = true
  201. LegacyHub.MouseButton1Down:connect(function()
  202. loadstring(game:GetObjects("rbxassetid://1683559539")[1].Source)()
  203. end)
  204.  
  205. OwlHub.Name = "OwlHub"
  206. OwlHub.Parent = MainFrame
  207. OwlHub.BackgroundColor3 = Color3.fromRGB(10, 10, 10)
  208. OwlHub.BorderColor3 = Color3.fromRGB(15, 15, 15)
  209. OwlHub.BorderSizePixel = 4
  210. OwlHub.Position = UDim2.new(0, 32, 0, 165)
  211. OwlHub.Size = UDim2.new(0, 200, 0, 50)
  212. OwlHub.Font = Enum.Font.GothamBold
  213. OwlHub.Text = "Owl Hub"
  214. OwlHub.TextColor3 = Color3.fromRGB(255, 255, 255)
  215. OwlHub.TextScaled = true
  216. OwlHub.TextSize = 14.000
  217. OwlHub.TextWrapped = true
  218. OwlHub.MouseButton1Down:connect(function()
  219. loadstring(game:HttpGet("https://raw.githubusercontent.com/CriShoux/OwlHub/master/OwlHub.txt"))();
  220. end)
  221.  
  222. PotatoHub.Name = "PotatoHub"
  223. PotatoHub.Parent = MainFrame
  224. PotatoHub.BackgroundColor3 = Color3.fromRGB(10, 10, 10)
  225. PotatoHub.BorderColor3 = Color3.fromRGB(15, 15, 15)
  226. PotatoHub.BorderSizePixel = 4
  227. PotatoHub.Position = UDim2.new(0, 279, 0, 165)
  228. PotatoHub.Size = UDim2.new(0, 200, 0, 50)
  229. PotatoHub.Font = Enum.Font.GothamBold
  230. PotatoHub.Text = "Potato Hub"
  231. PotatoHub.TextColor3 = Color3.fromRGB(255, 255, 255)
  232. PotatoHub.TextScaled = true
  233. PotatoHub.TextSize = 14.000
  234. PotatoHub.TextWrapped = true
  235. PotatoHub.MouseButton1Down:connect(function()
  236. loadstring(game:HttpGet(('https://potatohub.glitch.me/PotatoHub.lua'),true))()
  237. end)
  238.  
  239. Btools.Name = "Btools"
  240. Btools.Parent = MainFrame
  241. Btools.BackgroundColor3 = Color3.fromRGB(10, 10, 10)
  242. Btools.BorderColor3 = Color3.fromRGB(15, 15, 15)
  243. Btools.BorderSizePixel = 4
  244. Btools.Position = UDim2.new(0, 32, 0, 259)
  245. Btools.Size = UDim2.new(0, 200, 0, 50)
  246. Btools.Font = Enum.Font.GothamBold
  247. Btools.Text = "Btools"
  248. Btools.TextColor3 = Color3.fromRGB(255, 255, 255)
  249. Btools.TextScaled = true
  250. Btools.TextSize = 14.000
  251. Btools.TextWrapped = true
  252. Btools.MouseButton1Down:connect(function()
  253. loadstring(game:GetObjects("rbxassetid://536904585")[1].Source)()
  254. end)
  255.  
  256. MainFrameTitle.Name = "MainFrameTitle"
  257. MainFrameTitle.Parent = MainFrame
  258. MainFrameTitle.BackgroundColor3 = Color3.fromRGB(10, 10, 10)
  259. MainFrameTitle.BorderColor3 = Color3.fromRGB(15, 15, 15)
  260. MainFrameTitle.Position = UDim2.new(0, -8, 0, -7)
  261. MainFrameTitle.Size = UDim2.new(0, 200, 0, 60)
  262. MainFrameTitle.Font = Enum.Font.SourceSansBold
  263. MainFrameTitle.Text = "Horizon Hax"
  264. MainFrameTitle.TextColor3 = Color3.fromRGB(255, 255, 255)
  265. MainFrameTitle.TextScaled = true
  266. MainFrameTitle.TextSize = 14.000
  267. MainFrameTitle.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement