Advertisement
Guest User

LT2 Combined

a guest
Jan 1st, 2018
500
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 33.06 KB | None | 0 0
  1. -- Objects
  2.  
  3. local LT2Cash = Instance.new("ScreenGui")
  4. local DragablePart = Instance.new("Frame")
  5. local MainFrame = Instance.new("Frame")
  6. local BRejoinServer = Instance.new("TextButton")
  7. local BPhantomWood = Instance.new("TextButton")
  8. local BSellChoppedWood = Instance.new("TextButton")
  9. local BTPCutLogs = Instance.new("TextButton")
  10. local TextLabel = Instance.new("TextLabel")
  11. local BMinimize = Instance.new("TextButton")
  12.  
  13. -- Properties
  14.  
  15. LT2Cash.Name = "LT2Cash"
  16. LT2Cash.Parent = game.Players.LocalPlayer.PlayerGui
  17.  
  18. DragablePart.Name = "DragablePart"
  19. DragablePart.Parent = LT2Cash
  20. DragablePart.Active = true
  21. DragablePart.BackgroundColor3 = Color3.new(0.419608, 0.419608, 0.419608)
  22. DragablePart.BorderSizePixel = 0
  23. DragablePart.Draggable = true
  24. DragablePart.Position = UDim2.new(0.5, -153, 0.5, -153)
  25. DragablePart.Selectable = true
  26. DragablePart.Size = UDim2.new(0, 307, 0, 28)
  27.  
  28. MainFrame.Name = "MainFrame"
  29. MainFrame.Parent = DragablePart
  30. MainFrame.BackgroundColor3 = Color3.new(0.541176, 0.541176, 0.541176)
  31. MainFrame.BorderSizePixel = 0
  32. MainFrame.Position = UDim2.new(0, 0, 1, 0)
  33. MainFrame.Size = UDim2.new(0, 307, 0, 359)
  34.  
  35. BRejoinServer.Name = "BRejoinServer"
  36. BRejoinServer.Parent = MainFrame
  37. BRejoinServer.BackgroundColor3 = Color3.new(0.419608, 0.419608, 0.419608)
  38. BRejoinServer.BorderSizePixel = 0
  39. BRejoinServer.Position = UDim2.new(0.0390879475, 0, 0.626040161, 0)
  40. BRejoinServer.Size = UDim2.new(0, 285, 0, 50)
  41. BRejoinServer.Font = Enum.Font.SourceSansLight
  42. BRejoinServer.Text = "Rejoin Server"
  43. BRejoinServer.TextColor3 = Color3.new(1, 1, 1)
  44. BRejoinServer.TextScaled = true
  45. BRejoinServer.TextSize = 14
  46. BRejoinServer.TextWrapped = true
  47.  
  48. BPhantomWood.Name = "BPhantomWood"
  49. BPhantomWood.Parent = MainFrame
  50. BPhantomWood.BackgroundColor3 = Color3.new(0.419608, 0.419608, 0.419608)
  51. BPhantomWood.BorderSizePixel = 0
  52. BPhantomWood.Position = UDim2.new(0.0374592841, 0, 0.0511903912, 0)
  53. BPhantomWood.Size = UDim2.new(0, 285, 0, 50)
  54. BPhantomWood.Font = Enum.Font.SourceSansLight
  55. BPhantomWood.Text = "Teleport Phantom Wood"
  56. BPhantomWood.TextColor3 = Color3.new(1, 1, 1)
  57. BPhantomWood.TextScaled = true
  58. BPhantomWood.TextSize = 14
  59. BPhantomWood.TextWrapped = true
  60.  
  61. BSellChoppedWood.Name = "BSellChoppedWood"
  62. BSellChoppedWood.Parent = MainFrame
  63. BSellChoppedWood.BackgroundColor3 = Color3.new(0.419608, 0.419608, 0.419608)
  64. BSellChoppedWood.BorderSizePixel = 0
  65. BSellChoppedWood.Position = UDim2.new(0.0390879475, 0, 0.431527078, 0)
  66. BSellChoppedWood.Size = UDim2.new(0, 285, 0, 50)
  67. BSellChoppedWood.Font = Enum.Font.SourceSansLight
  68. BSellChoppedWood.Text = "Sell Chopped Wood"
  69. BSellChoppedWood.TextColor3 = Color3.new(1, 1, 1)
  70. BSellChoppedWood.TextScaled = true
  71. BSellChoppedWood.TextSize = 14
  72. BSellChoppedWood.TextWrapped = true
  73.  
  74. BTPCutLogs.Name = "BTPCutLogs"
  75. BTPCutLogs.Parent = MainFrame
  76. BTPCutLogs.BackgroundColor3 = Color3.new(0.419608, 0.419608, 0.419608)
  77. BTPCutLogs.BorderSizePixel = 0
  78. BTPCutLogs.Position = UDim2.new(0.0342019536, 0, 0.233641639, 0)
  79. BTPCutLogs.Size = UDim2.new(0, 285, 0, 50)
  80. BTPCutLogs.Font = Enum.Font.SourceSansLight
  81. BTPCutLogs.Text = "Teleport Cut Logs To You"
  82. BTPCutLogs.TextColor3 = Color3.new(1, 1, 1)
  83. BTPCutLogs.TextScaled = true
  84. BTPCutLogs.TextSize = 14
  85. BTPCutLogs.TextWrapped = true
  86.  
  87. TextLabel.Parent = MainFrame
  88. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  89. TextLabel.BackgroundTransparency = 1
  90. TextLabel.BorderSizePixel = 0
  91. TextLabel.Position = UDim2.new(-0.00162866444, 0, 0.818941474, 0)
  92. TextLabel.Size = UDim2.new(0, 307, 0, 63)
  93. TextLabel.Font = Enum.Font.SourceSansLight
  94. TextLabel.Text = "Made by: Hoofer/HowToBasic666"
  95. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  96. TextLabel.TextScaled = true
  97. TextLabel.TextSize = 14
  98. TextLabel.TextWrapped = true
  99.  
  100. BMinimize.Name = "BMinimize"
  101. BMinimize.Parent = DragablePart
  102. BMinimize.BackgroundColor3 = Color3.new(0.419608, 0.419608, 0.419608)
  103. BMinimize.BorderSizePixel = 0
  104. BMinimize.Position = UDim2.new(0.872964144, 0, 0, 0)
  105. BMinimize.Size = UDim2.new(0, 39, 0, 28)
  106. BMinimize.Font = Enum.Font.SourceSansLight
  107. BMinimize.Text = "-"
  108. BMinimize.TextColor3 = Color3.new(1, 1, 1)
  109. BMinimize.TextScaled = true
  110. BMinimize.TextSize = 14
  111. BMinimize.TextWrapped = true
  112.  
  113. Option = false
  114. Found = false
  115. Tool = "None"
  116. Down = false
  117. Mouse = game.Players.LocalPlayer:GetMouse()
  118.  
  119. function move(object)
  120. object:MoveTo(game.Players.LocalPlayer.Character.Head.Position + Vector3.new(5, -4, 5))
  121. object.WoodSection.Anchored = true
  122. wait(2)
  123. object.WoodSection.Anchored = false
  124. end
  125.  
  126. function tree(object, class)
  127. for i, v in pairs(object:GetChildren()) do
  128. if v.Name == "TreeClass" then
  129. if v.Value == class then
  130. if Found == false then
  131. move(object)
  132. Found = true
  133. end
  134. end
  135. end
  136. end
  137. end
  138.  
  139. BMinimize.MouseButton1Click:connect(function()
  140. if MainFrame.Visible == false then
  141. MainFrame.Visible = true
  142. else
  143. MainFrame.Visible = false
  144. end
  145. end)
  146.  
  147. BTPCutLogs.MouseButton1Click:connect(function()
  148. for _, Log in pairs(game.Workspace.LogModels:GetChildren()) do
  149. if Log.Name:sub(1, 6) == "Loose_" and Log:findFirstChild("Owner") then
  150. if Log.Owner.Value == game.Players.LocalPlayer then
  151. Log:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(0, 15, 0))
  152. end
  153. end
  154. end
  155. end)
  156.  
  157.  
  158. BPhantomWood.MouseButton1Down:connect(function()
  159. for i, v in pairs(game.Workspace:GetChildren()) do
  160. if v.Name == "TreeRegion" then
  161. for a, b in pairs(v:GetChildren()) do
  162. tree(b, "LoneCave")
  163. end
  164. end
  165. end
  166. end)
  167.  
  168.  
  169. BSellChoppedWood.MouseButton1Click:connect(function()
  170. for _, Log in pairs(workspace.LogModels:GetChildren()) do
  171. if Log.Name:sub(1, 6) == "Loose_" and Log:findFirstChild("Owner") then
  172. if Log.Owner.Value == game.Players.LocalPlayer then
  173. for i,v in pairs(Log:GetChildren()) do
  174. if v.Name=="WoodSection" then
  175. spawn(function()
  176. for i=1,10 do
  177. wait()
  178. v.CFrame=CFrame.new(Vector3.new(315, -0.296, 85.791))*CFrame.Angles(math.rad(90),0,0)
  179. end
  180. end)
  181. end
  182. end
  183. spawn(function()
  184. for i=1,20 do
  185. wait()
  186. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Log)
  187. end
  188. end)
  189. end
  190. end
  191. end
  192. end)
  193.  
  194. BRejoinServer.MouseButton1Down:connect(function()
  195. local placeId = 13822889
  196.  
  197. game:GetService("TeleportService"):Teleport(placeId)
  198. end)
  199. -- Make sure to join our Discord for the newest exploits, for games, and roblox! https://discord.gg/jbfYfKa
  200. -- Also make sure to check out our youtube for roblox exploits! https://www.youtube.com/c/KiruzaExploits
  201.  
  202. if game.CoreGui:FindFirstChild("Hard Lumber The Easy Way Cracked by Tap <3") then
  203. game.CoreGui["Hard Lumber The Easy Way Cracked by Tap <3"]:remove()
  204. end
  205.  
  206. -- Objects
  207.  
  208. local HardLumberTheEasyWay = Instance.new("ScreenGui")
  209. local Main = Instance.new("Frame")
  210. local Title = Instance.new("Frame")
  211. local TitleLabel = Instance.new("TextLabel")
  212. local Teleports = Instance.new("ScrollingFrame")
  213. local BobsShack = Instance.new("TextButton")
  214. local BoxedCars = Instance.new("TextButton")
  215. local Cave = Instance.new("TextButton")
  216. local Dock = Instance.new("TextButton")
  217. local FancyFurnishings = Instance.new("TextButton")
  218. local FineArtsShop = Instance.new("TextButton")
  219. local LandStore = Instance.new("TextButton")
  220. local LinksLogic = Instance.new("TextButton")
  221. local PalmIsland = Instance.new("TextButton")
  222. local ShrineofSight = Instance.new("TextButton")
  223. local Spawn = Instance.new("TextButton")
  224. local Swamp = Instance.new("TextButton")
  225. local TheDen = Instance.new("TextButton")
  226. local Volcano = Instance.new("TextButton")
  227. local WoodRUs = Instance.new("TextButton")
  228. local EndTimes = Instance.new("TextButton")
  229. local Players = Instance.new("Frame")
  230. local Player5 = Instance.new("TextButton")
  231. local Player6 = Instance.new("TextButton")
  232. local Player1 = Instance.new("TextButton")
  233. local Player4 = Instance.new("TextButton")
  234. local Player3 = Instance.new("TextButton")
  235. local Player2 = Instance.new("TextButton")
  236. local TpSelected = Instance.new("TextLabel")
  237. local PlrSelected = Instance.new("TextLabel")
  238. local TpToPlr = Instance.new("TextButton")
  239. local TpToLocation = Instance.new("TextButton")
  240. local MP = Instance.new("TextButton")
  241. local BringWood = Instance.new("TextButton")
  242. local Close = Instance.new("TextButton")
  243. local Open = Instance.new("TextButton")
  244. local Login = Instance.new("Frame")
  245. local Login_2 = Instance.new("TextButton")
  246. local Username = Instance.new("TextLabel")
  247. local Password = Instance.new("TextBox")
  248. local Title_2 = Instance.new("TextLabel")
  249. local TL = Instance.new("TextLabel")
  250. local CG = game.CoreGui
  251. local plr = game.Players.LocalPlayer
  252. local Credits = Instance.new("TextLabel")
  253.  
  254. -- Properties
  255.  
  256. HardLumberTheEasyWay.Name = "Hard Lumber The Easy Way Cracked by Tap <3"
  257. HardLumberTheEasyWay.Parent = CG
  258.  
  259. local CGG = CG["Hard Lumber The Easy Way Cracked by Tap <3"]
  260.  
  261.  
  262. Main.Name = "Main"
  263. Main.Parent = HardLumberTheEasyWay
  264. Main.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  265. Main.BorderColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  266. Main.Position = UDim2.new(0, 500, 0, 150)
  267. Main.Size = UDim2.new(0, 500, 0, 350)
  268. Main.Visible = false
  269. Main.Draggable = true
  270. Main.Active = true
  271.  
  272. Credits.Name = "Credits"
  273. Credits.Parent = HardLumberTheEasyWay
  274. Credits.BackgroundColor3 = Color3.new(1, 1, 1)
  275. Credits.BackgroundTransparency = 1
  276. Credits.Position = UDim2.new(0, 1463, 0, 657)
  277. Credits.Size = UDim2.new(0, 166, 0, 159)
  278. Credits.Font = Enum.Font.SourceSans
  279. Credits.FontSize = Enum.FontSize.Size36
  280. Credits.Text = "Logged in as mohammadyas"
  281. Credits.TextColor3 = Color3.new(0, 0.215686, 1)
  282. Credits.TextScaled = true
  283. Credits.TextSize = 36
  284. Credits.TextWrapped = true
  285.  
  286.  
  287. Title.Name = "Title"
  288. Title.Parent = Main
  289. Title.BackgroundColor3 = Color3.new(1, 0.333333, 0.345098)
  290. Title.Size = UDim2.new(0, 500, 0, 35)
  291.  
  292. TitleLabel.Name = "TitleLabel"
  293. TitleLabel.Parent = Title
  294. TitleLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  295. TitleLabel.BackgroundTransparency = 1
  296. TitleLabel.Position = UDim2.new(0, 5, 0, 0)
  297. TitleLabel.Size = UDim2.new(0, 200, 0, 35)
  298. TitleLabel.Font = Enum.Font.SourceSansBold
  299. TitleLabel.FontSize = Enum.FontSize.Size18
  300. TitleLabel.Text = "Hard Lumber The Easy Way Cracked by Tap <3"
  301. TitleLabel.TextColor3 = Color3.new(0.901961, 0.901961, 0.901961)
  302. TitleLabel.TextSize = 18
  303. TitleLabel.TextXAlignment = Enum.TextXAlignment.Left
  304.  
  305. Teleports.Name = "Teleports"
  306. Teleports.Parent = Main
  307. Teleports.BackgroundColor3 = Color3.new(1, 0.333333, 0.345098)
  308. Teleports.Position = UDim2.new(0, 15, 0, 125)
  309. Teleports.Size = UDim2.new(0, 125, 0, 200)
  310. Teleports.CanvasSize = UDim2.new(0, 0, 1, 60)
  311. Teleports.ScrollBarThickness = 6
  312.  
  313. BobsShack.Name = "Bob's Shack"
  314. BobsShack.Parent = Teleports
  315. BobsShack.BackgroundColor3 = Color3.new(0.780392, 0.309804, 0.341176)
  316. BobsShack.Position = UDim2.new(0, 0, 0, 300)
  317. BobsShack.Size = UDim2.new(0, 117, 0, 30)
  318. BobsShack.Font = Enum.Font.Cartoon
  319. BobsShack.FontSize = Enum.FontSize.Size14
  320. BobsShack.Text = " Bob's Shack"
  321. BobsShack.TextSize = 14
  322. BobsShack.TextXAlignment = Enum.TextXAlignment.Left
  323.  
  324. BoxedCars.Name = "Boxed Cars"
  325. BoxedCars.Parent = Teleports
  326. BoxedCars.BackgroundColor3 = Color3.new(0.780392, 0.309804, 0.341176)
  327. BoxedCars.Position = UDim2.new(0, 0, 0, 250)
  328. BoxedCars.Size = UDim2.new(0, 117, 0, 30)
  329. BoxedCars.Font = Enum.Font.Cartoon
  330. BoxedCars.FontSize = Enum.FontSize.Size14
  331. BoxedCars.Text = " Boxed Cars"
  332. BoxedCars.TextSize = 14
  333. BoxedCars.TextXAlignment = Enum.TextXAlignment.Left
  334.  
  335. Cave.Name = "Cave"
  336. Cave.Parent = Teleports
  337. Cave.BackgroundColor3 = Color3.new(0.780392, 0.309804, 0.341176)
  338. Cave.Position = UDim2.new(0, 0, 0, 125)
  339. Cave.Size = UDim2.new(0, 117, 0, 30)
  340. Cave.Font = Enum.Font.Cartoon
  341. Cave.FontSize = Enum.FontSize.Size14
  342. Cave.Text = " Cave"
  343. Cave.TextSize = 14
  344. Cave.TextXAlignment = Enum.TextXAlignment.Left
  345.  
  346. Dock.Name = "Dock"
  347. Dock.Parent = Teleports
  348. Dock.BackgroundColor3 = Color3.new(0.780392, 0.309804, 0.341176)
  349. Dock.Position = UDim2.new(0, 0, 0, 75)
  350. Dock.Size = UDim2.new(0, 117, 0, 30)
  351. Dock.Font = Enum.Font.Cartoon
  352. Dock.FontSize = Enum.FontSize.Size14
  353. Dock.Text = " Dock"
  354. Dock.TextSize = 14
  355. Dock.TextXAlignment = Enum.TextXAlignment.Left
  356.  
  357. FancyFurnishings.Name = "Fancy Furnishings"
  358. FancyFurnishings.Parent = Teleports
  359. FancyFurnishings.BackgroundColor3 = Color3.new(0.780392, 0.309804, 0.341176)
  360. FancyFurnishings.Position = UDim2.new(0, 0, 0, 225)
  361. FancyFurnishings.Size = UDim2.new(0, 117, 0, 30)
  362. FancyFurnishings.Font = Enum.Font.Cartoon
  363. FancyFurnishings.FontSize = Enum.FontSize.Size14
  364. FancyFurnishings.Text = " Fancy Furnishings"
  365. FancyFurnishings.TextSize = 14
  366. FancyFurnishings.TextXAlignment = Enum.TextXAlignment.Left
  367.  
  368. FineArtsShop.Name = "Fine Arts Shop"
  369. FineArtsShop.Parent = Teleports
  370. FineArtsShop.BackgroundColor3 = Color3.new(0.780392, 0.309804, 0.341176)
  371. FineArtsShop.Position = UDim2.new(0, 0, 0, 275)
  372. FineArtsShop.Size = UDim2.new(0, 117, 0, 30)
  373. FineArtsShop.Font = Enum.Font.Cartoon
  374. FineArtsShop.FontSize = Enum.FontSize.Size14
  375. FineArtsShop.Text = " Fine Arts Shop"
  376. FineArtsShop.TextSize = 14
  377. FineArtsShop.TextXAlignment = Enum.TextXAlignment.Left
  378.  
  379. LandStore.Name = "Land Store"
  380. LandStore.Parent = Teleports
  381. LandStore.BackgroundColor3 = Color3.new(0.780392, 0.309804, 0.341176)
  382. LandStore.Position = UDim2.new(0, 0, 0, 50)
  383. LandStore.Size = UDim2.new(0, 117, 0, 30)
  384. LandStore.Font = Enum.Font.Cartoon
  385. LandStore.FontSize = Enum.FontSize.Size14
  386. LandStore.Text = " Land Store"
  387. LandStore.TextSize = 14
  388. LandStore.TextXAlignment = Enum.TextXAlignment.Left
  389.  
  390. LinksLogic.Name = "Link's Logic"
  391. LinksLogic.Parent = Teleports
  392. LinksLogic.BackgroundColor3 = Color3.new(0.780392, 0.309804, 0.341176)
  393. LinksLogic.Position = UDim2.new(0, 0, 0, 100)
  394. LinksLogic.Size = UDim2.new(0, 117, 0, 30)
  395. LinksLogic.Font = Enum.Font.Cartoon
  396. LinksLogic.FontSize = Enum.FontSize.Size14
  397. LinksLogic.Text = " Link's Logic"
  398. LinksLogic.TextSize = 14
  399. LinksLogic.TextXAlignment = Enum.TextXAlignment.Left
  400.  
  401. PalmIsland.Name = "Palm Island"
  402. PalmIsland.Parent = Teleports
  403. PalmIsland.BackgroundColor3 = Color3.new(0.780392, 0.309804, 0.341176)
  404. PalmIsland.Position = UDim2.new(0, 0, 0, 200)
  405. PalmIsland.Size = UDim2.new(0, 117, 0, 30)
  406. PalmIsland.Font = Enum.Font.Cartoon
  407. PalmIsland.FontSize = Enum.FontSize.Size14
  408. PalmIsland.Text = " Palm Island"
  409. PalmIsland.TextSize = 14
  410. PalmIsland.TextXAlignment = Enum.TextXAlignment.Left
  411.  
  412. ShrineofSight.Name = "Shrine of Sight"
  413. ShrineofSight.Parent = Teleports
  414. ShrineofSight.BackgroundColor3 = Color3.new(0.780392, 0.309804, 0.341176)
  415. ShrineofSight.Position = UDim2.new(0, 0, 0, 325)
  416. ShrineofSight.Size = UDim2.new(0, 117, 0, 30)
  417. ShrineofSight.Font = Enum.Font.Cartoon
  418. ShrineofSight.FontSize = Enum.FontSize.Size14
  419. ShrineofSight.Text = " Shrine of Sight"
  420. ShrineofSight.TextSize = 14
  421. ShrineofSight.TextXAlignment = Enum.TextXAlignment.Left
  422.  
  423. Spawn.Name = "Spawn"
  424. Spawn.Parent = Teleports
  425. Spawn.BackgroundColor3 = Color3.new(0.780392, 0.309804, 0.341176)
  426. Spawn.Size = UDim2.new(0, 117, 0, 30)
  427. Spawn.Font = Enum.Font.Cartoon
  428. Spawn.FontSize = Enum.FontSize.Size14
  429. Spawn.Text = " Spawn"
  430. Spawn.TextSize = 14
  431. Spawn.TextXAlignment = Enum.TextXAlignment.Left
  432.  
  433. Swamp.Name = "Swamp"
  434. Swamp.Parent = Teleports
  435. Swamp.BackgroundColor3 = Color3.new(0.780392, 0.309804, 0.341176)
  436. Swamp.Position = UDim2.new(0, 0, 0, 175)
  437. Swamp.Size = UDim2.new(0, 117, 0, 30)
  438. Swamp.Font = Enum.Font.Cartoon
  439. Swamp.FontSize = Enum.FontSize.Size14
  440. Swamp.Text = " Swamp"
  441. Swamp.TextSize = 14
  442. Swamp.TextXAlignment = Enum.TextXAlignment.Left
  443.  
  444. TheDen.Name = "The Den"
  445. TheDen.Parent = Teleports
  446. TheDen.BackgroundColor3 = Color3.new(0.780392, 0.309804, 0.341176)
  447. TheDen.Position = UDim2.new(0, 0, 0, 350)
  448. TheDen.Size = UDim2.new(0, 117, 0, 30)
  449. TheDen.Font = Enum.Font.Cartoon
  450. TheDen.FontSize = Enum.FontSize.Size14
  451. TheDen.Text = " The Den"
  452. TheDen.TextSize = 14
  453. TheDen.TextXAlignment = Enum.TextXAlignment.Left
  454.  
  455. Volcano.Name = "Volcano"
  456. Volcano.Parent = Teleports
  457. Volcano.BackgroundColor3 = Color3.new(0.780392, 0.309804, 0.341176)
  458. Volcano.Position = UDim2.new(0, 0, 0, 150)
  459. Volcano.Size = UDim2.new(0, 117, 0, 30)
  460. Volcano.Font = Enum.Font.Cartoon
  461. Volcano.FontSize = Enum.FontSize.Size14
  462. Volcano.Text = " Volcano"
  463. Volcano.TextSize = 14
  464. Volcano.TextXAlignment = Enum.TextXAlignment.Left
  465.  
  466. WoodRUs.Name = "Wood R Us"
  467. WoodRUs.Parent = Teleports
  468. WoodRUs.BackgroundColor3 = Color3.new(0.780392, 0.309804, 0.341176)
  469. WoodRUs.Position = UDim2.new(0, 0, 0, 25)
  470. WoodRUs.Size = UDim2.new(0, 117, 0, 30)
  471. WoodRUs.Font = Enum.Font.Cartoon
  472. WoodRUs.FontSize = Enum.FontSize.Size14
  473. WoodRUs.Text = " Wood R Us"
  474. WoodRUs.TextSize = 14
  475. WoodRUs.TextXAlignment = Enum.TextXAlignment.Left
  476.  
  477. EndTimes.Name = "End Times"
  478. EndTimes.Parent = Teleports
  479. EndTimes.BackgroundColor3 = Color3.new(0.780392, 0.309804, 0.341176)
  480. EndTimes.Position = UDim2.new(0, 0, 0, 380)
  481. EndTimes.Size = UDim2.new(0, 117, 0, 30)
  482. EndTimes.Font = Enum.Font.Cartoon
  483. EndTimes.FontSize = Enum.FontSize.Size14
  484. EndTimes.Text = " End Times"
  485. EndTimes.TextSize = 14
  486. EndTimes.TextXAlignment = Enum.TextXAlignment.Left
  487.  
  488. Players.Name = "Players"
  489. Players.Parent = Main
  490. Players.BackgroundColor3 = Color3.new(1, 0.333333, 0.345098)
  491. Players.Position = UDim2.new(0, 170, 0, 125)
  492. Players.Size = UDim2.new(0, 160, 0, 180)
  493.  
  494. Player5.Name = "Player5"
  495. Player5.Parent = Players
  496. Player5.BackgroundColor3 = Color3.new(0.780392, 0.309804, 0.341176)
  497. Player5.BorderSizePixel = 0
  498. Player5.Position = UDim2.new(0, 0, 0, 120)
  499. Player5.Size = UDim2.new(0, 160, 0, 30)
  500. Player5.Font = Enum.Font.SciFi
  501. Player5.FontSize = Enum.FontSize.Size14
  502. Player5.Text = ""
  503. Player5.TextSize = 14
  504.  
  505. Player6.Name = "Player6"
  506. Player6.Parent = Players
  507. Player6.BackgroundColor3 = Color3.new(0.780392, 0.309804, 0.341176)
  508. Player6.BorderSizePixel = 0
  509. Player6.Position = UDim2.new(0, 0, 0, 150)
  510. Player6.Size = UDim2.new(0, 160, 0, 30)
  511. Player6.Font = Enum.Font.SciFi
  512. Player6.FontSize = Enum.FontSize.Size14
  513. Player6.Text = ""
  514. Player6.TextSize = 14
  515.  
  516. Player1.Name = "Player1"
  517. Player1.Parent = Players
  518. Player1.BackgroundColor3 = Color3.new(0.780392, 0.309804, 0.341176)
  519. Player1.BorderSizePixel = 0
  520. Player1.Size = UDim2.new(0, 160, 0, 30)
  521. Player1.Font = Enum.Font.SciFi
  522. Player1.FontSize = Enum.FontSize.Size14
  523. Player1.Text = ""
  524. Player1.TextSize = 14
  525.  
  526. Player4.Name = "Player4"
  527. Player4.Parent = Players
  528. Player4.BackgroundColor3 = Color3.new(0.780392, 0.309804, 0.341176)
  529. Player4.BorderSizePixel = 0
  530. Player4.Position = UDim2.new(0, 0, 0, 90)
  531. Player4.Size = UDim2.new(0, 160, 0, 30)
  532. Player4.Font = Enum.Font.SciFi
  533. Player4.FontSize = Enum.FontSize.Size14
  534. Player4.Text = ""
  535. Player4.TextSize = 14
  536.  
  537. Player3.Name = "Player3"
  538. Player3.Parent = Players
  539. Player3.BackgroundColor3 = Color3.new(0.780392, 0.309804, 0.341176)
  540. Player3.BorderSizePixel = 0
  541. Player3.Position = UDim2.new(0, 0, 0, 60)
  542. Player3.Size = UDim2.new(0, 160, 0, 30)
  543. Player3.Font = Enum.Font.SciFi
  544. Player3.FontSize = Enum.FontSize.Size14
  545. Player3.Text = ""
  546. Player3.TextSize = 14
  547.  
  548. Player2.Name = "Player2"
  549. Player2.Parent = Players
  550. Player2.BackgroundColor3 = Color3.new(0.780392, 0.309804, 0.341176)
  551. Player2.BorderSizePixel = 0
  552. Player2.Position = UDim2.new(0, 0, 0, 30)
  553. Player2.Size = UDim2.new(0, 160, 0, 30)
  554. Player2.Font = Enum.Font.SciFi
  555. Player2.FontSize = Enum.FontSize.Size14
  556. Player2.Text = ""
  557. Player2.TextSize = 14
  558.  
  559. TpSelected.Name = "TpSelected"
  560. TpSelected.Parent = Main
  561. TpSelected.BackgroundColor3 = Color3.new(1, 0.333333, 0.345098)
  562. TpSelected.Position = UDim2.new(0, 15, 0, 75)
  563. TpSelected.Size = UDim2.new(0, 125, 0, 35)
  564. TpSelected.Font = Enum.Font.SourceSansBold
  565. TpSelected.FontSize = Enum.FontSize.Size18
  566. TpSelected.Text = "No Location Selected"
  567. TpSelected.TextSize = 15
  568. TpSelected.TextWrapped = true
  569.  
  570. PlrSelected.Name = "PlrSelected"
  571. PlrSelected.Parent = Main
  572. PlrSelected.BackgroundColor3 = Color3.new(1, 0.333333, 0.345098)
  573. PlrSelected.Position = UDim2.new(0, 170, 0, 75)
  574. PlrSelected.Size = UDim2.new(0, 160, 0, 35)
  575. PlrSelected.Font = Enum.Font.SourceSansBold
  576. PlrSelected.FontSize = Enum.FontSize.Size18
  577. PlrSelected.Text = " No Player Selected"
  578. PlrSelected.TextSize = 16
  579. PlrSelected.TextWrapped = true
  580.  
  581. TpToPlr.Name = "TpToPlr"
  582. TpToPlr.Parent = Main
  583. TpToPlr.BackgroundColor3 = Color3.new(0.780392, 0.309804, 0.341176)
  584. TpToPlr.Position = UDim2.new(0, 335, 0, 300)
  585. TpToPlr.Size = UDim2.new(0, 160, 0, 30)
  586. TpToPlr.Font = Enum.Font.SciFi
  587. TpToPlr.FontSize = Enum.FontSize.Size14
  588. TpToPlr.Text = "Teleport To Player"
  589. TpToPlr.TextSize = 14
  590.  
  591. TpToLocation.Name = "TpToLocation"
  592. TpToLocation.Parent = Main
  593. TpToLocation.BackgroundColor3 = Color3.new(0.780392, 0.309804, 0.341176)
  594. TpToLocation.Position = UDim2.new(0, 335, 0, 250)
  595. TpToLocation.Size = UDim2.new(0, 160, 0, 30)
  596. TpToLocation.Font = Enum.Font.SciFi
  597. TpToLocation.FontSize = Enum.FontSize.Size14
  598. TpToLocation.Text = "Teleport To Location"
  599. TpToLocation.TextSize = 14
  600.  
  601. MP.Name = "MP"
  602. MP.Parent = Main
  603. MP.BackgroundColor3 = Color3.new(0.780392, 0.309804, 0.341176)
  604. MP.Position = UDim2.new(0, 335, 0, 200)
  605. MP.Size = UDim2.new(0, 160, 0, 30)
  606. MP.Font = Enum.Font.SciFi
  607. MP.FontSize = Enum.FontSize.Size14
  608. MP.Text = "TP To your plot"
  609. MP.TextSize = 14
  610.  
  611. BringWood.Name = "BringWood"
  612. BringWood.Parent = Main
  613. BringWood.BackgroundColor3 = Color3.new(0.780392, 0.309804, 0.341176)
  614. BringWood.Position = UDim2.new(0, 335, 0, 150)
  615. BringWood.Size = UDim2.new(0, 160, 0, 30)
  616. BringWood.Font = Enum.Font.SciFi
  617. BringWood.FontSize = Enum.FontSize.Size14
  618. BringWood.Text = "Bring wood to you"
  619. BringWood.TextSize = 14
  620.  
  621. Close.Name = "Close"
  622. Close.Parent = Main
  623. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  624. Close.BackgroundTransparency = 1
  625. Close.Position = UDim2.new(0, 475, 0, 8)
  626. Close.Size = UDim2.new(0, 25, 0, 25)
  627. Close.Font = Enum.Font.SciFi
  628. Close.FontSize = Enum.FontSize.Size18
  629. Close.Text = "X"
  630. Close.TextColor3 = Color3.new(0.0470588, 0.52549, 0.631373)
  631. Close.TextSize = 18
  632.  
  633. Open.Name = "Open"
  634. Open.Parent = HardLumberTheEasyWay
  635. Open.BackgroundColor3 = Color3.new(1, 1, 1)
  636. Open.Position = UDim2.new(0, 0, 0, 300)
  637. Open.Size = UDim2.new(0, 50, 0, 25)
  638. Open.Visible = false
  639. Open.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  640. Open.Font = Enum.Font.SourceSans
  641. Open.FontSize = Enum.FontSize.Size14
  642. Open.Text = "Open"
  643. Open.TextSize = 14
  644.  
  645. Login.Name = "Login"
  646. Login.Parent = HardLumberTheEasyWay
  647. Login.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  648. Login.BorderColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  649. Login.Position = UDim2.new(0, 300, 0, 145)
  650. Login.Size = UDim2.new(0, 325, 0, 250)
  651. Login.Draggable = true
  652. Login.Active = true
  653.  
  654. Login_2.Name = "Login"
  655. Login_2.Parent = Login
  656. Login_2.BackgroundColor3 = Color3.new(1, 0.403922, 0.411765)
  657. Login_2.BorderSizePixel = 2
  658. Login_2.Position = UDim2.new(0, 100, 0, 175)
  659. Login_2.Size = UDim2.new(0, 100, 0, 25)
  660. Login_2.Font = Enum.Font.SciFi
  661. Login_2.FontSize = Enum.FontSize.Size24
  662. Login_2.Text = "Login"
  663. Login_2.TextColor3 = Color3.new(1, 1, 1)
  664. Login_2.TextSize = 20
  665.  
  666. Username.Name = "Username"
  667. Username.Parent = Login
  668. Username.BackgroundColor3 = Color3.new(1, 0.298039, 0.309804)
  669. Username.Position = UDim2.new(0, 75, 0, 75)
  670. Username.Size = UDim2.new(0, 150, 0, 25)
  671. Username.Font = Enum.Font.SciFi
  672. Username.FontSize = Enum.FontSize.Size14
  673. Username.Text = "mohammadyas"
  674. Username.TextSize = 14
  675. Username.TextXAlignment = Enum.TextXAlignment.Left
  676.  
  677. Password.Name = "Password"
  678. Password.Parent = Login
  679. Password.BackgroundColor3 = Color3.new(1, 0.298039, 0.309804)
  680. Password.Position = UDim2.new(0, 75, 0, 115)
  681. Password.Size = UDim2.new(0, 150, 0, 25)
  682. Password.Font = Enum.Font.SciFi
  683. Password.FontSize = Enum.FontSize.Size14
  684. Password.Text = "mgh77fge"
  685. Password.TextSize = 14
  686. Password.TextXAlignment = Enum.TextXAlignment.Left
  687.  
  688. Title_2.Name = "Title"
  689. Title_2.Parent = Login
  690. Title_2.BackgroundColor3 = Color3.new(1, 0.180392, 0.192157)
  691. Title_2.Size = UDim2.new(0, 325, 0, 25)
  692. Title_2.Font = Enum.Font.Highway
  693. Title_2.FontSize = Enum.FontSize.Size14
  694. Title_2.Text = "Hard Lumber The Easy Way Cracked by Tap <3"
  695. Title_2.TextColor3 = Color3.new(1, 1, 1)
  696. Title_2.TextSize = 14
  697.  
  698. CGG.Login.Login.MouseButton1Down:connect(function()
  699. if Username.Text == "mohammadyas" and Password.Text == "mgh77fge" then
  700. CGG.Open.Visible = true
  701. CGG.Login.Visible = false
  702. else
  703. CGG.Login.Password.Text = "Incorrect Password"
  704. wait(1)
  705. CGG.Login.Password.Text = "Password"
  706. end
  707. end)
  708.  
  709. TL.Name = "TL"
  710. TL.Parent = Login
  711. TL.BackgroundColor3 = Color3.new(1, 0.180392, 0.192157)
  712. TL.BackgroundTransparency = 1
  713. TL.Position = UDim2.new(0, 100, 0, 35)
  714. TL.Size = UDim2.new(0, 100, 0, 25)
  715. TL.Font = Enum.Font.Highway
  716. TL.FontSize = Enum.FontSize.Size14
  717. TL.Text = "Welcome, " .. plr.Name
  718. TL.TextColor3 = Color3.new(1, 1, 1)
  719. TL.TextSize = 14
  720. TL.TextStrokeColor3 = Color3.new(1, 1, 1)
  721.  
  722. local WayPoints = {
  723. ["Spawn"] = Vector3.new(155, 3, 74),
  724. ["Wood R Us"] = Vector3.new(265, 3, 57),
  725. ["Land Store"] = Vector3.new(258, 3, -99),
  726. ["Dock"] = Vector3.new(1114, -1, -197),
  727. ["Link's Logic"] = Vector3.new(4605, 3, -727),
  728. ["Cave"] = Vector3.new(3581, -179, 430),
  729. ["Volcano"] = Vector3.new(-1585, 622, 1140),
  730. ["Swamp"] = Vector3.new(-1209, 132, -801),
  731. ["Palm Island"] = Vector3.new(2549, -5, -42),
  732. ["Fancy Furnishings"] = Vector3.new(491, 3, -1720),
  733. ["Boxed Cars"] = Vector3.new(509, 3, -1463),
  734. ["Fine Arts Shop"] = Vector3.new(5207, -166, 719),
  735. ["Bob's Shack"] = Vector3.new(260, 8, -2542),
  736. ["Shrine of Sight"] = Vector3.new(-1600, 195, 919),
  737. ["The Den"] = Vector3.new(323, 41, 1930),
  738. ["End Times"] = Vector3.new(-51, -212, -1348)
  739. }
  740.  
  741. CGG.Main.MP.MouseButton1Down:connect(function()
  742. for i,v in pairs(game.Workspace.Properties:GetChildren()) do
  743. if v.Owner.Value == game.Players.LocalPlayer then
  744. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.OriginSquare.CFrame
  745. end
  746. end
  747. end)
  748.  
  749. CGG.Open.MouseButton1Down:connect(function()
  750. CGG.Main.Visible = true
  751. CGG.Open.Visible = false
  752. CGG.Main.Close.Visible = true
  753. end)
  754.  
  755. CGG.Main.Close.MouseButton1Down:connect(function()
  756. CGG.Main.Visible = false
  757. CGG.Open.Visible = true
  758. CGG.Main.Close.Visible = false
  759. end)
  760.  
  761. CGG.Main.TpToPlr.MouseButton1Down:connect(function()
  762. if CGG.Main.PlrSelected.Text == " No Player Selected" then
  763. warn("No Player Selected")
  764. else
  765. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace[CGG.Main.PlrSelected.Text].HumanoidRootPart.CFrame
  766. end
  767. end)
  768.  
  769. CGG.Main.TpToLocation.MouseButton1Down:connect(function()
  770. if CGG.Main.TpSelected.Text == "No Location Selected" then
  771. warn("No Location Selected")
  772. else
  773. game.Players.LocalPlayer.Character:MoveTo(WayPoints[CGG.Main.TpSelected.Text])
  774. end
  775. end)
  776.  
  777.  
  778.  
  779. CGG.Main.BringWood.MouseButton1Down:connect(function()
  780. for _, Log in pairs(game.Workspace.LogModels:GetChildren()) do
  781. if Log.Name:sub(1,6) == "Loose_" and Log:findFirstChild("Owner") then
  782. if Log.Owner.Value == game.Players.LocalPlayer then
  783. Log:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(0,20,0))
  784. end
  785. end
  786. end
  787. end)
  788.  
  789. CGG.Main.Players.Player1.MouseButton1Down:connect(function()
  790. CGG.Main.PlrSelected.Text = CGG.Main.Players.Player1.Text
  791. end)
  792.  
  793. CGG.Main.Players.Player2.MouseButton1Down:connect(function()
  794. CGG.Main.PlrSelected.Text = CGG.Main.Players.Player2.Text
  795. end)
  796.  
  797. CGG.Main.Players.Player3.MouseButton1Down:connect(function()
  798. CGG.Main.PlrSelected.Text = CGG.Main.Players.Player3.Text
  799. end)
  800.  
  801. CGG.Main.Players.Player4.MouseButton1Down:connect(function()
  802. CGG.Main.PlrSelected.Text = CGG.Main.Players.Player4.Text
  803. end)
  804.  
  805. CGG.Main.Players.Player5.MouseButton1Down:connect(function()
  806. CGG.Main.PlrSelected.Text = CGG.Main.Players.Player5.Text
  807. end)
  808.  
  809. CGG.Main.Players.Player6.MouseButton1Down:connect(function()
  810. CGG.Main.PlrSelected.Text = CGG.Main.Players.Player6.Text
  811. end)
  812.  
  813. local buttons = { CGG.Main.Players.Player1, CGG.Main.Players.Player2, CGG.Main.Players.Player3, CGG.Main.Players.Player4, CGG.Main.Players.Player5, CGG.Main.Players.Player6 }
  814.  
  815. for i,v in pairs(game.Players:GetChildren()) do
  816. buttons[i].Text = v.Name
  817. end
  818.  
  819. game.Players.PlayerAdded:connect(function()
  820. for i,v in pairs(game.Players:GetChildren()) do
  821. buttons[i].Text = v.Name
  822. end
  823. end)
  824.  
  825. CGG.Main.Teleports.Spawn.MouseButton1Down:connect(function()
  826. CGG.Main.TpSelected.Text = "Spawn"
  827. end)
  828.  
  829. CGG.Main.Teleports["Wood R Us"].MouseButton1Down:connect(function()
  830. CGG.Main.TpSelected.Text = "Wood R Us"
  831. end)
  832.  
  833. CGG.Main.Teleports["Land Store"].MouseButton1Down:connect(function()
  834. CGG.Main.TpSelected.Text = "Land Store"
  835. end)
  836.  
  837. CGG.Main.Teleports.Dock.MouseButton1Down:connect(function()
  838. CGG.Main.TpSelected.Text = "Dock"
  839. end)
  840.  
  841. CGG.Main.Teleports["Link's Logic"].MouseButton1Down:connect(function()
  842. CGG.Main.TpSelected.Text = "Link's Logic"
  843. end)
  844.  
  845. CGG.Main.Teleports.Cave.MouseButton1Down:connect(function()
  846. CGG.Main.TpSelected.Text = "Cave"
  847. end)
  848.  
  849. CGG.Main.Teleports.Volcano.MouseButton1Down:connect(function()
  850. CGG.Main.TpSelected.Text = "Volcano"
  851. end)
  852.  
  853. CGG.Main.Teleports.Swamp.MouseButton1Down:connect(function()
  854. CGG.Main.TpSelected.Text = "Swamp"
  855. end)
  856.  
  857. CGG.Main.Teleports["Palm Island"].MouseButton1Down:connect(function()
  858. CGG.Main.TpSelected.Text = "Palm Island"
  859. end)
  860.  
  861. CGG.Main.Teleports["Fancy Furnishings"].MouseButton1Down:connect(function()
  862. CGG.Main.TpSelected.Text = "Fancy Furnishings"
  863. end)
  864.  
  865. CGG.Main.Teleports["Boxed Cars"].MouseButton1Down:connect(function()
  866. CGG.Main.TpSelected.Text = "Boxed Cars"
  867. end)
  868.  
  869. CGG.Main.Teleports["Fine Arts Shop"].MouseButton1Down:connect(function()
  870. CGG.Main.TpSelected.Text = "Fine Arts Shop"
  871. end)
  872.  
  873. CGG.Main.Teleports["Bob's Shack"].MouseButton1Down:connect(function()
  874. CGG.Main.TpSelected.Text = "Bob's Shack"
  875. end)
  876.  
  877. CGG.Main.Teleports["End Times"].MouseButton1Down:connect(function()
  878. CGG.Main.TpSelected.Text = "End Times"
  879. end)
  880.  
  881. CGG.Main.Teleports["Shrine of Sight"].MouseButton1Down:connect(function()
  882. CGG.Main.TpSelected.Text = "Shrine of Sight"
  883. end)
  884.  
  885. CGG.Main.Teleports["The Den"].MouseButton1Down:connect(function()
  886. CGG.Main.TpSelected.Text = "The Den"
  887. end)
  888. -- Objects
  889.  
  890. local InfoGUI = Instance.new("ScreenGui")
  891. local TopBar = Instance.new("Frame")
  892. local MainFrame = Instance.new("Frame")
  893. local Info = Instance.new("TextLabel")
  894. local OkayB = Instance.new("TextButton")
  895. local Credits = Instance.new("TextLabel")
  896.  
  897. -- Properties
  898.  
  899. InfoGUI.Name = "InfoGUI"
  900. InfoGUI.Parent = game.Players.LocalPlayer.PlayerGui
  901.  
  902. TopBar.Name = "TopBar"
  903. TopBar.Parent = InfoGUI
  904. TopBar.BackgroundColor3 = Color3.new(0.266667, 0.247059, 0.313726)
  905. TopBar.BorderSizePixel = 0
  906. TopBar.Position = UDim2.new(0.5, -173, 0.5, -74)
  907. TopBar.Size = UDim2.new(0, 347, 0, 34)
  908.  
  909. MainFrame.Name = "MainFrame"
  910. MainFrame.Parent = TopBar
  911. MainFrame.BackgroundColor3 = Color3.new(0.356863, 0.333333, 0.423529)
  912. MainFrame.BorderSizePixel = 0
  913. MainFrame.Position = UDim2.new(0, 0, 1, 0)
  914. MainFrame.Size = UDim2.new(0, 347, 0, 114)
  915.  
  916. Info.Name = "Info"
  917. Info.Parent = MainFrame
  918. Info.BackgroundColor3 = Color3.new(0.443137, 0.415686, 0.52549)
  919. Info.BorderSizePixel = 0
  920. Info.Size = UDim2.new(0, 347, 0, 78)
  921. Info.Font = Enum.Font.SourceSansLight
  922. Info.Text = "All you have to do to make this work, is get any axe and spam click on a tree a few times, ANY DISTANCE!"
  923. Info.TextColor3 = Color3.new(1, 1, 1)
  924. Info.TextScaled = true
  925. Info.TextSize = 14
  926. Info.TextWrapped = true
  927.  
  928. OkayB.Name = "OkayB"
  929. OkayB.Parent = MainFrame
  930. OkayB.BackgroundColor3 = Color3.new(0.443137, 0.415686, 0.52549)
  931. OkayB.BorderSizePixel = 0
  932. OkayB.Position = UDim2.new(0.268000007, 0, 0.709999979, 0)
  933. OkayB.Size = UDim2.new(0, 161, 0, 29)
  934. OkayB.Font = Enum.Font.SourceSansLight
  935. OkayB.Text = "Alright"
  936. OkayB.TextColor3 = Color3.new(1, 1, 1)
  937. OkayB.TextScaled = true
  938. OkayB.TextSize = 14
  939. OkayB.TextWrapped = true
  940.  
  941. Credits.Name = "Credits"
  942. Credits.Parent = MainFrame
  943. Credits.BackgroundColor3 = Color3.new(0.443137, 0.415686, 0.52549)
  944. Credits.BackgroundTransparency = 1
  945. Credits.BorderSizePixel = 0
  946. Credits.Position = UDim2.new(-0.0028818443, 0, 1.11403513, 0)
  947. Credits.Size = UDim2.new(0, 347, 0, 78)
  948. Credits.Font = Enum.Font.SourceSansLight
  949. Credits.Text = "GUI made by HowToBasic666/Hoofer"
  950. Credits.TextColor3 = Color3.new(1, 1, 1)
  951. Credits.TextScaled = true
  952. Credits.TextSize = 14
  953. Credits.TextWrapped = true
  954.  
  955. OkayB.MouseButton1Click:connect(function()
  956. InfoGUI.Enabled = false
  957. end)
  958.  
  959. local mouse1 = game:GetService("Players").LocalPlayer:GetMouse()
  960. mouse1.Button1Down:connect(function(key)
  961. Pressing=false
  962. end)
  963.  
  964. function GetAxe()
  965. if game.Players.LocalPlayer.Character:FindFirstChild("Tool") then
  966. return game.Players.LocalPlayer.Character:FindFirstChild("Tool")
  967. end
  968. end
  969.  
  970. local HitPoints={
  971. ['GoldAxe']= 50;
  972. ['BasicHatchet']= 0.2;
  973. ['Axe1']= 0.55;
  974. ['Axe2']= 0.93;
  975. ['AxeAlphaTesters']= 1.5;
  976. ['Rukiryaxe']= 1.68;
  977. ['Axe3']= 1.45;
  978. ['AxeBetaTesters']= 1.45;
  979. ['FireAxe']= 0.6;
  980. ['SilverAxe']= 1.6;
  981. ['EndTimesAxe']= 10000000;
  982. ['AxeChicken']= 0.1;
  983. ['CandyCaneAxe']= 0;
  984. }
  985.  
  986. local Pressing = false
  987.  
  988. local mouse1 = game:GetService("Players").LocalPlayer:GetMouse()
  989. mouse1.Button1Down:connect(function(key)
  990. Pressing=true
  991. poop(GetAxe())
  992. end)
  993.  
  994. local mouse1 = game:GetService("Players").LocalPlayer:GetMouse()
  995. mouse1.Button1Down:connect(function(key)
  996. Pressing=false
  997. end)
  998.  
  999. function cut(Height,Tool)
  1000. local Tree=game.Players.LocalPlayer:GetMouse().Target
  1001. game.ReplicatedStorage.Interaction.RemoteProxy:FireServer(Tree.Parent.CutEvent,{
  1002. ["cuttingClass"] = "Axe",
  1003. ["cooldown"] = 0,
  1004. ["hitPoints"] = HitPoints[Tool.ToolName.Value],
  1005. ["sectionId"] = 1,
  1006. ["tool"] = Tool,
  1007. ["faceVector"] = Vector3.new(-1,0,0),
  1008. ["height"] = Height})
  1009. end
  1010.  
  1011. function poop(Tool)
  1012. while Pressing do
  1013. for i=1,100 do
  1014. wait()
  1015. cut(_G.SIZE,Tool)
  1016. cut(1,Tool)
  1017. end
  1018. end
  1019. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement