Advertisement
Guest User

Rio

a guest
Feb 19th, 2020
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.38 KB | None | 0 0
  1. - Gui to Lua
  2. -- Version: 3
  3.  
  4. -- Instances:
  5.  
  6. local JoesTool = Instance.new("ScreenGui")
  7. local OpenGUI = Instance.new("TextButton")
  8. local MainGUI = Instance.new("Frame")
  9. local TopBar = Instance.new("TextLabel")
  10. local Blood = Instance.new("TextButton")
  11. local Syntax = Instance.new("TextButton")
  12. local Ferry = Instance.new("TextButton")
  13. local Dirt = Instance.new("TextButton")
  14. local Money = Instance.new("TextButton")
  15. local Blueprint = Instance.new("TextButton")
  16. local KillGUI = Instance.new("TextButton")
  17. local extreamlumber = Instance.new("TextButton")
  18. local nextpage = Instance.new("TextButton")
  19. local frame_2 = Instance.new("Frame")
  20. local TopBar_2 = Instance.new("TextLabel")
  21. local VenyX = Instance.new("TextButton")
  22. local bluprntartbox = Instance.new("TextButton")
  23.  
  24. --Properties:
  25.  
  26. JoesTool.Name = "JoesTool"
  27. JoesTool.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  28. JoesTool.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  29.  
  30. wait(0.3)
  31. game:GetService("StarterGui"):SetCore("SendNotification", {
  32. Title = "Joes LT2 Hub";
  33. Text = "Successfully Loaded..."
  34. })
  35.  
  36. OpenGUI.Name = "OpenGUI"
  37. OpenGUI.Parent = JoesTool
  38. OpenGUI.BackgroundColor3 = Color3.new(1, 0, 0.0156863)
  39. OpenGUI.BackgroundTransparency = 0.5
  40. OpenGUI.BorderColor3 = Color3.new(0, 0, 0)
  41. OpenGUI.BorderSizePixel = 5
  42. OpenGUI.Position = UDim2.new(0.0205338895, 0, 0.898580134, 0)
  43. OpenGUI.Size = UDim2.new(0, 135, 0, 30)
  44. OpenGUI.Font = Enum.Font.SciFi
  45. OpenGUI.Text = ">> OPEN <<"
  46. OpenGUI.TextColor3 = Color3.new(1, 1, 1)
  47. OpenGUI.TextSize = 14
  48. OpenGUI.Active = true
  49. OpenGUI.Draggable = true
  50. OpenGUI.MouseButton1Click:Connect(function()
  51. print("Open")
  52. if Enabled == false then
  53. Enabled = true
  54. MainGUI.Visible = true
  55. OpenGUI.Text = ">> Close <<"
  56. wait(0.3)
  57. game:GetService("StarterGui"):SetCore("SendNotification", {
  58. Title = "Joe LT2 Hub";
  59. Text = "Opened.."
  60. })
  61. else
  62. Enabled = false
  63. MainGUI.Visible = false
  64. OpenGUI.Text = ">> Open <<"
  65. wait(0.3)
  66. game:GetService("StarterGui"):SetCore("SendNotification", {
  67. Title = "Joe LT2 Hub";
  68. Text = "Closed.."
  69. })
  70. end
  71. end)
  72.  
  73. MainGUI.Name = "MainGUI"
  74. MainGUI.Parent = JoesTool
  75. MainGUI.BackgroundColor3 = Color3.new(1, 0, 0.0156863)
  76. MainGUI.BackgroundTransparency = 0.5
  77. MainGUI.BorderColor3 = Color3.new(0, 0, 0)
  78. MainGUI.BorderSizePixel = 5
  79. MainGUI.Position = UDim2.new(0.32216236, 0, 0.106747046, 0)
  80. MainGUI.Size = UDim2.new(0, 275, 0, 327)
  81.  
  82. TopBar.Name = "TopBar"
  83. TopBar.Parent = MainGUI
  84. TopBar.BackgroundColor3 = Color3.new(0, 0, 0)
  85. TopBar.BackgroundTransparency = 0.5
  86. TopBar.BorderColor3 = Color3.new(0, 0, 0)
  87. TopBar.BorderSizePixel = 5
  88. TopBar.Position = UDim2.new(0, 0, 0.00301204808, 0)
  89. TopBar.Size = UDim2.new(0, 275, 0, 46)
  90. TopBar.Font = Enum.Font.SciFi
  91. TopBar.Text = " Joe's LT2 Hub"
  92. TopBar.TextColor3 = Color3.new(1, 1, 1)
  93. TopBar.TextSize = 25
  94. TopBar.TextXAlignment = Enum.TextXAlignment.Left
  95.  
  96. Blood.Name = "Blood"
  97. Blood.Parent = MainGUI
  98. Blood.BackgroundColor3 = Color3.new(0, 0, 0)
  99. Blood.BackgroundTransparency = 0.5
  100. Blood.BorderColor3 = Color3.new(0, 0, 0)
  101. Blood.BorderSizePixel = 5
  102. Blood.Position = UDim2.new(0.0526899844, 0, 0.2257763, 0)
  103. Blood.Size = UDim2.new(0, 247, 0, 15)
  104. Blood.Font = Enum.Font.SciFi
  105. Blood.Text = "Blood"
  106. Blood.TextColor3 = Color3.new(1, 1, 1)
  107. Blood.TextSize = 14
  108. Blood.MouseButton1Down:connect(function()
  109. loadstring(game:HttpGet(('https://pastebin.com/raw/qt3SDXvH'),true))()
  110. end)
  111.  
  112. Syntax.Name = "Syntax"
  113. Syntax.Parent = MainGUI
  114. Syntax.BackgroundColor3 = Color3.new(0, 0, 0)
  115. Syntax.BackgroundTransparency = 0.5
  116. Syntax.BorderColor3 = Color3.new(0, 0, 0)
  117. Syntax.BorderSizePixel = 5
  118. Syntax.Position = UDim2.new(0.0526899844, 0, 0.317531198, 0)
  119. Syntax.Size = UDim2.new(0, 247, 0, 15)
  120. Syntax.Font = Enum.Font.SciFi
  121. Syntax.Text = "Syntax"
  122. Syntax.TextColor3 = Color3.new(1, 1, 1)
  123. Syntax.TextSize = 14
  124. Syntax.MouseButton1Down:connect(function()
  125. loadstring(game:HttpGet(('https://pastebin.com/raw/wWxsHtxJ'),true))()
  126. end)
  127.  
  128. Ferry.Name = "Ferry"
  129. Ferry.Parent = MainGUI
  130. Ferry.BackgroundColor3 = Color3.new(0, 0, 0)
  131. Ferry.BackgroundTransparency = 0.5
  132. Ferry.BorderColor3 = Color3.new(0, 0, 0)
  133. Ferry.BorderSizePixel = 5
  134. Ferry.Position = UDim2.new(0.0490536205, 0, 0.425670773, 0)
  135. Ferry.Size = UDim2.new(0, 247, 0, 15)
  136. Ferry.Font = Enum.Font.SciFi
  137. Ferry.Text = "Ferry"
  138. Ferry.TextColor3 = Color3.new(1, 1, 1)
  139. Ferry.TextSize = 14
  140. Ferry.MouseButton1Down:connect(function()
  141. loadstring(game:HttpGet(('https://pastebin.com/raw/D46E1PYw'),true))()
  142. end)
  143.  
  144. Dirt.Name = "Dirt"
  145. Dirt.Parent = MainGUI
  146. Dirt.BackgroundColor3 = Color3.new(0, 0, 0)
  147. Dirt.BackgroundTransparency = 0.5
  148. Dirt.BorderColor3 = Color3.new(0, 0, 0)
  149. Dirt.BorderSizePixel = 5
  150. Dirt.Position = UDim2.new(0.0526899844, 0, 0.531171679, 0)
  151. Dirt.Size = UDim2.new(0, 247, 0, 15)
  152. Dirt.Font = Enum.Font.SciFi
  153. Dirt.Text = "Dirt"
  154. Dirt.TextColor3 = Color3.new(1, 1, 1)
  155. Dirt.TextSize = 14
  156. Dirt.MouseButton1Down:connect(function()
  157. loadstring(game:HttpGet(('https://pastebin.com/raw/77ESEmng'),true))()
  158. end)
  159.  
  160. Money.Name = "Money"
  161. Money.Parent = MainGUI
  162. Money.BackgroundColor3 = Color3.new(0, 0, 0)
  163. Money.BackgroundTransparency = 0.5
  164. Money.BorderColor3 = Color3.new(0, 0, 0)
  165. Money.BorderSizePixel = 5
  166. Money.Position = UDim2.new(0.0490536205, 0, 0.641266167, 0)
  167. Money.Size = UDim2.new(0, 247, 0, 15)
  168. Money.Font = Enum.Font.SciFi
  169. Money.Text = "Money Duper"
  170. Money.TextColor3 = Color3.new(1, 1, 1)
  171. Money.TextSize = 14
  172. Money.MouseButton1Down:connect(function()
  173. loadstring(game:HttpGet(('https://pastebin.com/raw/FFB3wAgi'),true))()
  174. end)
  175.  
  176. Blueprint.Name = "Blueprint"
  177. Blueprint.Parent = MainGUI
  178. Blueprint.BackgroundColor3 = Color3.new(0, 0, 0)
  179. Blueprint.BackgroundTransparency = 0.5
  180. Blueprint.BorderColor3 = Color3.new(0, 0, 0)
  181. Blueprint.BorderSizePixel = 5
  182. Blueprint.Position = UDim2.new(0.0526899844, 0, 0.752476513, 0)
  183. Blueprint.Size = UDim2.new(0, 247, 0, 15)
  184. Blueprint.Font = Enum.Font.SciFi
  185. Blueprint.Text = "Blueprint Art"
  186. Blueprint.TextColor3 = Color3.new(1, 1, 1)
  187. Blueprint.TextSize = 14
  188. Blueprint.MouseButton1Down:connect(function()
  189. loadstring(game:HttpGet(('https://nto.darkdevs.pro/uploads/hooferb.txt'),true))()
  190. end)
  191.  
  192. KillGUI.Name = "KillGUI"
  193. KillGUI.Parent = MainGUI
  194. KillGUI.BackgroundColor3 = Color3.new(0, 0, 0)
  195. KillGUI.BackgroundTransparency = 0.5
  196. KillGUI.BorderColor3 = Color3.new(0, 0, 0)
  197. KillGUI.BorderSizePixel = 5
  198. KillGUI.Position = UDim2.new(0.728833258, 0, 0.0525354892, 0)
  199. KillGUI.Size = UDim2.new(0, 61, 0, 15)
  200. KillGUI.Font = Enum.Font.SciFi
  201. KillGUI.Text = "KILL GUI"
  202. KillGUI.TextColor3 = Color3.new(1, 0, 0.0156863)
  203. KillGUI.TextSize = 14
  204. KillGUI.MouseButton1Click:Connect(function()
  205. JoesTool:Destroy()
  206. wait(0.3)
  207. game:GetService("StarterGui"):SetCore("SendNotification", {
  208. Title = "Joes LT2 Hub";
  209. Text = "Successfully Killed Hub"
  210. })
  211. end)
  212.  
  213. extreamlumber.Name = "extreamlumber"
  214. extreamlumber.Parent = MainGUI
  215. extreamlumber.BackgroundColor3 = Color3.new(0, 0, 0)
  216. extreamlumber.BackgroundTransparency = 0.5
  217. extreamlumber.BorderColor3 = Color3.new(0, 0, 0)
  218. extreamlumber.BorderSizePixel = 5
  219. extreamlumber.Position = UDim2.new(0.0526899844, 0, 0.857857585, 0)
  220. extreamlumber.Size = UDim2.new(0, 247, 0, 15)
  221. extreamlumber.Font = Enum.Font.SciFi
  222. extreamlumber.Text = "Extreame Lumbe"
  223. extreamlumber.TextColor3 = Color3.new(1, 1, 1)
  224. extreamlumber.TextSize = 14
  225. extreamlumber.MouseButton1Down:connect(function()
  226. loadstring(game:HttpGet(('https://pastebin.com/raw/PvQMf5vv'),true))()
  227. end)
  228.  
  229. nextpage.Name = "nextpage"
  230. nextpage.Parent = MainGUI
  231. nextpage.BackgroundColor3 = Color3.new(0, 0, 0)
  232. nextpage.BackgroundTransparency = 0.5
  233. nextpage.BorderColor3 = Color3.new(0, 0, 0)
  234. nextpage.BorderSizePixel = 5
  235. nextpage.Position = UDim2.new(0.0490536205, 0, 0.953190029, 0)
  236. nextpage.Size = UDim2.new(0, 247, 0, 15)
  237. nextpage.Font = Enum.Font.SciFi
  238. nextpage.Text = "next page "
  239. nextpage.TextColor3 = Color3.new(1, 1, 1)
  240. nextpage.TextSize = 14
  241. nextpage.Active = true
  242. nextpage.Draggable = true
  243. nextpage.MouseButton1Click:Connect(function()
  244. print("Open")
  245. if Enabled == false then
  246. Enabled = true
  247. frame_2.Visible = true
  248. OpenGUI.Text = ">> Close <<"
  249. wait(0.3)
  250. game:GetService("StarterGui"):SetCore("SendNotification", {
  251. Title = "Joe LT2 Hub";
  252. Text = "Opened.."
  253. })
  254. else
  255. Enabled = false
  256. frame_2.Visible = false
  257. OpenGUI.Text = ">> Open <<"
  258. wait(0.3)
  259. game:GetService("StarterGui"):SetCore("SendNotification", {
  260. Title = "Joe LT2 Hub";
  261. Text = "Closed.."
  262. })
  263. end
  264. end)
  265.  
  266. frame_2.Name = "frame_2"
  267. frame_2.Parent = JoesTool
  268. frame_2.BackgroundColor3 = Color3.new(1, 0, 0.0156863)
  269. frame_2.BackgroundTransparency = 0.5
  270. frame_2.BorderColor3 = Color3.new(0, 0, 0)
  271. frame_2.BorderSizePixel = 5
  272. frame_2.Position = UDim2.new(0.620182157, 0, 0.104659364, 0)
  273. frame_2.Size = UDim2.new(0, 275, 0, 327)
  274. frame_2.Visible = false
  275.  
  276. TopBar_2.Name = "TopBar"
  277. TopBar_2.Parent = frame_2
  278. TopBar_2.BackgroundColor3 = Color3.new(0, 0, 0)
  279. TopBar_2.BackgroundTransparency = 0.5
  280. TopBar_2.BorderColor3 = Color3.new(0, 0, 0)
  281. TopBar_2.BorderSizePixel = 5
  282. TopBar_2.Position = UDim2.new(0, 0, 0.00301204808, 0)
  283. TopBar_2.Size = UDim2.new(0, 275, 0, 46)
  284. TopBar_2.Font = Enum.Font.SciFi
  285. TopBar_2.Text = " Page 2 "
  286. TopBar_2.TextColor3 = Color3.new(1, 1, 1)
  287. TopBar_2.TextSize = 25
  288. TopBar_2.TextXAlignment = Enum.TextXAlignment.Left
  289.  
  290. VenyX.Name = "VenyX"
  291. VenyX.Parent = frame_2
  292. VenyX.BackgroundColor3 = Color3.new(0, 0, 0)
  293. VenyX.BackgroundTransparency = 0.5
  294. VenyX.BorderColor3 = Color3.new(0, 0, 0)
  295. VenyX.BorderSizePixel = 5
  296. VenyX.Position = UDim2.new(0.0526899844, 0, 0.22577633, 0)
  297. VenyX.Size = UDim2.new(0, 247, 0, 16)
  298. VenyX.Font = Enum.Font.SciFi
  299. VenyX.Text = "Venyx cracked"
  300. VenyX.TextColor3 = Color3.new(1, 1, 1)
  301. VenyX.TextSize = 14
  302. VenyX.MouseButton1Down:connect(function()
  303. loadstring(game:HttpGet(('https://pastebin.com/raw/WSmRCq69'),true))()
  304. end)
  305.  
  306. bluprntartbox.Name = "bluprnt art box"
  307. bluprntartbox.Parent = frame_2
  308. bluprntartbox.BackgroundColor3 = Color3.new(0, 0, 0)
  309. bluprntartbox.BackgroundTransparency = 0.5
  310. bluprntartbox.BorderColor3 = Color3.new(0, 0, 0)
  311. bluprntartbox.BorderSizePixel = 5
  312. bluprntartbox.Position = UDim2.new(0.0490536205, 0, 0.317519456, 0)
  313. bluprntartbox.Size = UDim2.new(0, 247, 0, 16)
  314. bluprntartbox.Font = Enum.Font.SciFi
  315. bluprntartbox.Text = "Blueprint Art box"
  316. bluprntartbox.TextColor3 = Color3.new(1, 1, 1)
  317. bluprntartbox.TextSize = 14
  318. VenyX.MouseButton1Down:connect(function()
  319. loadstring(game:HttpGet(('https://pastebin.com/raw/WSmRCq69'),true))()
  320. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement