Rusty_NAIL1

Lumber Tycoon 2 Gui

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