Guest User

Untitled

a guest
Jan 22nd, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 109.28 KB | None | 0 0
  1. -- Lumber Tycoon 2 Gui Created by LuckyMMB @ V3rmillion.net
  2. -- Discord https://discord.gg/GKzJnUC
  3. -- Credits to you if you made a script in this gui --
  4. -- Version 1.3a Last updated 13th Oct 2018 --
  5.  
  6. -- Automatically Add players to Blacklist --
  7.  
  8. Mouse = game.Players.LocalPlayer:GetMouse()
  9.  
  10. game:service'ReplicatedStorage'.Interaction.Ban:Destroy()
  11. Instance.new('RemoteEvent', game:service'ReplicatedStorage'.Interaction).Name = "Ban"
  12.  
  13. --- Fly ---
  14.  
  15. function fly()
  16. for i,v in pairs(script:GetChildren()) do
  17. pcall(function() v.Value = "" end)
  18. game:GetService("Debris"):AddItem(v,.1)
  19. end
  20.  
  21. function weld(p0,p1,c0,c1,par)
  22. local w = Instance.new("Weld",p0 or par)
  23. w.Part0 = p0
  24. w.Part1 = p1
  25. w.C0 = c0 or CFrame.new()
  26. w.C1 = c1 or CFrame.new()
  27. return w
  28. end
  29.  
  30. local motors = {}
  31.  
  32. function motor(p0,p1,c0,c1,des,vel,par)
  33. local w = Instance.new("Motor6D",p0 or par)
  34. w.Part0 = p0
  35. w.Part1 = p1
  36. w.C0 = c0 or CFrame.new()
  37. w.C1 = c1 or CFrame.new()
  38. w.MaxVelocity = tonumber(vel) or .05
  39. w.DesiredAngle = tonumber(des) or 0
  40. return w
  41. end
  42.  
  43. function lerp(a,b,c)
  44. return a+(b-a)*c
  45. end
  46.  
  47. function clerp(c1,c2,al)
  48. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  49. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  50. for i,v in pairs(com1) do
  51. com1[i] = lerp(v,com2[i],al)
  52. end
  53. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  54. end
  55.  
  56. function ccomplerp(c1,c2,al)
  57. local com1 = {c1:components()}
  58. local com2 = {c2:components()}
  59. for i,v in pairs(com1) do
  60. com1[i] = lerp(v,com2[i],al)
  61. end
  62. return CFrame.new(unpack(com1))
  63. end
  64.  
  65. function tickwave(time,length,offset)
  66. return (math.abs((tick()+(offset or 0))%time-time/2)*2-time/2)/time/2*length
  67. end
  68.  
  69. function invcol(c)
  70. c = c.Color
  71. return BrickColor.new(Color3.new(1-c.b,1-c.g,1-c.r))
  72. end
  73. local oc = oc or function(...) return ... end
  74. local plr = game.Players.LocalPlayer
  75. local char = plr.Character
  76. local tor = char.Torso
  77. local hum = char.Humanoid
  78. hum.PlatformStand = false
  79. pcall(function()
  80. char.Wings:Destroy()
  81. end)
  82. pcall(function()
  83. char.Angel:Destroy() -- hat
  84. end)
  85. local mod = Instance.new("Model",char)
  86. mod.Name = "Wings"
  87. local special = {
  88. [game.Players.LocalPlayer.Name] = {"Black","Bright red",.5,0,false,Color3.new(1,0,0),Color3.new(0,0,0)},
  89. }
  90. local topcolor = BrickColor.new("Really black")
  91. local feacolor = BrickColor.new("Black")
  92. local ptrans = 0
  93. local pref = 0
  94. local fire = true
  95. local fmcol = Color3.new()
  96. local fscol = Color3.new()
  97. local spec = special[plr.Name:lower()]
  98. if spec then
  99. topcolor,feacolor,ptrans,pref,fire,fmcol,fscol = spec[1] and BrickColor.new(spec[1]) or topcolor,spec[2] and BrickColor.new(spec[2]) or feacolor,spec[3],spec[4],spec[5],spec[6],spec[7]
  100. end
  101. local part = Instance.new("Part")
  102. part.FormFactor = "Custom"
  103. part.Size = Vector3.new(.2,.2,.2)
  104. part.TopSurface,part.BottomSurface = 0,0
  105. part.CanCollide = false
  106. part.BrickColor = BrickColor.new("Black")
  107. part.Transparency = ptrans
  108. part.Reflectance = pref
  109. local ef = Instance.new("Fire",fire and part or nil)
  110. ef.Size = .15
  111. ef.Color = BrickColor.new("Black").Color
  112. ef.SecondaryColor = BrickColor.new("Bright red").Color
  113. part:BreakJoints()
  114. function newpart()
  115. local clone = part:Clone()
  116. clone.Parent = mod
  117. clone:BreakJoints()
  118. return clone
  119. end
  120. local feath = newpart()
  121. feath.BrickColor = feacolor
  122. feath.Transparency = 0
  123. Instance.new("SpecialMesh",feath).MeshType = "Sphere"
  124. function newfeather()
  125. local clone = feath:Clone()
  126. clone.Parent = mod
  127. clone:BreakJoints()
  128. return clone
  129. end
  130. flying = false
  131. moving = false
  132. for i,v in pairs(tor:GetChildren()) do
  133. if v.ClassName:lower():match("body") then
  134. v:Destroy()
  135. end
  136. end
  137. local ctor = tor:Clone()
  138. ctor:ClearAllChildren()
  139. ctor.Name = "cTorso"
  140. ctor.Transparency = 1
  141. ctor.CanCollide = false
  142. ctor.FormFactor = "Custom"
  143. ctor.Size = Vector3.new(.2,.2,.2)
  144. ctor.Parent = mod
  145. weld(tor,ctor)
  146. local bg = Instance.new("BodyGyro",ctor)
  147. bg.maxTorque = Vector3.new()
  148. bg.P = 15000
  149. bg.D = 1000
  150. local bv = Instance.new("BodyVelocity",ctor)
  151. bv.maxForce = Vector3.new()
  152. bv.P = 15000
  153. vel = Vector3.new()
  154. cf = CFrame.new()
  155. flspd = 0
  156. keysdown = {}
  157. keypressed = {}
  158. ktime = {}
  159. descendtimer = 0
  160. jumptime = tick()
  161. hum.Jumping:connect(function()
  162. jumptime = tick()
  163. end)
  164. cam = workspace.CurrentCamera
  165. kd = plr:GetMouse().KeyDown:connect(oc(function(key)
  166. keysdown[key] = true
  167. keypressed[key] = true
  168. if key == "q" then
  169. descendtimer = tick()
  170. elseif key == " " and not hum.Jump then
  171. jumptime = tick()
  172. elseif (key == "a" or key == "d") and ktime[key] and tick()-ktime[key] < .3 and math.abs(reqrotx) < .3 then
  173. reqrotx = key == "a" and math.pi*2 or -math.pi*2
  174. end
  175. ktime[key] = tick()
  176. end))
  177.  
  178. ku = plr:GetMouse().KeyUp:connect(function(key)
  179. keysdown[key] = false
  180. if key == " " then
  181. descendtimer = tick()
  182. end
  183. end)
  184. function mid(a,b,c)
  185. return math.max(a,math.min(b,c or -a))
  186. end
  187. function bn(a)
  188. return a and 1 or 0
  189. end
  190. function gm(tar)
  191. local m = 0
  192. for i,v in pairs(tar:GetChildren()) do
  193. if v:IsA("BasePart") then
  194. m = m + v:GetMass()
  195. end
  196. m = m + gm(v)
  197. end
  198. return m
  199. end
  200. reqrotx = 0
  201. local grav = 196.2
  202. local con
  203. con = game:GetService("RunService").Stepped:connect(oc(function()
  204. local obvel = tor.CFrame:vectorToObjectSpace(tor.Velocity)
  205. local sspd, uspd,fspd = obvel.X,obvel.Y,obvel.Z
  206. if flying then
  207. local lfldir = fldir
  208. fldir = cam.CoordinateFrame:vectorToWorldSpace(Vector3.new(bn(keysdown.d)-bn(keysdown.a),0,bn(keysdown.s)-bn(keysdown.w))).unit
  209. local lmoving = moving
  210. moving = fldir.magnitude > .1
  211. if lmoving and not moving then
  212. idledir = lfldir*Vector3.new(1,0,1)
  213. descendtimer = tick()
  214. end
  215. local dbomb = fldir.Y < -.6 or (moving and keysdown["1"])
  216. if moving and keysdown["0"] and lmoving then
  217. fldir = (Vector3.new(lfldir.X,math.min(fldir.Y,lfldir.Y+.01)-.1,lfldir.Z)+(fldir*Vector3.new(1,0,1))*.05).unit
  218. end
  219. local down = tor.CFrame:vectorToWorldSpace(Vector3.new(0,-1,0))
  220. local descending = (not moving and keysdown["q"] and not keysdown[" "])
  221. cf = ccomplerp(cf,CFrame.new(tor.Position,tor.Position+(not moving and idledir or fldir)),keysdown["0"] and .02 or .07)
  222. local gdown = not dbomb and cf.lookVector.Y < -.2 and tor.Velocity.unit.Y < .05
  223. hum.PlatformStand = true
  224. bg.maxTorque = Vector3.new(1,1,1)*9e5
  225. local rotvel = CFrame.new(Vector3.new(),tor.Velocity):toObjectSpace(CFrame.new(Vector3.new(),fldir)).lookVector
  226. bg.cframe = cf * CFrame.Angles(not moving and -.1 or -math.pi/2+.2,moving and mid(-2.5,rotvel.X/1.5) + reqrotx or 0,0)
  227. reqrotx = reqrotx - reqrotx/10
  228. bv.maxForce = Vector3.new(1,1,1)*9e4*.5
  229. local anioff =(bn(keysdown[" "])-bn(keysdown["q"]))/2
  230. local ani = tickwave(1.5-anioff,1)
  231. bv.velocity = bv.velocity:Lerp(Vector3.new(0,bn(not moving)*-ani*15+(descending and math.min(20,tick()-descendtimer)*-8 or bn(keysdown[" "])-bn(keysdown["q"]))*15,0)+vel,.6)
  232. vel = moving and cf.lookVector*flspd or Vector3.new()
  233. flspd = math.min(120,lerp(flspd,moving and (fldir.Y<0 and flspd+(-fldir.Y)*grav/60 or math.max(50,flspd-fldir.Y*grav/300)) or 60,.4))
  234. local hit,ray = workspace:FindPartOnRayWithIgnoreList(Ray.new(tor.Position,Vector3.new(0,-3.5+math.min(0,bv.velocity.y)/30,0)),{char})
  235. if hit and down.Y < -.85 and tick()-flystart > 1 then
  236. flying = false
  237. hum.PlatformStand = false
  238. tor.Velocity = Vector3.new()
  239. end
  240. else
  241. bg.maxTorque = Vector3.new()
  242. bv.maxForce = Vector3.new()
  243. local x,y,z = fspd/160,uspd/700,sspd/900
  244. if keypressed[" "] and not flying and (tick()-jumptime > .05 and (tick()-jumptime < 3 or hum.Jump)) then
  245. vel = Vector3.new(0,50,0)
  246. bv.velocity = vel
  247. idledir = cam.CoordinateFrame.lookVector*Vector3.new(1,0,1)
  248. cf = tor.CFrame * CFrame.Angles(-.01,0,0)
  249. tor.CFrame = cf
  250. bg.cframe = cf
  251. flystart = tick()
  252. flying = true
  253. end
  254. end
  255. keypressed = {}
  256. end))
  257. end
  258. fly()
  259.  
  260. ---
  261.  
  262. Option = false
  263. BTool = "Nothing"
  264. WCollide = "Nothing"
  265. LT2Info = "Nothing"
  266. GreyStart = "Nothing"
  267. MDown = false
  268. afkactive = false
  269. CustomLocationSet = false
  270.  
  271. -- Objects
  272.  
  273. local LT2GUI = Instance.new("ScreenGui")
  274. local MainFrame = Instance.new("Frame")
  275. local MenuLeftFrame = Instance.new("Frame")
  276. local LT2GUI2Frame = Instance.new("Frame")
  277. local BringTree = Instance.new("TextButton")
  278. local Waypoints = Instance.new("TextButton")
  279. local SellFrame = Instance.new("Frame")
  280. local SellWoodPlanks = Instance.new("TextButton")
  281. local SellWood = Instance.new("TextButton")
  282. local SellPlanks = Instance.new("TextButton")
  283. local SellWoodTxt1 = Instance.new("TextLabel")
  284. local SellPlanksTxt1 = Instance.new("TextLabel")
  285. local Greywood = Instance.new("TextButton")
  286. local GreywoodFrame = Instance.new("Frame")
  287. local GreywoodHeader = Instance.new("TextLabel")
  288. local GreywoodInfo = Instance.new("TextLabel")
  289. local GreywoodStart = Instance.new("TextButton")
  290. local StartFrameInfo = Instance.new("TextLabel")
  291. local TPWood = Instance.new("TextButton")
  292. local TPPlanks = Instance.new("TextButton")
  293. local PlankFrame = Instance.new("Frame")
  294. local ProcessedWoodList = Instance.new("ScrollingFrame")
  295. local TpAllPlanks = Instance.new("TextButton")
  296. local TpAllPlanksSpacer = Instance.new("TextLabel")
  297. local TpAllPlanksTxt1 = Instance.new("TextLabel")
  298. local GodMode = Instance.new("TextButton")
  299. local GoldAxe = Instance.new("TextButton")
  300. local GoldAxeInfo = Instance.new("TextLabel")
  301. local GoldAxeFrame = Instance.new("Frame")
  302. local GoldAxeHeader = Instance.new("TextLabel")
  303. local GoldAxeStart = Instance.new("TextButton")
  304. local Duper = Instance.new("TextButton")
  305. local Depart = Instance.new("TextLabel")
  306. local CopyTool = Instance.new("TextButton")
  307. local DeleteTool = Instance.new("TextButton")
  308. local MoveTool = Instance.new("TextButton")
  309. local WaterCollide = Instance.new("TextButton")
  310. local Minimize = Instance.new("TextButton")
  311. local MenuFrame = Instance.new("Frame")
  312. local WaypointFrame = Instance.new("Frame")
  313. local WaypointList = Instance.new("ScrollingFrame")
  314. local BoxedCars = Instance.new("TextButton")
  315. local Cave = Instance.new("TextButton")
  316. local LinksLogic = Instance.new("TextButton")
  317. local Volcano = Instance.new("TextButton")
  318. local BobsShack = Instance.new("TextButton")
  319. local FancyFurnishings = Instance.new("TextButton")
  320. local LandStore = Instance.new("TextButton")
  321. local Dock = Instance.new("TextButton")
  322. local FineArtsShop = Instance.new("TextButton")
  323. local PalmIsland = Instance.new("TextButton")
  324. local FrostTreeArea = Instance.new("TextButton")
  325. local Bridge = Instance.new("TextButton")
  326. local Swamp = Instance.new("TextButton")
  327. local SpawnPoint = Instance.new("TextButton")
  328. local WoodRUs = Instance.new("TextButton")
  329. local EndTimes = Instance.new("TextButton")
  330. local ShrineOfSight = Instance.new("TextButton")
  331. local TheDen = Instance.new("TextButton")
  332. local VolcanoWin = Instance.new("TextButton")
  333. local SkiLodge = Instance.new("TextButton")
  334. local StrangeMan = Instance.new("TextButton")
  335. local ShowLocation = Instance.new("TextButton")
  336. local CustomTPPoint = Instance.new("TextButton")
  337. local PlotTp = Instance.new("TextButton")
  338. local BringTreeFrame = Instance.new("Frame")
  339. local BringTreeHeader = Instance.new("TextLabel")
  340. local BringTreeInfo1 = Instance.new("TextButton")
  341. local BringTreeInfo2 = Instance.new("TextLabel")
  342. local ElmTree = Instance.new("TextButton")
  343. local CherryTree = Instance.new("TextButton")
  344. local OakTree = Instance.new("TextButton")
  345. local BirchTree = Instance.new("TextButton")
  346. local CaveCrawlerTree = Instance.new("TextButton")
  347. local GoldTree = Instance.new("TextButton")
  348. local GreenTree = Instance.new("TextButton")
  349. local SpookyTree = Instance.new("TextButton")
  350. local FirTree = Instance.new("TextButton")
  351. local VolcanoTree = Instance.new("TextButton")
  352. local KoaTree = Instance.new("TextButton")
  353. local PalmTree = Instance.new("TextButton")
  354. local EndTimesTree = Instance.new("TextButton")
  355. local WalnutTree = Instance.new("TextButton")
  356. local SnowGlowTree = Instance.new("TextButton")
  357. local SnowGlowTreeArea = Instance.new("TextButton")
  358. local FrostyTree = Instance.new("TextButton")
  359. local DupeFrame = Instance.new("Frame")
  360. local Info = Instance.new("TextLabel")
  361. local Dupe = Instance.new("TextButton")
  362. local DupingText1 = Instance.new("TextLabel")
  363. local MoreInfo = Instance.new("TextButton")
  364. local Read = Instance.new("TextLabel")
  365. local PlayerFrame = Instance.new("Frame")
  366. local Player1 = Instance.new("TextButton")
  367. local Player2 = Instance.new("TextButton")
  368. local Player3 = Instance.new("TextButton")
  369. local Player4 = Instance.new("TextButton")
  370. local Player5 = Instance.new("TextButton")
  371. local Player6 = Instance.new("TextButton")
  372. local PlyrSel = Instance.new("TextLabel")
  373. local TpPlayer = Instance.new("TextButton")
  374. local TpBase = Instance.new("TextButton")
  375. local WalkSpeed = Instance.new("TextButton")
  376. local JumpPower = Instance.new("TextButton")
  377. local WalkText = Instance.new("TextBox")
  378. local JumpText = Instance.new("TextBox")
  379. local NoClip = Instance.new("TextButton")
  380. local GuiLabel = Instance.new("TextButton")
  381. local GuiInfo = Instance.new("TextLabel")
  382. local GuiInfoExtras = Instance.new("TextLabel")
  383. local BToolsHeader = Instance.new("TextLabel")
  384. local AntiAFK = Instance.new("TextButton")
  385. local AntiAFKtime = Instance.new("TextLabel")
  386. local PlayerTp = Instance.new("TextButton")
  387. local TPTool = Instance.new("TextButton")
  388. local ReJoinServer = Instance.new("TextButton")
  389. local OpenFrame = Instance.new("Frame")
  390. local Open = Instance.new("TextButton")
  391. local CloseLT2 = Instance.new("TextButton")
  392.  
  393. -- Properties
  394.  
  395. LT2GUI.Name = "LT2GUI"
  396. LT2GUI.Parent = game.CoreGui
  397. local LT2CORE = game.CoreGui["LT2GUI"]
  398.  
  399. OpenFrame.Name = "OpenFrame"
  400. OpenFrame.Parent = LT2GUI
  401. OpenFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  402. OpenFrame.BorderColor3 = Color3.new(0, 1, 0)
  403. OpenFrame.Position = UDim2.new(0.5, -40, 0, -28)
  404. OpenFrame.Size = UDim2.new(0, 80, 0, 20)
  405.  
  406. Open.Name = "Open"
  407. Open.Parent = OpenFrame
  408. Open.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  409. Open.BorderColor3 = Color3.new(0, 1, 0)
  410. Open.Size = UDim2.new(0, 80, 0, 20)
  411. Open.Font = Enum.Font.Fantasy
  412. Open.FontSize = Enum.FontSize.Size18
  413. Open.Text = "Open GUI"
  414. Open.TextColor3 = Color3.new(0, 1, 0)
  415. Open.TextSize = 18
  416. Open.Selectable = true
  417. Open.TextWrapped = true
  418.  
  419. MainFrame.Name = "MainFrame"
  420. MainFrame.Parent = LT2GUI
  421. MainFrame.Active = true
  422. MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  423. MainFrame.BackgroundTransparency = 0.15
  424. MainFrame.BorderColor3 = Color3.new(0, 1, 0)
  425. MainFrame.Draggable = true
  426. MainFrame.Position = UDim2.new(0, 5, 1, -550)
  427. MainFrame.Selectable = true
  428. MainFrame.Size = UDim2.new(0, 335, 0, 370)
  429. MainFrame.Visible = false
  430.  
  431. MenuLeftFrame.Name = "MenuLeftFrame"
  432. MenuLeftFrame.Parent = MainFrame
  433. MenuLeftFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  434. MenuLeftFrame.BackgroundTransparency = 1
  435. MenuLeftFrame.Position = UDim2.new(0, 5, 0, 40)
  436. MenuLeftFrame.Size = UDim2.new(0, 140, 0, 325)
  437.  
  438. MenuFrame.Name = "MenuFrame"
  439. MenuFrame.Parent = MainFrame
  440. MenuFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  441. MenuFrame.BackgroundTransparency = 0
  442. MenuFrame.BorderColor3 = Color3.new(0, 1, 0)
  443. MenuFrame.Position = UDim2.new(0, 155, 0, 40)
  444. MenuFrame.Size = UDim2.new(0, 170, 0, 290)
  445.  
  446. StartFrameInfo.Name = "StartFrameInfo"
  447. StartFrameInfo.Parent = MenuFrame
  448. StartFrameInfo.BackgroundColor3 = Color3.new(0, 0, 0)
  449. StartFrameInfo.BackgroundTransparency = 1
  450. StartFrameInfo.Position = UDim2.new(0, 3, 0, 3)
  451. StartFrameInfo.Size = UDim2.new(0, 164, 0, 284)
  452. StartFrameInfo.Font = Enum.Font.Fantasy
  453. StartFrameInfo.FontSize = Enum.FontSize.Size14
  454. StartFrameInfo.Text = "All current players and new players who join will be automatically blacklisted.\n\nTP Tool adds a backpack item to click teleport you.\n\nTP Wood to You - Chop a tree/s then go to where you want them and click this button to teleport what you chopped to you.\n\nDouble tap Space Bar to Fly.\nFly in to the ground to land.\n\nClick on LT2 at the top for more info and extra options."
  455. StartFrameInfo.TextColor3 = Color3.new(1, 1, 1)
  456. StartFrameInfo.TextWrapped = true
  457. StartFrameInfo.TextSize = 14
  458.  
  459. CloseLT2.Name = "CloseLT2"
  460. CloseLT2.Parent = MainFrame
  461. CloseLT2.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  462. CloseLT2.BorderColor3 = Color3.new(0, 1, 0)
  463. CloseLT2.Position = UDim2.new(0, 10, 0, 10)
  464. CloseLT2.Size = UDim2.new(0, 20, 0, 20)
  465. CloseLT2.Font = Enum.Font.Fantasy
  466. CloseLT2.FontSize = Enum.FontSize.Size18
  467. CloseLT2.Text = "X"
  468. CloseLT2.TextColor3 = Color3.new(1, 1, 1)
  469. CloseLT2.TextScaled = true
  470. CloseLT2.TextWrapped = true
  471. CloseLT2.TextSize = 17
  472.  
  473. Minimize.Name = "Minimize"
  474. Minimize.Parent = MainFrame
  475. Minimize.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  476. Minimize.BorderColor3 = Color3.new(0, 1, 0)
  477. Minimize.Position = UDim2.new(0, 40, 0, 10)
  478. Minimize.Size = UDim2.new(0, 20, 0, 20)
  479. Minimize.Font = Enum.Font.Fantasy
  480. Minimize.FontSize = Enum.FontSize.Size18
  481. Minimize.Text = "-"
  482. Minimize.TextColor3 = Color3.new(1, 1, 1)
  483. Minimize.TextScaled = true
  484. Minimize.TextWrapped = true
  485. Minimize.TextSize = 17
  486.  
  487. GuiLabel.Name = "GuiLabel"
  488. GuiLabel.Parent = MainFrame
  489. GuiLabel.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  490. GuiLabel.BackgroundTransparency = 0
  491. GuiLabel.BorderColor3 = Color3.new(0.2, 0.2, 0.2)
  492. GuiLabel.Position = UDim2.new(0, 78, 0, 6)
  493. GuiLabel.Size = UDim2.new(0, 49, 0, 28)
  494. GuiLabel.Font = Enum.Font.Fantasy
  495. GuiLabel.FontSize = Enum.FontSize.Size14
  496. GuiLabel.Text = "LT2"
  497. GuiLabel.TextColor3 = Color3.new(1, 0, 1)
  498. GuiLabel.TextScaled = true
  499. GuiLabel.TextSize = 14
  500. GuiLabel.TextWrapped = true
  501.  
  502. LT2GUI2Frame.Name = "LT2GUI2Frame"
  503. LT2GUI2Frame.Parent = MainFrame
  504. LT2GUI2Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  505. LT2GUI2Frame.BackgroundTransparency = 0
  506. LT2GUI2Frame.BorderColor3 = Color3.new(0, 1, 0)
  507. LT2GUI2Frame.Position = UDim2.new(0, 10, 0, 40)
  508. LT2GUI2Frame.Size = UDim2.new(0, 315, 0, 320)
  509. LT2GUI2Frame.ZIndex = 8
  510. LT2GUI2Frame.Visible = false
  511. LT2GUI2Frame.Active = false
  512.  
  513. GuiInfo.Name = "GuiInfo"
  514. GuiInfo.Parent = LT2GUI2Frame
  515. GuiInfo.BackgroundColor3 = Color3.new(0, 0, 0)
  516. GuiInfo.BorderColor3 = Color3.new(0, 1, 0)
  517. GuiInfo.Position = UDim2.new(0, 0, 0, 5)
  518. GuiInfo.Size = UDim2.new(0, 315, 0, 200)
  519. GuiInfo.BackgroundTransparency = 1
  520. GuiInfo.Font = Enum.Font.Fantasy
  521. GuiInfo.FontSize = Enum.FontSize.Size14
  522. GuiInfo.Text = "CREDITS - I took ideas from different scripts and added a lot of new stuff so if you see anything that you made please let me know and I will add thanks to this screen.\n\nHope you enjoy using this.\n\nIf you want to get in touch my discord is LuckyMMB#8646"
  523. GuiInfo.TextColor3 = Color3.new(1, 1, 1)
  524. GuiInfo.TextSize = 14
  525. GuiInfo.ZIndex = 8
  526. GuiInfo.TextWrapped = true
  527. GuiInfo.TextYAlignment = Enum.TextYAlignment.Top
  528.  
  529. GuiInfoExtras.Name = "GuiInfoExtras"
  530. GuiInfoExtras.Parent = LT2GUI2Frame
  531. GuiInfoExtras.BackgroundColor3 = Color3.new(0, 0, 0)
  532. GuiInfoExtras.BorderColor3 = Color3.new(0, 0, 0)
  533. GuiInfoExtras.Position = UDim2.new(0, 125, 0, 180)
  534. GuiInfoExtras.Size = UDim2.new(0, 65, 0, 20)
  535. GuiInfoExtras.BackgroundTransparency = 0
  536. GuiInfoExtras.Font = Enum.Font.Fantasy
  537. GuiInfoExtras.FontSize = Enum.FontSize.Size18
  538. GuiInfoExtras.TextColor3 = Color3.new(1, 1, 1)
  539. GuiInfoExtras.Text = "EXTRAS"
  540. GuiInfoExtras.ZIndex = 8
  541. GuiInfoExtras.TextSize = 20
  542.  
  543. ReJoinServer.Name = "ReJoinServer"
  544. ReJoinServer.Parent = LT2GUI2Frame
  545. ReJoinServer.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  546. ReJoinServer.BorderColor3 = Color3.new(0, 1, 0)
  547. ReJoinServer.Position = UDim2.new(0, 80, 0, 210)
  548. ReJoinServer.Size = UDim2.new(0, 155, 0, 20)
  549. ReJoinServer.BackgroundTransparency = 0
  550. ReJoinServer.Font = Enum.Font.Fantasy
  551. ReJoinServer.FontSize = Enum.FontSize.Size18
  552. ReJoinServer.Text = "ReJoin Server"
  553. ReJoinServer.TextColor3 = Color3.new(1, 1, 1)
  554. ReJoinServer.ZIndex = 8
  555. ReJoinServer.TextSize = 17
  556.  
  557. AntiAFK.Name = "AntiAFK"
  558. AntiAFK.Parent = LT2GUI2Frame
  559. AntiAFK.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  560. AntiAFK.BorderColor3 = Color3.new(0, 1, 0)
  561. AntiAFK.Position = UDim2.new(0, 80, 0, 240)
  562. AntiAFK.Size = UDim2.new(0, 155, 0, 20)
  563. AntiAFK.BackgroundTransparency = 0
  564. AntiAFK.Font = Enum.Font.Fantasy
  565. AntiAFK.FontSize = Enum.FontSize.Size18
  566. AntiAFK.Text = "Start Anti-AFK Mode"
  567. AntiAFK.TextColor3 = Color3.new(1, 1, 1)
  568. AntiAFK.ZIndex = 8
  569. AntiAFK.TextSize = 17
  570.  
  571. AntiAFKtime.Name = "AntiAFKtime"
  572. AntiAFKtime.Parent = LT2GUI2Frame
  573. AntiAFKtime.BackgroundColor3 = Color3.new(0, 0, 0)
  574. AntiAFKtime.BorderColor3 = Color3.new(0, 0, 0)
  575. AntiAFKtime.Position = UDim2.new(0, 80, 0, 263)
  576. AntiAFKtime.Size = UDim2.new(0, 155, 0, 20)
  577. AntiAFKtime.BackgroundTransparency = 0
  578. AntiAFKtime.Font = Enum.Font.Fantasy
  579. AntiAFKtime.FontSize = Enum.FontSize.Size18
  580. AntiAFKtime.Text = "AFK for: 0 Seconds"
  581. AntiAFKtime.TextColor3 = Color3.new(1, 1, 1)
  582. AntiAFKtime.ZIndex = 8
  583. AntiAFKtime.TextSize = 17
  584.  
  585. BToolsHeader.Name = "BToolsHeader"
  586. BToolsHeader.Parent = LT2GUI2Frame
  587. BToolsHeader.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  588. BToolsHeader.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  589. BToolsHeader.Position = UDim2.new(0, 10, 0, 290)
  590. BToolsHeader.Size = UDim2.new(0, 70, 0, 20)
  591. BToolsHeader.BackgroundTransparency = 0
  592. BToolsHeader.Font = Enum.Font.Fantasy
  593. BToolsHeader.FontSize = Enum.FontSize.Size18
  594. BToolsHeader.Text = "BTools"
  595. BToolsHeader.TextColor3 = Color3.new(1, 1, 1)
  596. BToolsHeader.ZIndex = 8
  597. BToolsHeader.TextSize = 17
  598.  
  599. CopyTool.Name = "CopyTool"
  600. CopyTool.Parent = LT2GUI2Frame
  601. CopyTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  602. CopyTool.TextColor3 = Color3.new(1, 1, 1)
  603. CopyTool.BorderColor3 = Color3.new(0, 1, 0)
  604. CopyTool.Position = UDim2.new(0, 97, 0, 290)
  605. CopyTool.Size = UDim2.new(0, 64, 0, 20)
  606. CopyTool.Font = Enum.Font.Fantasy
  607. CopyTool.FontSize = Enum.FontSize.Size18
  608. CopyTool.BackgroundTransparency = 0
  609. CopyTool.Text = "Copy"
  610. CopyTool.ZIndex = 8
  611. CopyTool.TextSize = 17
  612.  
  613. DeleteTool.Name = "DeleteTool"
  614. DeleteTool.Parent = LT2GUI2Frame
  615. DeleteTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  616. DeleteTool.TextColor3 = Color3.new(1, 1, 1)
  617. DeleteTool.BorderColor3 = Color3.new(0, 1, 0)
  618. DeleteTool.Position = UDim2.new(0, 169, 0, 290)
  619. DeleteTool.Size = UDim2.new(0, 64, 0, 20)
  620. DeleteTool.Font = Enum.Font.Fantasy
  621. DeleteTool.FontSize = Enum.FontSize.Size18
  622. DeleteTool.BackgroundTransparency = 0
  623. DeleteTool.Text = "Delete"
  624. DeleteTool.ZIndex = 8
  625. DeleteTool.TextSize = 17
  626.  
  627. MoveTool.Name = "MoveTool"
  628. MoveTool.Parent = LT2GUI2Frame
  629. MoveTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  630. MoveTool.TextColor3 = Color3.new(1, 1, 1)
  631. MoveTool.BorderColor3 = Color3.new(0, 1, 0)
  632. MoveTool.Position = UDim2.new(0, 241, 0, 290)
  633. MoveTool.Size = UDim2.new(0, 64, 0, 20)
  634. MoveTool.Font = Enum.Font.Fantasy
  635. MoveTool.FontSize = Enum.FontSize.Size18
  636. MoveTool.BackgroundTransparency = 0
  637. MoveTool.Text = "Move"
  638. MoveTool.ZIndex = 8
  639. MoveTool.TextSize = 17
  640.  
  641. TPTool.Name = "TPTool"
  642. TPTool.Parent = MainFrame
  643. TPTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  644. TPTool.BorderColor3 = Color3.new(0, 1, 0)
  645. TPTool.Position = UDim2.new(0, 145, 0, 10)
  646. TPTool.Size = UDim2.new(0, 60, 0, 20)
  647. TPTool.Font = Enum.Font.Fantasy
  648. TPTool.FontSize = Enum.FontSize.Size18
  649. TPTool.Text = "Tp Tool"
  650. TPTool.TextColor3 = Color3.new(1, 1, 1)
  651. TPTool.TextSize = 17
  652.  
  653. NoClip.Name = "NoClip"
  654. NoClip.Parent = MainFrame
  655. NoClip.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  656. NoClip.BorderColor3 = Color3.new(0, 1, 0)
  657. NoClip.Position = UDim2.new(0, 215, 0, 10)
  658. NoClip.Size = UDim2.new(0, 110, 0, 20)
  659. NoClip.Font = Enum.Font.Fantasy
  660. NoClip.FontSize = Enum.FontSize.Size18
  661. NoClip.Text = "Enable NoClip"
  662. NoClip.TextColor3 = Color3.new(1, 1, 1)
  663. NoClip.TextSize = 17
  664.  
  665. Depart.Name = "Depart"
  666. Depart.Parent = MenuLeftFrame
  667. Depart.BackgroundColor3 = Color3.new(0, 0, 0)
  668. Depart.BackgroundTransparency = 1
  669. Depart.Position = UDim2.new(0, 5, 0, 0)
  670. Depart.Size = UDim2.new(0, 135, 0, 20)
  671. Depart.Font = Enum.Font.Fantasy
  672. Depart.FontSize = Enum.FontSize.Size18
  673. Depart.Text = "Ferry Departs: 0"
  674. Depart.TextColor3 = Color3.new(1, 1, 1)
  675. Depart.TextSize = 17
  676.  
  677. Waypoints.Name = "Waypoints"
  678. Waypoints.Parent = MenuLeftFrame
  679. Waypoints.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  680. Waypoints.TextColor3 = Color3.new(1, 1, 1)
  681. Waypoints.BorderColor3 = Color3.new(0, 1, 0)
  682. Waypoints.Position = UDim2.new(0, 5, 0, 30)
  683. Waypoints.Size = UDim2.new(0, 135, 0, 20)
  684. Waypoints.Font = Enum.Font.Fantasy
  685. Waypoints.FontSize = Enum.FontSize.Size18
  686. Waypoints.Text = "Waypoints"
  687. Waypoints.TextSize = 17
  688.  
  689. TPWood.Name = "TPWood"
  690. TPWood.Parent = MenuLeftFrame
  691. TPWood.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  692. TPWood.BorderColor3 = Color3.new(0, 1, 0)
  693. TPWood.Position = UDim2.new(0, 5, 0, 60)
  694. TPWood.Size = UDim2.new(0, 135, 0, 20)
  695. TPWood.Font = Enum.Font.Fantasy
  696. TPWood.FontSize = Enum.FontSize.Size18
  697. TPWood.Text = "TP Wood to You"
  698. TPWood.TextColor3 = Color3.new(1, 1, 1)
  699. TPWood.TextSize = 17
  700.  
  701. TPPlanks.Name = "TPPlanks"
  702. TPPlanks.Parent = MenuLeftFrame
  703. TPPlanks.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  704. TPPlanks.BorderColor3 = Color3.new(0, 1, 0)
  705. TPPlanks.Position = UDim2.new(0, 5, 0, 90)
  706. TPPlanks.Size = UDim2.new(0, 135, 0, 20)
  707. TPPlanks.Font = Enum.Font.Fantasy
  708. TPPlanks.FontSize = Enum.FontSize.Size18
  709. TPPlanks.Text = "TP Planks to You"
  710. TPPlanks.TextColor3 = Color3.new(1, 1, 1)
  711. TPPlanks.TextSize = 17
  712.  
  713. PlankFrame.Name = "PlankFrame"
  714. PlankFrame.Parent = MenuFrame
  715. PlankFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  716. PlankFrame.BackgroundTransparency = 0
  717. PlankFrame.BorderColor3 = Color3.new(0, 1, 0)
  718. PlankFrame.Position = UDim2.new(0, 0, 0, 34)
  719. PlankFrame.Size = UDim2.new(0, 170, 0, 256)
  720. PlankFrame.Visible = false
  721.  
  722. ProcessedWoodList.Name = "ProcessedWoodList"
  723. ProcessedWoodList.Parent = PlankFrame
  724. ProcessedWoodList.BackgroundColor3 = Color3.new(0, 0, 0)
  725. ProcessedWoodList.BackgroundTransparency = 1
  726. ProcessedWoodList.BorderColor3 = Color3.new(0, 1, 0)
  727. ProcessedWoodList.Position = UDim2.new(0, 0, 0, 1)
  728. ProcessedWoodList.Size = UDim2.new(0, 170, 0, 256)
  729.  
  730. TpAllPlanks.Name = "TpAllPlanks"
  731. TpAllPlanks.Parent = PlankFrame
  732. TpAllPlanks.BackgroundColor3 = Color3.new(0.15, 0.15, 0.15)
  733. TpAllPlanks.BorderColor3 = Color3.new(0, 1, 0)
  734. TpAllPlanks.Position = UDim2.new(0, 0, 0, -34)
  735. TpAllPlanks.Size = UDim2.new(0, 170, 0, 30)
  736. TpAllPlanks.Font = Enum.Font.Fantasy
  737. TpAllPlanks.FontSize = Enum.FontSize.Size18
  738. TpAllPlanks.Text = "TP ALL PLANKS"
  739. TpAllPlanks.TextColor3 = Color3.new(1, 1, 1)
  740. TpAllPlanks.TextSize = 18
  741.  
  742. TpAllPlanksSpacer.Name = "TpAllPlanksSpacer"
  743. TpAllPlanksSpacer.Parent = PlankFrame
  744. TpAllPlanksSpacer.BackgroundTransparency = 0
  745. TpAllPlanksSpacer.BackgroundColor3 = Color3.new(0, 0, 0)
  746. TpAllPlanksSpacer.BorderColor3 = Color3.new(0, 1, 0)
  747. TpAllPlanksSpacer.Position = UDim2.new(0, 0, 0, -4)
  748. TpAllPlanksSpacer.Size = UDim2.new(0, 170, 0, 4)
  749. TpAllPlanksSpacer.Font = Enum.Font.Fantasy
  750. TpAllPlanksSpacer.Text = ""
  751. TpAllPlanksSpacer.TextColor3 = Color3.new(1, 1, 1)
  752. TpAllPlanksSpacer.TextSize = 17
  753.  
  754. SellWoodPlanks.Name = "SellWoodPlanks"
  755. SellWoodPlanks.Parent = MenuLeftFrame
  756. SellWoodPlanks.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  757. SellWoodPlanks.BorderColor3 = Color3.new(0, 1, 0)
  758. SellWoodPlanks.Position = UDim2.new(0, 5, 0, 120)
  759. SellWoodPlanks.Size = UDim2.new(0, 135, 0, 20)
  760. SellWoodPlanks.Font = Enum.Font.Fantasy
  761. SellWoodPlanks.FontSize = Enum.FontSize.Size18
  762. SellWoodPlanks.Text = "Sell Wood/Planks"
  763. SellWoodPlanks.TextColor3 = Color3.new(1, 1, 1)
  764. SellWoodPlanks.TextSize = 17
  765.  
  766. SellFrame.Name = "SellFrame"
  767. SellFrame.Parent = MenuFrame
  768. SellFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  769. SellFrame.BackgroundTransparency = 0
  770. SellFrame.BorderColor3 = Color3.new(0, 1, 0)
  771. SellFrame.Size = UDim2.new(0, 170, 0, 290)
  772. SellFrame.Visible = false
  773.  
  774. SellWood.Name = "SellWood"
  775. SellWood.Parent = SellFrame
  776. SellWood.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  777. SellWood.BorderColor3 = Color3.new(0, 1, 0)
  778. SellWood.Position = UDim2.new(0, 30, 0, 10)
  779. SellWood.Size = UDim2.new(0, 110, 0, 20)
  780. SellWood.Font = Enum.Font.Fantasy
  781. SellWood.FontSize = Enum.FontSize.Size18
  782. SellWood.Text = "Sell Cut Wood"
  783. SellWood.TextColor3 = Color3.new(1, 1, 1)
  784. SellWood.TextSize = 17
  785.  
  786. SellWoodTxt1.Name = "SellWoodTxt1"
  787. SellWoodTxt1.Parent = SellFrame
  788. SellWoodTxt1.BackgroundColor3 = Color3.new(0, 0, 0)
  789. SellWoodTxt1.BackgroundTransparency = 1
  790. SellWoodTxt1.BorderColor3 = Color3.new(0, 0, 0)
  791. SellWoodTxt1.Position = UDim2.new(0, 5, 0, 35)
  792. SellWoodTxt1.Size = UDim2.new(0, 160, 0, 100)
  793. SellWoodTxt1.Font = Enum.Font.Fantasy
  794. SellWoodTxt1.FontSize = Enum.FontSize.Size18
  795. SellWoodTxt1.Text = "Click this after you finish chopping trees to send the wood to the Wood Drop Off and sell it automatically. If it gets stuck click Sell again.\n\n"
  796. SellWoodTxt1.TextColor3 = Color3.new(0, 1, 0)
  797. SellWoodTxt1.TextSize = 14
  798. SellWoodTxt1.TextWrapped = true
  799. SellWoodTxt1.TextYAlignment = Enum.TextYAlignment.Top
  800.  
  801. SellPlanks.Name = "SellPlanks"
  802. SellPlanks.Parent = SellFrame
  803. SellPlanks.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  804. SellPlanks.BorderColor3 = Color3.new(0, 1, 0)
  805. SellPlanks.Position = UDim2.new(0, 6, 0, 135)
  806. SellPlanks.Size = UDim2.new(0, 158, 0, 20)
  807. SellPlanks.Font = Enum.Font.Fantasy
  808. SellPlanks.FontSize = Enum.FontSize.Size18
  809. SellPlanks.Text = "Sell Processed Planks"
  810. SellPlanks.TextColor3 = Color3.new(1, 1, 1)
  811. SellPlanks.TextSize = 17
  812.  
  813. SellPlanksTxt1.Name = "SellPlanksTxt1"
  814. SellPlanksTxt1.Parent = SellFrame
  815. SellPlanksTxt1.BackgroundColor3 = Color3.new(0, 0, 0)
  816. SellPlanksTxt1.BackgroundTransparency = 1
  817. SellPlanksTxt1.BorderColor3 = Color3.new(0, 0, 0)
  818. SellPlanksTxt1.Position = UDim2.new(0, 5, 0, 160)
  819. SellPlanksTxt1.Size = UDim2.new(0, 160, 0, 120)
  820. SellPlanksTxt1.Font = Enum.Font.Fantasy
  821. SellPlanksTxt1.FontSize = Enum.FontSize.Size18
  822. SellPlanksTxt1.Text = "Click this to send ALL processed planks on your plot to the Wood Drop Off and sell it automatically. If it gets stuck click Sell again. WARNING: Do Not click this unless you want ALL your planks to be sold."
  823. SellPlanksTxt1.TextColor3 = Color3.new(0, 1, 0)
  824. SellPlanksTxt1.TextSize = 14
  825. SellPlanksTxt1.TextWrapped = true
  826. SellPlanksTxt1.TextYAlignment = Enum.TextYAlignment.Top
  827.  
  828. BringTree.Name = "BringTree"
  829. BringTree.Parent = MenuLeftFrame
  830. BringTree.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  831. BringTree.BorderColor3 = Color3.new(0, 1, 0)
  832. BringTree.Position = UDim2.new(0, 5, 0, 150)
  833. BringTree.Size = UDim2.new(0, 135, 0, 20)
  834. BringTree.Font = Enum.Font.Fantasy
  835. BringTree.FontSize = Enum.FontSize.Size18
  836. BringTree.Text = "BringTree(patched)"
  837. BringTree.TextColor3 = Color3.new(1, 1, 1)
  838. BringTree.TextSize = 17
  839.  
  840. PlayerTp.Name = "PlayerTp"
  841. PlayerTp.Parent = MenuLeftFrame
  842. PlayerTp.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  843. PlayerTp.TextColor3 = Color3.new(1, 1, 1)
  844. PlayerTp.BorderColor3 = Color3.new(0, 1, 0)
  845. PlayerTp.Position = UDim2.new(0, 5, 0, 180)
  846. PlayerTp.Size = UDim2.new(0, 135, 0, 20)
  847. PlayerTp.Font = Enum.Font.Fantasy
  848. PlayerTp.FontSize = Enum.FontSize.Size18
  849. PlayerTp.Text = "Tp to Players"
  850. PlayerTp.TextSize = 17
  851.  
  852. Duper.Name = "Duper"
  853. Duper.Parent = MenuLeftFrame
  854. Duper.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  855. Duper.TextColor3 = Color3.new(1, 1, 1)
  856. Duper.BorderColor3 = Color3.new(0, 1, 0)
  857. Duper.Position = UDim2.new(0, 5, 0, 210)
  858. Duper.Size = UDim2.new(0, 135, 0, 20)
  859. Duper.Font = Enum.Font.Fantasy
  860. Duper.FontSize = Enum.FontSize.Size18
  861. Duper.Text = "Item Duping"
  862. Duper.TextSize = 17
  863.  
  864. Greywood.Name = "Greywood"
  865. Greywood.Parent = MenuLeftFrame
  866. Greywood.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  867. Greywood.TextColor3 = Color3.new(1, 1, 1)
  868. Greywood.BorderColor3 = Color3.new(0, 1, 0)
  869. Greywood.Position = UDim2.new(0, 5, 0, 240)
  870. Greywood.Size = UDim2.new(0, 135, 0, 20)
  871. Greywood.Font = Enum.Font.Fantasy
  872. Greywood.FontSize = Enum.FontSize.Size18
  873. Greywood.Text = "Grey Structures"
  874. Greywood.TextSize = 17
  875.  
  876. GreywoodFrame.Name = "GreywoodFrame"
  877. GreywoodFrame.Parent = MenuFrame
  878. GreywoodFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  879. GreywoodFrame.BackgroundTransparency = 0
  880. GreywoodFrame.BorderColor3 = Color3.new(0, 1, 0)
  881. GreywoodFrame.Size = UDim2.new(0, 170, 0, 290)
  882. GreywoodFrame.Visible = false
  883.  
  884. GreywoodHeader.Name = "GreywoodHeader"
  885. GreywoodHeader.Parent = GreywoodFrame
  886. GreywoodHeader.BackgroundColor3 = Color3.new(1, 1, 1)
  887. GreywoodHeader.BackgroundTransparency = 0.15
  888. GreywoodHeader.BorderColor3 = Color3.new(0, 1, 0)
  889. GreywoodHeader.Size = UDim2.new(0, 170, 0, 35)
  890. GreywoodHeader.Font = Enum.Font.Fantasy
  891. GreywoodHeader.FontSize = Enum.FontSize.Size18
  892. GreywoodHeader.Text = "TURN EMPTY BLUEPRINT TO GREYWOOD"
  893. GreywoodHeader.TextColor3 = Color3.new(0, 0, 0)
  894. GreywoodHeader.TextScaled = true
  895. GreywoodHeader.TextSize = 17
  896. GreywoodHeader.TextWrapped = true
  897.  
  898. GreywoodInfo.Name = "GreywoodInfo"
  899. GreywoodInfo.Parent = GreywoodFrame
  900. GreywoodInfo.BackgroundColor3 = Color3.new(0, 0, 0)
  901. GreywoodInfo.BackgroundTransparency = 1
  902. GreywoodInfo.Position = UDim2.new(0, 5, 0, 40)
  903. GreywoodInfo.Size = UDim2.new(0, 160, 0, 250)
  904. GreywoodInfo.Font = Enum.Font.Fantasy
  905. GreywoodInfo.FontSize = Enum.FontSize.Size14
  906. GreywoodInfo.Text = "1. Place Blueprints down.\n2. Click on 'Start' below.\n3. Press 'e' on blueprint.\n4. Click on Move.\n5. Press 'b' to cancel the move.\n6. It should now be filled with GreyWood\n\nNOTE: Some blueprints will not fill with Grey. Smooth Wall blueprints seem to work best but you can try whatever you want."
  907. GreywoodInfo.TextColor3 = Color3.new(0, 1, 0)
  908. GreywoodInfo.TextSize = 14
  909. GreywoodInfo.TextYAlignment = Enum.TextYAlignment.Top
  910. GreywoodInfo.TextWrapped = true
  911.  
  912. GreywoodStart.Name = "GreywoodStart"
  913. GreywoodStart.Parent = GreywoodFrame
  914. GreywoodStart.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  915. GreywoodStart.BorderColor3 = Color3.new(0, 1, 0)
  916. GreywoodStart.Position = UDim2.new(0, 25, 0, 255)
  917. GreywoodStart.Size = UDim2.new(0, 120, 0, 25)
  918. GreywoodStart.Font = Enum.Font.Fantasy
  919. GreywoodStart.FontSize = Enum.FontSize.Size18
  920. GreywoodStart.Text = "Start"
  921. GreywoodStart.TextColor3 = Color3.new(1, 1, 1)
  922. GreywoodStart.TextSize = 17
  923.  
  924. WaterCollide.Name = "WaterCollide"
  925. WaterCollide.Parent = MenuLeftFrame
  926. WaterCollide.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  927. WaterCollide.BorderColor3 = Color3.new(0, 1, 0)
  928. WaterCollide.Position = UDim2.new(0, 5, 0, 270)
  929. WaterCollide.Size = UDim2.new(0, 135, 0, 20)
  930. WaterCollide.Font = Enum.Font.Fantasy
  931. WaterCollide.FontSize = Enum.FontSize.Size18
  932. WaterCollide.Text = "Walk on Water"
  933. WaterCollide.TextColor3 = Color3.new(1, 1, 1)
  934. WaterCollide.TextSize = 17
  935.  
  936. GodMode.Name = "GodMode"
  937. GodMode.Parent = MenuLeftFrame
  938. GodMode.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  939. GodMode.TextColor3 = Color3.new(1, 1, 1)
  940. GodMode.BorderColor3 = Color3.new(0, 1, 0)
  941. GodMode.Position = UDim2.new(0, 5, 0, 300)
  942. GodMode.Size = UDim2.new(0, 55, 0, 20)
  943. GodMode.Font = Enum.Font.Fantasy
  944. GodMode.FontSize = Enum.FontSize.Size18
  945. GodMode.Text = "God"
  946. GodMode.TextScaled = true
  947. GodMode.TextSize = 17
  948.  
  949. GoldAxe.Name = "GoldAxe"
  950. GoldAxe.Parent = MenuLeftFrame
  951. GoldAxe.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  952. GoldAxe.TextColor3 = Color3.new(1, 1, 1)
  953. GoldAxe.BorderColor3 = Color3.new(0, 1, 0)
  954. GoldAxe.Position = UDim2.new(0, 70, 0, 300)
  955. GoldAxe.Size = UDim2.new(0, 70, 0, 20)
  956. GoldAxe.Font = Enum.Font.Fantasy
  957. GoldAxe.FontSize = Enum.FontSize.Size18
  958. GoldAxe.Text = "Gold Axe"
  959. GoldAxe.TextWrapped = true
  960. GoldAxe.TextSize = 17
  961.  
  962. GoldAxeFrame.Name = "GoldAxeFrame"
  963. GoldAxeFrame.Parent = MenuFrame
  964. GoldAxeFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  965. GoldAxeFrame.BackgroundTransparency = 0
  966. GoldAxeFrame.BorderColor3 = Color3.new(0, 1, 0)
  967. GoldAxeFrame.Size = UDim2.new(0, 170, 0, 290)
  968. GoldAxeFrame.Visible = false
  969.  
  970. GoldAxeHeader.Name = "GoldAxeHeader"
  971. GoldAxeHeader.Parent = GoldAxeFrame
  972. GoldAxeHeader.BackgroundColor3 = Color3.new(1, 1, 1)
  973. GoldAxeHeader.BackgroundTransparency = 0.15
  974. GoldAxeHeader.BorderColor3 = Color3.new(0, 1, 0)
  975. GoldAxeHeader.Size = UDim2.new(0, 170, 0, 35)
  976. GoldAxeHeader.Font = Enum.Font.Fantasy
  977. GoldAxeHeader.FontSize = Enum.FontSize.Size18
  978. GoldAxeHeader.Text = "CHOP WOOD WITH GOLDEN AXE POWER"
  979. GoldAxeHeader.TextColor3 = Color3.new(0, 0, 0)
  980. GoldAxeHeader.TextScaled = true
  981. GoldAxeHeader.TextSize = 17
  982. GoldAxeHeader.TextWrapped = true
  983.  
  984. GoldAxeInfo.Name = "GoldAxeInfo"
  985. GoldAxeInfo.Parent = GoldAxeFrame
  986. GoldAxeInfo.BackgroundColor3 = Color3.new(0, 0, 0)
  987. GoldAxeInfo.BackgroundTransparency = 1
  988. GoldAxeInfo.Position = UDim2.new(0, 5, 0, 40)
  989. GoldAxeInfo.Size = UDim2.new(0, 160, 0, 210)
  990. GoldAxeInfo.Font = Enum.Font.Fantasy
  991. GoldAxeInfo.FontSize = Enum.FontSize.Size14
  992. GoldAxeInfo.Text = "1. Buy a Basic Hatchet if you don't have one\n\n2. Click the start button to enable Golden Axe mode\n\n3. Take out the Basic Hatchet and hold down the left mouse button on a tree to cut through it.\n\nONLY use a Basic Hatchet with Golden Axe mode enabled or you will drop the axe and die."
  993. GoldAxeInfo.TextColor3 = Color3.new(0, 1, 0)
  994. GoldAxeInfo.TextSize = 14
  995. GoldAxeInfo.TextYAlignment = Enum.TextYAlignment.Top
  996. GoldAxeInfo.TextWrapped = true
  997.  
  998. GoldAxeStart.Name = "GoldAxeStart"
  999. GoldAxeStart.Parent = GoldAxeFrame
  1000. GoldAxeStart.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1001. GoldAxeStart.BorderColor3 = Color3.new(0, 1, 0)
  1002. GoldAxeStart.Position = UDim2.new(0, 25, 0, 255)
  1003. GoldAxeStart.Size = UDim2.new(0, 120, 0, 25)
  1004. GoldAxeStart.Font = Enum.Font.Fantasy
  1005. GoldAxeStart.FontSize = Enum.FontSize.Size18
  1006. GoldAxeStart.Text = "Start"
  1007. GoldAxeStart.TextColor3 = Color3.new(1, 1, 1)
  1008. GoldAxeStart.TextSize = 17
  1009.  
  1010. WaypointFrame.Name = "WaypointFrame"
  1011. WaypointFrame.Parent = MenuFrame
  1012. WaypointFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  1013. WaypointFrame.BackgroundTransparency = 0
  1014. WaypointFrame.BorderColor3 = Color3.new(0, 1, 0)
  1015. WaypointFrame.Size = UDim2.new(0, 170, 0, 290)
  1016. WaypointFrame.Visible = false
  1017.  
  1018. WaypointList.Name = "WaypointList"
  1019. WaypointList.Parent = WaypointFrame
  1020. WaypointList.BackgroundColor3 = Color3.new(0, 0, 0)
  1021. WaypointList.BackgroundTransparency = 0
  1022. WaypointList.BorderColor3 = Color3.new(0, 1, 0)
  1023. WaypointList.Size = UDim2.new(0, 170, 0, 290)
  1024. WaypointList.CanvasSize = UDim2.new(0, 0, 2.27, 0)
  1025.  
  1026. ShowLocation.Name = "ShowLocation"
  1027. ShowLocation.Parent = WaypointList
  1028. ShowLocation.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1029. ShowLocation.TextColor3 = Color3.new(1, 1, 1)
  1030. ShowLocation.BorderColor3 = Color3.new(0, 1, 0)
  1031. ShowLocation.Position = UDim2.new(0, 5, 0, 5)
  1032. ShowLocation.Size = UDim2.new(0, 147, 0, 40)
  1033. ShowLocation.Font = Enum.Font.Fantasy
  1034. ShowLocation.FontSize = Enum.FontSize.Size14
  1035. ShowLocation.Text = "Show Current Coords\nSet Custom Location"
  1036. ShowLocation.TextWrapped = true
  1037. ShowLocation.TextSize = 15
  1038.  
  1039. CustomTPPoint.Name = "CustomTPPoint"
  1040. CustomTPPoint.Parent = WaypointList
  1041. CustomTPPoint.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1042. CustomTPPoint.TextColor3 = Color3.new(1, 1, 1)
  1043. CustomTPPoint.BorderColor3 = Color3.new(0, 1, 0)
  1044. CustomTPPoint.Position = UDim2.new(0, 5, 0, 50)
  1045. CustomTPPoint.Size = UDim2.new(0, 147, 0, 20)
  1046. CustomTPPoint.Font = Enum.Font.Fantasy
  1047. CustomTPPoint.FontSize = Enum.FontSize.Size14
  1048. CustomTPPoint.Text = "TP to Custom Location"
  1049. CustomTPPoint.TextWrapped = true
  1050. CustomTPPoint.TextSize = 15
  1051.  
  1052. PlotTp.Name = "PlotTp"
  1053. PlotTp.Parent = WaypointList
  1054. PlotTp.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1055. PlotTp.TextColor3 = Color3.new(1, 1, 1)
  1056. PlotTp.BorderColor3 = Color3.new(0, 1, 0)
  1057. PlotTp.Position = UDim2.new(0, 5, 0, 75)
  1058. PlotTp.Size = UDim2.new(0, 147, 0, 20)
  1059. PlotTp.Font = Enum.Font.Fantasy
  1060. PlotTp.FontSize = Enum.FontSize.Size14
  1061. PlotTp.Text = "Tp to Your Plot"
  1062. PlotTp.TextSize = 16
  1063.  
  1064. SpawnPoint.Name = "SpawnPoint"
  1065. SpawnPoint.Parent = WaypointList
  1066. SpawnPoint.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1067. SpawnPoint.TextColor3 = Color3.new(1, 1, 1)
  1068. SpawnPoint.BorderColor3 = Color3.new(0, 1, 0)
  1069. SpawnPoint.Position = UDim2.new(0, 5, 0, 100)
  1070. SpawnPoint.Size = UDim2.new(0, 147, 0, 20)
  1071. SpawnPoint.Font = Enum.Font.Fantasy
  1072. SpawnPoint.FontSize = Enum.FontSize.Size14
  1073. SpawnPoint.Text = "Spawn Point"
  1074. SpawnPoint.TextSize = 16
  1075.  
  1076. WoodRUs.Name = "WoodRUs"
  1077. WoodRUs.Parent = WaypointList
  1078. WoodRUs.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1079. WoodRUs.TextColor3 = Color3.new(1, 1, 1)
  1080. WoodRUs.BorderColor3 = Color3.new(0, 1, 0)
  1081. WoodRUs.Position = UDim2.new(0, 5, 0, 125)
  1082. WoodRUs.Size = UDim2.new(0, 147, 0, 20)
  1083. WoodRUs.Font = Enum.Font.Fantasy
  1084. WoodRUs.FontSize = Enum.FontSize.Size14
  1085. WoodRUs.Text = "Wood R Us"
  1086. WoodRUs.TextSize = 16
  1087.  
  1088. LinksLogic.Name = "LinksLogic"
  1089. LinksLogic.Parent = WaypointList
  1090. LinksLogic.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1091. LinksLogic.TextColor3 = Color3.new(1, 1, 1)
  1092. LinksLogic.BorderColor3 = Color3.new(0, 1, 0)
  1093. LinksLogic.Position = UDim2.new(0, 5, 0, 150)
  1094. LinksLogic.Size = UDim2.new(0, 147, 0, 20)
  1095. LinksLogic.Font = Enum.Font.Fantasy
  1096. LinksLogic.FontSize = Enum.FontSize.Size14
  1097. LinksLogic.Text = "Link's Logic"
  1098. LinksLogic.TextSize = 16
  1099.  
  1100. BoxedCars.Name = "BoxedCars"
  1101. BoxedCars.Parent = WaypointList
  1102. BoxedCars.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1103. BoxedCars.TextColor3 = Color3.new(1, 1, 1)
  1104. BoxedCars.BorderColor3 = Color3.new(0, 1, 0)
  1105. BoxedCars.Position = UDim2.new(0, 5, 0, 175)
  1106. BoxedCars.Size = UDim2.new(0, 147, 0, 20)
  1107. BoxedCars.Font = Enum.Font.Fantasy
  1108. BoxedCars.FontSize = Enum.FontSize.Size14
  1109. BoxedCars.Text = "Boxed Cars"
  1110. BoxedCars.TextSize = 16
  1111.  
  1112. FancyFurnishings.Name = "FancyFurnishings"
  1113. FancyFurnishings.Parent = WaypointList
  1114. FancyFurnishings.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1115. FancyFurnishings.TextColor3 = Color3.new(1, 1, 1)
  1116. FancyFurnishings.BorderColor3 = Color3.new(0, 1, 0)
  1117. FancyFurnishings.Position = UDim2.new(0, 5, 0, 200)
  1118. FancyFurnishings.Size = UDim2.new(0, 147, 0, 20)
  1119. FancyFurnishings.Font = Enum.Font.Fantasy
  1120. FancyFurnishings.FontSize = Enum.FontSize.Size14
  1121. FancyFurnishings.Text = "Fancy Furnishings"
  1122. FancyFurnishings.TextSize = 16
  1123.  
  1124. LandStore.Name = "LandStore"
  1125. LandStore.Parent = WaypointList
  1126. LandStore.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1127. LandStore.TextColor3 = Color3.new(1, 1, 1)
  1128. LandStore.BorderColor3 = Color3.new(0, 1, 0)
  1129. LandStore.Position = UDim2.new(0, 5, 0, 225)
  1130. LandStore.Size = UDim2.new(0, 147, 0, 20)
  1131. LandStore.Font = Enum.Font.Fantasy
  1132. LandStore.FontSize = Enum.FontSize.Size14
  1133. LandStore.Text = "Land Store"
  1134. LandStore.TextSize = 16
  1135.  
  1136. FineArtsShop.Name = "FineArtsShop"
  1137. FineArtsShop.Parent = WaypointList
  1138. FineArtsShop.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1139. FineArtsShop.TextColor3 = Color3.new(1, 1, 1)
  1140. FineArtsShop.BorderColor3 = Color3.new(0, 1, 0)
  1141. FineArtsShop.Position = UDim2.new(0, 5, 0, 250)
  1142. FineArtsShop.Size = UDim2.new(0, 147, 0, 20)
  1143. FineArtsShop.Font = Enum.Font.Fantasy
  1144. FineArtsShop.FontSize = Enum.FontSize.Size14
  1145. FineArtsShop.Text = "Fine Arts Shop"
  1146. FineArtsShop.TextSize = 16
  1147.  
  1148. BobsShack.Name = "BobsShack"
  1149. BobsShack.Parent = WaypointList
  1150. BobsShack.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1151. BobsShack.TextColor3 = Color3.new(1, 1, 1)
  1152. BobsShack.BorderColor3 = Color3.new(0, 1, 0)
  1153. BobsShack.Position = UDim2.new(0, 5, 0, 275)
  1154. BobsShack.Size = UDim2.new(0, 147, 0, 20)
  1155. BobsShack.Font = Enum.Font.Fantasy
  1156. BobsShack.FontSize = Enum.FontSize.Size14
  1157. BobsShack.Text = "Bob's Shack"
  1158. BobsShack.TextSize = 16
  1159.  
  1160. Swamp.Name = "Swamp"
  1161. Swamp.Parent = WaypointList
  1162. Swamp.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1163. Swamp.TextColor3 = Color3.new(1, 1, 1)
  1164. Swamp.BorderColor3 = Color3.new(0, 1, 0)
  1165. Swamp.Position = UDim2.new(0, 5, 0, 300)
  1166. Swamp.Size = UDim2.new(0, 147, 0, 20)
  1167. Swamp.Font = Enum.Font.Fantasy
  1168. Swamp.FontSize = Enum.FontSize.Size14
  1169. Swamp.Text = "Swamp"
  1170. Swamp.TextSize = 16
  1171.  
  1172. PalmIsland.Name = "PalmIsland"
  1173. PalmIsland.Parent = WaypointList
  1174. PalmIsland.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1175. PalmIsland.TextColor3 = Color3.new(1, 1, 1)
  1176. PalmIsland.BorderColor3 = Color3.new(0, 1, 0)
  1177. PalmIsland.Position = UDim2.new(0, 5, 0, 325)
  1178. PalmIsland.Size = UDim2.new(0, 147, 0, 20)
  1179. PalmIsland.Font = Enum.Font.Fantasy
  1180. PalmIsland.FontSize = Enum.FontSize.Size14
  1181. PalmIsland.Text = "Palm Island"
  1182. PalmIsland.TextSize = 16
  1183.  
  1184. Cave.Name = "Cave"
  1185. Cave.Parent = WaypointList
  1186. Cave.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1187. Cave.TextColor3 = Color3.new(1, 1, 1)
  1188. Cave.BorderColor3 = Color3.new(0, 1, 0)
  1189. Cave.Position = UDim2.new(0, 5, 0, 350)
  1190. Cave.Size = UDim2.new(0, 147, 0, 20)
  1191. Cave.Font = Enum.Font.Fantasy
  1192. Cave.FontSize = Enum.FontSize.Size14
  1193. Cave.Text = "Cave"
  1194. Cave.TextSize = 16
  1195.  
  1196. Volcano.Name = "Volcano"
  1197. Volcano.Parent = WaypointList
  1198. Volcano.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1199. Volcano.TextColor3 = Color3.new(1, 1, 1)
  1200. Volcano.BorderColor3 = Color3.new(0, 1, 0)
  1201. Volcano.Position = UDim2.new(0, 5, 0, 375)
  1202. Volcano.Size = UDim2.new(0, 147, 0, 20)
  1203. Volcano.Font = Enum.Font.Fantasy
  1204. Volcano.FontSize = Enum.FontSize.Size14
  1205. Volcano.Text = "Volcano"
  1206. Volcano.TextSize = 16
  1207.  
  1208. Dock.Name = "Dock"
  1209. Dock.Parent = WaypointList
  1210. Dock.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1211. Dock.TextColor3 = Color3.new(1, 1, 1)
  1212. Dock.BorderColor3 = Color3.new(0, 1, 0)
  1213. Dock.Position = UDim2.new(0, 5, 0, 400)
  1214. Dock.Size = UDim2.new(0, 147, 0, 20)
  1215. Dock.Font = Enum.Font.Fantasy
  1216. Dock.FontSize = Enum.FontSize.Size14
  1217. Dock.Text = "Dock"
  1218. Dock.TextSize = 16
  1219.  
  1220. Bridge.Name = "Bridge"
  1221. Bridge.Parent = WaypointList
  1222. Bridge.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1223. Bridge.TextColor3 = Color3.new(1, 1, 1)
  1224. Bridge.BorderColor3 = Color3.new(0, 1, 0)
  1225. Bridge.Position = UDim2.new(0, 5, 0, 425)
  1226. Bridge.Size = UDim2.new(0, 147, 0, 20)
  1227. Bridge.Font = Enum.Font.Fantasy
  1228. Bridge.FontSize = Enum.FontSize.Size14
  1229. Bridge.Text = "Bridge"
  1230. Bridge.TextSize = 16
  1231.  
  1232. EndTimes.Name = "EndTimes"
  1233. EndTimes.Parent = WaypointList
  1234. EndTimes.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1235. EndTimes.TextColor3 = Color3.new(1, 1, 1)
  1236. EndTimes.BorderColor3 = Color3.new(0, 1, 0)
  1237. EndTimes.Position = UDim2.new(0, 5, 0, 450)
  1238. EndTimes.Size = UDim2.new(0, 147, 0, 20)
  1239. EndTimes.Font = Enum.Font.Fantasy
  1240. EndTimes.FontSize = Enum.FontSize.Size14
  1241. EndTimes.Text = "End Times"
  1242. EndTimes.TextSize = 16
  1243.  
  1244. ShrineOfSight.Name = "ShrineOfSight"
  1245. ShrineOfSight.Parent = WaypointList
  1246. ShrineOfSight.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1247. ShrineOfSight.TextColor3 = Color3.new(1, 1, 1)
  1248. ShrineOfSight.BorderColor3 = Color3.new(0, 1, 0)
  1249. ShrineOfSight.Position = UDim2.new(0, 5, 0, 475)
  1250. ShrineOfSight.Size = UDim2.new(0, 147, 0, 20)
  1251. ShrineOfSight.Font = Enum.Font.Fantasy
  1252. ShrineOfSight.FontSize = Enum.FontSize.Size14
  1253. ShrineOfSight.Text = "Shrine Of Sight"
  1254. ShrineOfSight.TextSize = 16
  1255.  
  1256. TheDen.Name = "TheDen"
  1257. TheDen.Parent = WaypointList
  1258. TheDen.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1259. TheDen.TextColor3 = Color3.new(1, 1, 1)
  1260. TheDen.BorderColor3 = Color3.new(0, 1, 0)
  1261. TheDen.Position = UDim2.new(0, 5, 0, 500)
  1262. TheDen.Size = UDim2.new(0, 147, 0, 20)
  1263. TheDen.Font = Enum.Font.Fantasy
  1264. TheDen.FontSize = Enum.FontSize.Size14
  1265. TheDen.Text = "The Den"
  1266. TheDen.TextSize = 16
  1267.  
  1268. VolcanoWin.Name = "VolcanoWin"
  1269. VolcanoWin.Parent = WaypointList
  1270. VolcanoWin.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1271. VolcanoWin.TextColor3 = Color3.new(1, 1, 1)
  1272. VolcanoWin.BorderColor3 = Color3.new(0, 1, 0)
  1273. VolcanoWin.Position = UDim2.new(0, 5, 0, 525)
  1274. VolcanoWin.Size = UDim2.new(0, 147, 0, 20)
  1275. VolcanoWin.Font = Enum.Font.Fantasy
  1276. VolcanoWin.FontSize = Enum.FontSize.Size14
  1277. VolcanoWin.Text = "Volcano Win"
  1278. VolcanoWin.TextSize = 16
  1279.  
  1280. SkiLodge.Name = "SkiLodge"
  1281. SkiLodge.Parent = WaypointList
  1282. SkiLodge.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1283. SkiLodge.TextColor3 = Color3.new(1, 1, 1)
  1284. SkiLodge.BorderColor3 = Color3.new(0, 1, 0)
  1285. SkiLodge.Position = UDim2.new(0, 5, 0, 550)
  1286. SkiLodge.Size = UDim2.new(0, 147, 0, 20)
  1287. SkiLodge.Font = Enum.Font.Fantasy
  1288. SkiLodge.FontSize = Enum.FontSize.Size14
  1289. SkiLodge.Text = "Ski Lodge"
  1290. SkiLodge.TextSize = 16
  1291.  
  1292. StrangeMan.Name = "StrangeMan"
  1293. StrangeMan.Parent = WaypointList
  1294. StrangeMan.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1295. StrangeMan.TextColor3 = Color3.new(1, 1, 1)
  1296. StrangeMan.BorderColor3 = Color3.new(0, 1, 0)
  1297. StrangeMan.Position = UDim2.new(0, 5, 0, 575)
  1298. StrangeMan.Size = UDim2.new(0, 147, 0, 20)
  1299. StrangeMan.Font = Enum.Font.Fantasy
  1300. StrangeMan.FontSize = Enum.FontSize.Size14
  1301. StrangeMan.Text = "The Strange Man"
  1302. StrangeMan.TextSize = 16
  1303.  
  1304. FrostTreeArea.Name = "FrostTreeArea"
  1305. FrostTreeArea.Parent = WaypointList
  1306. FrostTreeArea.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1307. FrostTreeArea.TextColor3 = Color3.new(1, 1, 1)
  1308. FrostTreeArea.BorderColor3 = Color3.new(0, 1, 0)
  1309. FrostTreeArea.Position = UDim2.new(0, 5, 0, 600)
  1310. FrostTreeArea.Size = UDim2.new(0, 147, 0, 20)
  1311. FrostTreeArea.Font = Enum.Font.Fantasy
  1312. FrostTreeArea.FontSize = Enum.FontSize.Size14
  1313. FrostTreeArea.Text = "Frost Tree Area"
  1314. FrostTreeArea.TextSize = 16
  1315.  
  1316. SnowGlowTreeArea.Name = "SnowGlowTreeArea"
  1317. SnowGlowTreeArea.Parent = WaypointList
  1318. SnowGlowTreeArea.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1319. SnowGlowTreeArea.TextColor3 = Color3.new(1, 1, 1)
  1320. SnowGlowTreeArea.BorderColor3 = Color3.new(0, 1, 0)
  1321. SnowGlowTreeArea.Position = UDim2.new(0, 5, 0, 625)
  1322. SnowGlowTreeArea.Size = UDim2.new(0, 147, 0, 20)
  1323. SnowGlowTreeArea.Font = Enum.Font.Fantasy
  1324. SnowGlowTreeArea.FontSize = Enum.FontSize.Size14
  1325. SnowGlowTreeArea.Text = "SnowGlow Tree Area"
  1326. SnowGlowTreeArea.TextSize = 16
  1327.  
  1328. BringTreeFrame.Name = "BringTreeFrame"
  1329. BringTreeFrame.Parent = MenuFrame
  1330. BringTreeFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  1331. BringTreeFrame.BackgroundTransparency = 0
  1332. BringTreeFrame.BorderColor3 = Color3.new(0, 1, 0)
  1333. BringTreeFrame.Size = UDim2.new(0, 170, 0, 290)
  1334. BringTreeFrame.Visible = false
  1335.  
  1336. BringTreeHeader.Name = "BringTreeHeader"
  1337. BringTreeHeader.Parent = BringTreeFrame
  1338. BringTreeHeader.BackgroundColor3 = Color3.new(1, 1, 1)
  1339. BringTreeHeader.BackgroundTransparency = 0.15
  1340. BringTreeHeader.BorderColor3 = Color3.new(0, 1, 0)
  1341. BringTreeHeader.Position = UDim2.new(0, 0, 0, 0)
  1342. BringTreeHeader.Size = UDim2.new(0, 170, 0, 35)
  1343. BringTreeHeader.Font = Enum.Font.Fantasy
  1344. BringTreeHeader.FontSize = Enum.FontSize.Size18
  1345. BringTreeHeader.Text = "SELECT A TREE TO SPAWN"
  1346. BringTreeHeader.TextColor3 = Color3.new(0, 0, 0)
  1347. BringTreeHeader.TextScaled = true
  1348. BringTreeHeader.TextSize = 17
  1349. BringTreeHeader.TextWrapped = true
  1350.  
  1351. OakTree.Name = "OakTree"
  1352. OakTree.Parent = BringTreeFrame
  1353. OakTree.BackgroundColor3 = Color3.new(0.95256, 0.70952, 0.60368)
  1354. OakTree.BackgroundTransparency = 0.15
  1355. OakTree.BorderColor3 = Color3.new(0, 1, 0)
  1356. OakTree.Position = UDim2.new(0, 5, 0, 45)
  1357. OakTree.Size = UDim2.new(0, 37, 0, 35)
  1358. OakTree.Font = Enum.Font.Fantasy
  1359. OakTree.FontSize = Enum.FontSize.Size18
  1360. OakTree.Text = "OAK\nTREE"
  1361. OakTree.TextColor3 = Color3.new(0, 0, 0)
  1362. OakTree.TextWrapped = true
  1363. OakTree.TextSize = 14
  1364.  
  1365. ElmTree.Name = "ElmTree"
  1366. ElmTree.Parent = BringTreeFrame
  1367. ElmTree.BackgroundColor3 = Color3.new(1, 0.95648, 0.88984)
  1368. ElmTree.BackgroundTransparency = 0.15
  1369. ElmTree.BorderColor3 = Color3.new(0, 1, 0)
  1370. ElmTree.Position = UDim2.new(0, 47, 0, 45)
  1371. ElmTree.Size = UDim2.new(0, 37, 0, 35)
  1372. ElmTree.Font = Enum.Font.Fantasy
  1373. ElmTree.FontSize = Enum.FontSize.Size18
  1374. ElmTree.Text = "ELM\nTREE"
  1375. ElmTree.TextColor3 = Color3.new(0, 0, 0)
  1376. ElmTree.TextWrapped = true
  1377. ElmTree.TextSize = 14
  1378.  
  1379. EndTimesTree.Name = "EndTimesTree"
  1380. EndTimesTree.Parent = BringTreeFrame
  1381. EndTimesTree.BackgroundColor3 = Color3.new(1, 1, 1)
  1382. EndTimesTree.BackgroundTransparency = 0.15
  1383. EndTimesTree.BorderColor3 = Color3.new(0, 1, 0)
  1384. EndTimesTree.Position = UDim2.new(0, 89, 0, 45)
  1385. EndTimesTree.Size = UDim2.new(0, 76, 0, 35)
  1386. EndTimesTree.Font = Enum.Font.Fantasy
  1387. EndTimesTree.FontSize = Enum.FontSize.Size18
  1388. EndTimesTree.Text = "ENDTIMES\nTREE"
  1389. EndTimesTree.TextColor3 = Color3.new(0, 0, 0)
  1390. EndTimesTree.TextWrapped = true
  1391. EndTimesTree.TextSize = 14
  1392.  
  1393. BirchTree.Name = "BirchTree"
  1394. BirchTree.Parent = BringTreeFrame
  1395. BirchTree.BackgroundColor3 = Color3.new(0.9604, 0.9604, 0.9604)
  1396. BirchTree.BackgroundTransparency = 0.15
  1397. BirchTree.BorderColor3 = Color3.new(0, 1, 0)
  1398. BirchTree.Position = UDim2.new(0, 5, 0, 85)
  1399. BirchTree.Size = UDim2.new(0, 45, 0, 35)
  1400. BirchTree.Font = Enum.Font.Fantasy
  1401. BirchTree.FontSize = Enum.FontSize.Size18
  1402. BirchTree.Text = "BIRCH\nTREE"
  1403. BirchTree.TextColor3 = Color3.new(0, 0, 0)
  1404. BirchTree.TextWrapped = true
  1405. BirchTree.TextSize = 14
  1406.  
  1407. VolcanoTree.Name = "VolcanoTree"
  1408. VolcanoTree.Parent = BringTreeFrame
  1409. VolcanoTree.BackgroundColor3 = Color3.new(1, 0, 0)
  1410. VolcanoTree.BackgroundTransparency = 0.15
  1411. VolcanoTree.BorderColor3 = Color3.new(0, 1, 0)
  1412. VolcanoTree.Position = UDim2.new(0, 55, 0, 85)
  1413. VolcanoTree.Size = UDim2.new(0, 65, 0, 35)
  1414. VolcanoTree.Font = Enum.Font.Fantasy
  1415. VolcanoTree.FontSize = Enum.FontSize.Size18
  1416. VolcanoTree.Text = "VOLCANO\nTREE"
  1417. VolcanoTree.TextColor3 = Color3.new(0, 0, 0)
  1418. VolcanoTree.TextWrapped = true
  1419. VolcanoTree.TextSize = 14
  1420.  
  1421. FirTree.Name = "FirTree"
  1422. FirTree.Parent = BringTreeFrame
  1423. FirTree.BackgroundColor3 = Color3.new(1, 0.96824, 0.9212)
  1424. FirTree.BackgroundTransparency = 0.15
  1425. FirTree.BorderColor3 = Color3.new(0, 1, 0)
  1426. FirTree.Position = UDim2.new(0, 125, 0, 85)
  1427. FirTree.Size = UDim2.new(0, 40, 0, 35)
  1428. FirTree.Font = Enum.Font.Fantasy
  1429. FirTree.FontSize = Enum.FontSize.Size18
  1430. FirTree.Text = "FIR\nTREE"
  1431. FirTree.TextColor3 = Color3.new(0, 0, 0)
  1432. FirTree.TextWrapped = true
  1433. FirTree.TextSize = 14
  1434.  
  1435. SpookyTree.Name = "SpookyTree"
  1436. SpookyTree.Parent = BringTreeFrame
  1437. SpookyTree.BackgroundColor3 = Color3.new(0.35672, 0.062736, 0.003921)
  1438. SpookyTree.BackgroundTransparency = 0.15
  1439. SpookyTree.BorderColor3 = Color3.new(0, 1, 0)
  1440. SpookyTree.Position = UDim2.new(0, 5, 0, 125)
  1441. SpookyTree.Size = UDim2.new(0, 60, 0, 35)
  1442. SpookyTree.Font = Enum.Font.Fantasy
  1443. SpookyTree.FontSize = Enum.FontSize.Size18
  1444. SpookyTree.Text = "SPOOKY\nTREE"
  1445. SpookyTree.TextColor3 = Color3.new(1, 1, 1)
  1446. SpookyTree.TextWrapped = true
  1447. SpookyTree.TextSize = 14
  1448.  
  1449. KoaTree.Name = "KoaTree"
  1450. KoaTree.Parent = BringTreeFrame
  1451. KoaTree.BackgroundColor3 = Color3.new(0.72912, 0.125472, 0.003921)
  1452. KoaTree.BackgroundTransparency = 0.15
  1453. KoaTree.BorderColor3 = Color3.new(0, 1, 0)
  1454. KoaTree.Position = UDim2.new(0, 70, 0, 125)
  1455. KoaTree.Size = UDim2.new(0, 45, 0, 35)
  1456. KoaTree.Font = Enum.Font.Fantasy
  1457. KoaTree.FontSize = Enum.FontSize.Size18
  1458. KoaTree.Text = "KOA\nTREE"
  1459. KoaTree.TextColor3 = Color3.new(1, 1, 1)
  1460. KoaTree.TextWrapped = true
  1461. KoaTree.TextSize = 14
  1462.  
  1463. PalmTree.Name = "PalmTree"
  1464. PalmTree.Parent = BringTreeFrame
  1465. PalmTree.BackgroundColor3 = Color3.new(1, 0.96824, 0.9212)
  1466. PalmTree.BackgroundTransparency = 0.15
  1467. PalmTree.BorderColor3 = Color3.new(0, 1, 0)
  1468. PalmTree.Position = UDim2.new(0, 120, 0, 125)
  1469. PalmTree.Size = UDim2.new(0, 45, 0, 35)
  1470. PalmTree.Font = Enum.Font.Fantasy
  1471. PalmTree.FontSize = Enum.FontSize.Size18
  1472. PalmTree.Text = "PALM\nTREE"
  1473. PalmTree.TextColor3 = Color3.new(0, 0, 0)
  1474. PalmTree.TextWrapped = true
  1475. PalmTree.TextSize = 14
  1476.  
  1477. GreenTree.Name = "GreenTree"
  1478. GreenTree.Parent = BringTreeFrame
  1479. GreenTree.BackgroundColor3 = Color3.new(0, 1, 0)
  1480. GreenTree.BackgroundTransparency = 0.15
  1481. GreenTree.BorderColor3 = Color3.new(0, 1, 0)
  1482. GreenTree.Position = UDim2.new(0, 5, 0, 165)
  1483. GreenTree.Size = UDim2.new(0, 51, 0, 35)
  1484. GreenTree.Font = Enum.Font.Fantasy
  1485. GreenTree.FontSize = Enum.FontSize.Size18
  1486. GreenTree.Text = "GREEN\nTREE"
  1487. GreenTree.TextColor3 = Color3.new(0, 0, 0)
  1488. GreenTree.TextWrapped = true
  1489. GreenTree.TextSize = 14
  1490.  
  1491. GoldTree.Name = "GoldTree"
  1492. GoldTree.Parent = BringTreeFrame
  1493. GoldTree.BackgroundColor3 = Color3.new(0.960645, 0.86262, 0.231339)
  1494. GoldTree.BackgroundTransparency = 0.15
  1495. GoldTree.BorderColor3 = Color3.new(0, 1, 0)
  1496. GoldTree.Position = UDim2.new(0, 61, 0, 165)
  1497. GoldTree.Size = UDim2.new(0, 44, 0, 35)
  1498. GoldTree.Font = Enum.Font.Fantasy
  1499. GoldTree.FontSize = Enum.FontSize.Size18
  1500. GoldTree.Text = "GOLD\nTREE"
  1501. GoldTree.TextColor3 = Color3.new(0, 0, 0)
  1502. GoldTree.TextWrapped = true
  1503. GoldTree.TextSize = 14
  1504.  
  1505. CherryTree.Name = "CherryTree"
  1506. CherryTree.Parent = BringTreeFrame
  1507. CherryTree.BackgroundColor3 = Color3.new(0.93296, 0.39984, 0.49)
  1508. CherryTree.BackgroundTransparency = 0.15
  1509. CherryTree.BorderColor3 = Color3.new(0, 1, 0)
  1510. CherryTree.Position = UDim2.new(0, 110, 0, 165)
  1511. CherryTree.Size = UDim2.new(0, 55, 0, 35)
  1512. CherryTree.Font = Enum.Font.Fantasy
  1513. CherryTree.FontSize = Enum.FontSize.Size18
  1514. CherryTree.Text = "CHERRY TREE"
  1515. CherryTree.TextColor3 = Color3.new(0, 0, 0)
  1516. CherryTree.TextWrapped = true
  1517. CherryTree.TextSize = 14
  1518.  
  1519. CaveCrawlerTree.Name = "CaveCrawlerTree"
  1520. CaveCrawlerTree.Parent = BringTreeFrame
  1521. CaveCrawlerTree.BackgroundColor3 = Color3.new(0, 0, 1)
  1522. CaveCrawlerTree.BackgroundTransparency = 0.15
  1523. CaveCrawlerTree.BorderColor3 = Color3.new(0, 1, 0)
  1524. CaveCrawlerTree.Position = UDim2.new(0, 5, 0, 205)
  1525. CaveCrawlerTree.Size = UDim2.new(0, 45, 0, 35)
  1526. CaveCrawlerTree.Font = Enum.Font.Fantasy
  1527. CaveCrawlerTree.FontSize = Enum.FontSize.Size18
  1528. CaveCrawlerTree.Text = "CAVE\nTREE"
  1529. CaveCrawlerTree.TextColor3 = Color3.new(1, 1, 1)
  1530. CaveCrawlerTree.TextWrapped = true
  1531. CaveCrawlerTree.TextSize = 14
  1532.  
  1533. FrostyTree.Name = "FrostyTree"
  1534. FrostyTree.Parent = BringTreeFrame
  1535. FrostyTree.BackgroundColor3 = Color3.new(154/255, 255/255, 243/255)
  1536. FrostyTree.BackgroundTransparency = 0.15
  1537. FrostyTree.BorderColor3 = Color3.new(0, 1, 0)
  1538. FrostyTree.Position = UDim2.new(0, 55, 0, 205)
  1539. FrostyTree.Size = UDim2.new(0, 50, 0, 35)
  1540. FrostyTree.Font = Enum.Font.Fantasy
  1541. FrostyTree.FontSize = Enum.FontSize.Size18
  1542. FrostyTree.Text = "FROST\nTREE"
  1543. FrostyTree.TextColor3 = Color3.new(0, 0, 0)
  1544. FrostyTree.TextWrapped = true
  1545. FrostyTree.TextSize = 14
  1546.  
  1547. WalnutTree.Name = "WalnutTree"
  1548. WalnutTree.Parent = BringTreeFrame
  1549. WalnutTree.BackgroundColor3 = Color3.new(0.360732, 0.176445, 0.137235)
  1550. WalnutTree.BackgroundTransparency = 0.15
  1551. WalnutTree.BorderColor3 = Color3.new(0, 1, 0)
  1552. WalnutTree.Position = UDim2.new(0, 110, 0, 205)
  1553. WalnutTree.Size = UDim2.new(0, 55, 0, 35)
  1554. WalnutTree.Font = Enum.Font.Fantasy
  1555. WalnutTree.FontSize = Enum.FontSize.Size18
  1556. WalnutTree.Text = "WALNUT\nTREE"
  1557. WalnutTree.TextColor3 = Color3.new(1, 1, 1)
  1558. WalnutTree.TextWrapped = true
  1559. WalnutTree.TextSize = 13
  1560.  
  1561. SnowGlowTree.Name = "SnowGlowTree"
  1562. SnowGlowTree.Parent = BringTreeFrame
  1563. SnowGlowTree.BackgroundColor3 = Color3.new(0.960645, 0.86262, 0.231339)
  1564. SnowGlowTree.BackgroundTransparency = 0.15
  1565. SnowGlowTree.BorderColor3 = Color3.new(0, 1, 0)
  1566. SnowGlowTree.Position = UDim2.new(0, 5, 0, 245)
  1567. SnowGlowTree.Size = UDim2.new(0, 80, 0, 35)
  1568. SnowGlowTree.Font = Enum.Font.Fantasy
  1569. SnowGlowTree.FontSize = Enum.FontSize.Size18
  1570. SnowGlowTree.Text = "SNOWGLOW\nTREE"
  1571. SnowGlowTree.TextColor3 = Color3.new(0, 0, 0)
  1572. SnowGlowTree.TextWrapped = true
  1573. SnowGlowTree.TextSize = 13
  1574.  
  1575. BringTreeInfo1.Name = "BringTreeInfo1"
  1576. BringTreeInfo1.Parent = BringTreeFrame
  1577. BringTreeInfo1.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1578. BringTreeInfo1.BorderColor3 = Color3.new(0, 1, 0)
  1579. BringTreeInfo1.Position = UDim2.new(0, 95, 0, 255)
  1580. BringTreeInfo1.Size = UDim2.new(0, 70, 0, 25)
  1581. BringTreeInfo1.Font = Enum.Font.SourceSans
  1582. BringTreeInfo1.FontSize = Enum.FontSize.Size18
  1583. BringTreeInfo1.TextColor3 = Color3.new(1, 1, 1)
  1584. BringTreeInfo1.Text = "Info"
  1585. BringTreeInfo1.TextScaled = true
  1586. BringTreeInfo1.TextSize = 18
  1587.  
  1588. BringTreeInfo2.Name = "BringTreeInfo2"
  1589. BringTreeInfo2.Parent = BringTreeFrame
  1590. BringTreeInfo2.BackgroundColor3 = Color3.new(0, 0, 0)
  1591. BringTreeInfo2.BorderColor3 = Color3.new(0, 1, 0)
  1592. BringTreeInfo2.Position = UDim2.new(0, 185, 1, -260)
  1593. BringTreeInfo2.Size = UDim2.new(0, 170, 0, 300)
  1594. BringTreeInfo2.Visible = false
  1595. BringTreeInfo2.Font = Enum.Font.Fantasy
  1596. BringTreeInfo2.FontSize = Enum.FontSize.Size18
  1597. BringTreeInfo2.Text = "1. Click on a tree name to spawn it.\n2. Use an axe to chop it until the tree vanishes.\n3. Click on 'TP Wood to you' to bring the wood back or click 'Sell Wood' to send the wood to the Wood DropOff and sell it automatically for money.\n\nSome trees don't work so just try them and see if you get lucky."
  1598. BringTreeInfo2.TextColor3 = Color3.new(1, 1, 1)
  1599. BringTreeInfo2.TextSize = 16
  1600. BringTreeInfo2.Active = true
  1601. BringTreeInfo2.Draggable = true
  1602. BringTreeInfo2.ZIndex = 7
  1603. BringTreeInfo2.TextWrapped = true
  1604. BringTreeInfo2.TextYAlignment = Enum.TextYAlignment.Top
  1605.  
  1606. DupeFrame.Name = "DupeFrame"
  1607. DupeFrame.Parent = MenuFrame
  1608. DupeFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  1609. DupeFrame.BackgroundTransparency = 0
  1610. DupeFrame.BorderColor3 = Color3.new(0, 1, 0)
  1611. DupeFrame.Size = UDim2.new(0, 170, 0, 290)
  1612. DupeFrame.Visible = false
  1613.  
  1614. Info.Name = "Info"
  1615. Info.Parent = DupeFrame
  1616. Info.BackgroundColor3 = Color3.new(0, 0, 0)
  1617. Info.BorderColor3 = Color3.new(0, 1, 0)
  1618. Info.Position = UDim2.new(0, 185, 1, -370)
  1619. Info.Size = UDim2.new(0, 170, 0, 410)
  1620. Info.Visible = false
  1621. Info.Font = Enum.Font.Fantasy
  1622. Info.FontSize = Enum.FontSize.Size14
  1623. Info.Text = "1. Make sure no Save Slot is loaded in (or unload it).\n2. Click the 'Dupe' button.\n3. The button will turn green.\n4. Load the Save Slot you want to dupe from.\n5. After it's loaded check the Slot does not say 'Current'.\n6. Whitelist the person you want to move [dupe] your items to and make sure they aren't blacklisted\n7. Move the items you want to dupe to your friends base.\n8. Once you are done, reload your Save Slot that you just moved your items from.\n9. Once your Save Slot has reloaded, your base and every thing will be where it was before you duped.\n10. When you are done duping, reload your Slot one more time so you don't lose the items off of your base.\n11. You can disable this by unloading your Save Slot and pressing the Dupe button, it will turn grey."
  1624. Info.TextColor3 = Color3.new(1, 1, 1)
  1625. Info.TextSize = 14
  1626. Info.Active = true
  1627. Info.Draggable = true
  1628. Info.ZIndex = 7
  1629. Info.TextWrapped = true
  1630. Info.TextYAlignment = Enum.TextYAlignment.Top
  1631.  
  1632. Read.Name = "Read"
  1633. Read.Parent = DupeFrame
  1634. Read.BackgroundColor3 = Color3.new(1, 1, 1)
  1635. Read.BackgroundTransparency = 0.15
  1636. Read.BorderColor3 = Color3.new(0, 1, 0)
  1637. Read.Size = UDim2.new(0, 170, 0, 35)
  1638. Read.Font = Enum.Font.Fantasy
  1639. Read.FontSize = Enum.FontSize.Size18
  1640. Read.Text = "READ INFO BEFORE USING THIS"
  1641. Read.TextColor3 = Color3.new(0, 0, 0)
  1642. Read.TextScaled = true
  1643. Read.TextSize = 17
  1644. Read.TextWrapped = true
  1645.  
  1646. Dupe.Name = "Dupe"
  1647. Dupe.Parent = DupeFrame
  1648. Dupe.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1649. Dupe.BorderColor3 = Color3.new(0, 1, 0)
  1650. Dupe.Position = UDim2.new(0, 50, 0, 65)
  1651. Dupe.Size = UDim2.new(0, 70, 0, 25)
  1652. Dupe.Font = Enum.Font.Fantasy
  1653. Dupe.FontSize = Enum.FontSize.Size18
  1654. Dupe.Text = "Dupe"
  1655. Dupe.TextScaled = true
  1656. Dupe.TextColor3 = Color3.new(1, 1, 1)
  1657. Dupe.TextSize = 17
  1658.  
  1659. DupingText1.Name = "DupingText1"
  1660. DupingText1.Parent = DupeFrame
  1661. DupingText1.BackgroundColor3 = Color3.new(0, 0, 0)
  1662. DupingText1.BackgroundTransparency = 1
  1663. DupingText1.Position = UDim2.new(0, 5, 0, 100)
  1664. DupingText1.Size = UDim2.new(0, 160, 0, 140)
  1665. DupingText1.Font = Enum.Font.Fantasy
  1666. DupingText1.FontSize = Enum.FontSize.Size14
  1667. DupingText1.Text = "Loaded Slot Will Save"
  1668. DupingText1.TextColor3 = Color3.new(0, 1, 0)
  1669. DupingText1.TextSize = 14
  1670. DupingText1.TextYAlignment = Enum.TextYAlignment.Top
  1671. DupingText1.TextWrapped = true
  1672.  
  1673. MoreInfo.Name = "MoreInfo"
  1674. MoreInfo.Parent = DupeFrame
  1675. MoreInfo.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1676. MoreInfo.BorderColor3 = Color3.new(0, 1, 0)
  1677. MoreInfo.Position = UDim2.new(0, 25, 0, 240)
  1678. MoreInfo.Size = UDim2.new(0, 120, 0, 25)
  1679. MoreInfo.Font = Enum.Font.SourceSans
  1680. MoreInfo.FontSize = Enum.FontSize.Size18
  1681. MoreInfo.Text = "Info"
  1682. MoreInfo.TextScaled = true
  1683. MoreInfo.TextColor3 = Color3.new(1, 1, 1)
  1684. MoreInfo.TextSize = 18
  1685.  
  1686. PlayerFrame.Name = "PlayerFrame"
  1687. PlayerFrame.Parent = MenuFrame
  1688. PlayerFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  1689. PlayerFrame.BackgroundTransparency = 0
  1690. PlayerFrame.BorderColor3 = Color3.new(0, 1, 0)
  1691. PlayerFrame.Size = UDim2.new(0, 170, 0, 290)
  1692. PlayerFrame.Visible = false
  1693.  
  1694. PlyrSel.Name = "PlyrSel"
  1695. PlyrSel.Parent = PlayerFrame
  1696. PlyrSel.BackgroundColor3 = Color3.new(1, 1, 1)
  1697. PlyrSel.BackgroundTransparency = 0.15
  1698. PlyrSel.BorderColor3 = Color3.new(0, 1, 0)
  1699. PlyrSel.Position = UDim2.new(0, 5, 0, 5)
  1700. PlyrSel.Size = UDim2.new(0, 160, 0, 20)
  1701. PlyrSel.Font = Enum.Font.SourceSans
  1702. PlyrSel.FontSize = Enum.FontSize.Size18
  1703. PlyrSel.Text = "SELECT A PLAYER"
  1704. PlyrSel.TextColor3 = Color3.new(0, 0, 0)
  1705. PlyrSel.TextScaled = true
  1706. PlyrSel.TextSize = 17
  1707. PlyrSel.TextWrapped = true
  1708.  
  1709. Player1.Name = "Player1"
  1710. Player1.Parent = PlayerFrame
  1711. Player1.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1712. Player1.BorderColor3 = Color3.new(0, 1, 0)
  1713. Player1.Position = UDim2.new(0, 5, 0, 40)
  1714. Player1.Size = UDim2.new(0, 160, 0, 20)
  1715. Player1.Font = Enum.Font.Fantasy
  1716. Player1.FontSize = Enum.FontSize.Size18
  1717. Player1.Text = ""
  1718. Player1.TextColor3 = Color3.new(1, 1, 1)
  1719. Player1.TextSize = 16
  1720. Player1.TextWrapped = true
  1721.  
  1722. Player2.Name = "Player2"
  1723. Player2.Parent = PlayerFrame
  1724. Player2.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1725. Player2.BorderColor3 = Color3.new(0, 1, 0)
  1726. Player2.Position = UDim2.new(0, 5, 0, 65)
  1727. Player2.Size = UDim2.new(0, 160, 0, 20)
  1728. Player2.Font = Enum.Font.Fantasy
  1729. Player2.FontSize = Enum.FontSize.Size18
  1730. Player2.Text = ""
  1731. Player2.TextColor3 = Color3.new(1, 1, 1)
  1732. Player2.TextSize = 16
  1733. Player2.TextWrapped = true
  1734.  
  1735. Player3.Name = "Player3"
  1736. Player3.Parent = PlayerFrame
  1737. Player3.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1738. Player3.BorderColor3 = Color3.new(0, 1, 0)
  1739. Player3.Position = UDim2.new(0, 5, 0, 90)
  1740. Player3.Size = UDim2.new(0, 160, 0, 20)
  1741. Player3.Font = Enum.Font.Fantasy
  1742. Player3.FontSize = Enum.FontSize.Size18
  1743. Player3.Text = ""
  1744. Player3.TextColor3 = Color3.new(1, 1, 1)
  1745. Player3.TextSize = 16
  1746. Player3.TextWrapped = true
  1747.  
  1748. Player4.Name = "Player4"
  1749. Player4.Parent = PlayerFrame
  1750. Player4.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1751. Player4.BorderColor3 = Color3.new(0, 1, 0)
  1752. Player4.Position = UDim2.new(0, 5, 0, 115)
  1753. Player4.Size = UDim2.new(0, 160, 0, 20)
  1754. Player4.Font = Enum.Font.Fantasy
  1755. Player4.FontSize = Enum.FontSize.Size18
  1756. Player4.Text = ""
  1757. Player4.TextColor3 = Color3.new(1, 1, 1)
  1758. Player4.TextSize = 16
  1759. Player4.TextWrapped = true
  1760.  
  1761. Player5.Name = "Player5"
  1762. Player5.Parent = PlayerFrame
  1763. Player5.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1764. Player5.BorderColor3 = Color3.new(0, 1, 0)
  1765. Player5.Position = UDim2.new(0, 5, 0, 140)
  1766. Player5.Size = UDim2.new(0, 160, 0, 20)
  1767. Player5.Font = Enum.Font.Fantasy
  1768. Player5.FontSize = Enum.FontSize.Size18
  1769. Player5.Text = ""
  1770. Player5.TextColor3 = Color3.new(1, 1, 1)
  1771. Player5.TextSize = 16
  1772. Player5.TextWrapped = true
  1773.  
  1774. Player6.Name = "Player6"
  1775. Player6.Parent = PlayerFrame
  1776. Player6.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1777. Player6.BorderColor3 = Color3.new(0, 1, 0)
  1778. Player6.Position = UDim2.new(0, 5, 0, 165)
  1779. Player6.Size = UDim2.new(0, 160, 0, 20)
  1780. Player6.Font = Enum.Font.Fantasy
  1781. Player6.FontSize = Enum.FontSize.Size18
  1782. Player6.Text = ""
  1783. Player6.TextColor3 = Color3.new(1, 1, 1)
  1784. Player6.TextSize = 16
  1785. Player6.TextWrapped = true
  1786.  
  1787. TpPlayer.Name = "TpPlayer"
  1788. TpPlayer.Parent = PlayerFrame
  1789. TpPlayer.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1790. TpPlayer.BackgroundTransparency = 0
  1791. TpPlayer.BorderColor3 = Color3.new(0, 1, 0)
  1792. TpPlayer.Position = UDim2.new(0, 5, 0, 225)
  1793. TpPlayer.Size = UDim2.new(0, 75, 0, 35)
  1794. TpPlayer.Font = Enum.Font.Fantasy
  1795. TpPlayer.FontSize = Enum.FontSize.Size18
  1796. TpPlayer.Text = "Tp to Player"
  1797. TpPlayer.TextColor3 = Color3.new(1, 1, 1)
  1798. TpPlayer.TextScaled = true
  1799. TpPlayer.TextWrapped = true
  1800. TpPlayer.TextSize = 14
  1801.  
  1802. TpBase.Name = "TpBase"
  1803. TpBase.Parent = PlayerFrame
  1804. TpBase.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1805. TpBase.BackgroundTransparency = 0
  1806. TpBase.BorderColor3 = Color3.new(0, 1, 0)
  1807. TpBase.Position = UDim2.new(0, 90, 0, 225)
  1808. TpBase.Size = UDim2.new(0, 75, 0, 35)
  1809. TpBase.Font = Enum.Font.Fantasy
  1810. TpBase.FontSize = Enum.FontSize.Size18
  1811. TpBase.Text = "Tp to\nBase"
  1812. TpBase.TextColor3 = Color3.new(1, 1, 1)
  1813. TpPlayer.TextSize = 22
  1814.  
  1815. WalkSpeed.Name = "WalkSpeed"
  1816. WalkSpeed.Parent = MainFrame
  1817. WalkSpeed.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1818. WalkSpeed.TextColor3 = Color3.new(1, 1, 1)
  1819. WalkSpeed.BorderColor3 = Color3.new(0, 1, 0)
  1820. WalkSpeed.Position = UDim2.new(0, 155, 0, 340)
  1821. WalkSpeed.Size = UDim2.new(0, 45, 0, 20)
  1822. WalkSpeed.Font = Enum.Font.Fantasy
  1823. WalkSpeed.FontSize = Enum.FontSize.Size18
  1824. WalkSpeed.Text = "Walk"
  1825. WalkSpeed.TextSize = 17
  1826.  
  1827. WalkText.Name = "WalkText"
  1828. WalkText.Parent = MainFrame
  1829. WalkText.BackgroundColor3 = Color3.new(0, 0, 0)
  1830. WalkText.BorderColor3 = Color3.new(0, 1, 0)
  1831. WalkText.Position = UDim2.new(0, 205, 0, 340)
  1832. WalkText.Size = UDim2.new(0, 28, 0, 20)
  1833. WalkText.Font = Enum.Font.Fantasy
  1834. WalkText.FontSize = Enum.FontSize.Size18
  1835. WalkText.Text = "16"
  1836. WalkText.TextColor3 = Color3.new(1, 1, 1)
  1837. WalkText.TextSize = 17
  1838. WalkText.TextScaled = true
  1839.  
  1840. JumpPower.Name = "JumpPower"
  1841. JumpPower.Parent = MainFrame
  1842. JumpPower.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1843. JumpPower.TextColor3 = Color3.new(1, 1, 1)
  1844. JumpPower.BorderColor3 = Color3.new(0, 1, 0)
  1845. JumpPower.Position = UDim2.new(0, 243, 0, 340)
  1846. JumpPower.Size = UDim2.new(0, 49, 0, 20)
  1847. JumpPower.Font = Enum.Font.Fantasy
  1848. JumpPower.FontSize = Enum.FontSize.Size18
  1849. JumpPower.Text = "Jump"
  1850. JumpPower.TextSize = 17
  1851.  
  1852. JumpText.Name = "JumpText"
  1853. JumpText.Parent = MainFrame
  1854. JumpText.BackgroundColor3 = Color3.new(0, 0, 0)
  1855. JumpText.BorderColor3 = Color3.new(0, 1, 0)
  1856. JumpText.Position = UDim2.new(0, 297, 0, 340)
  1857. JumpText.Size = UDim2.new(0, 28, 0, 20)
  1858. JumpText.Font = Enum.Font.Fantasy
  1859. JumpText.FontSize = Enum.FontSize.Size18
  1860. JumpText.Text = "50"
  1861. JumpText.TextColor3 = Color3.new(1, 1, 1)
  1862. JumpText.TextSize = 17
  1863. JumpText.TextScaled = true
  1864.  
  1865. game.Lighting.Changed:connect(function()
  1866. game.Lighting.TimeOfDay = "12:00:00"
  1867. game.Lighting.FogEnd = 9999
  1868. game.Lighting.Brightness = 1
  1869. end)
  1870.  
  1871. --- Menus ---
  1872.  
  1873. local Menus = {
  1874. --[BringTree] = BringTreeFrame;--
  1875. [Waypoints] = WaypointFrame;
  1876. [Duper] = DupeFrame;
  1877. [TPPlanks] = PlankFrame;
  1878. [GoldAxe] = GoldAxeFrame;
  1879. [PlayerTp] = PlayerFrame;
  1880. [Greywood] = GreywoodFrame;
  1881. [GuiLabel] = LT2GUI2Frame;
  1882. [SellWoodPlanks] = SellFrame;
  1883. }
  1884. for button,frame in pairs(Menus) do
  1885. button.MouseButton1Click:connect(function()
  1886. if frame.Visible then
  1887. frame.Visible = false
  1888. return
  1889. end
  1890. for k,v in pairs(Menus) do
  1891. v.Visible = v == frame
  1892. end
  1893. end)
  1894. end
  1895.  
  1896. --- Open/Close ---
  1897.  
  1898. Open.MouseButton1Down:connect(function()
  1899. OpenFrame.Visible = false
  1900. MainFrame.Visible = true
  1901. end)
  1902.  
  1903. Minimize.MouseButton1Down:connect(function()
  1904. MainFrame.Visible = false
  1905. OpenFrame.Visible = true
  1906. end)
  1907.  
  1908. CloseLT2.MouseButton1Down:connect(function()
  1909. LT2CORE:destroy()
  1910. end)
  1911.  
  1912.  
  1913. local service = setmetatable({}, {
  1914. __index = function(t, k)
  1915. return game:GetService(k)
  1916. end
  1917. })
  1918.  
  1919. function Create(cls,props)
  1920. local inst = Instance.new(cls)
  1921. for i,v in pairs(props) do
  1922. inst[i] = v
  1923. end
  1924. return inst
  1925. end
  1926.  
  1927. --- TP Planks to you ---
  1928.  
  1929. checkplanks = false
  1930. local WoodPlanks={}
  1931. local ProcessedWoodList = LT2GUI.MainFrame.MenuFrame.PlankFrame.ProcessedWoodList
  1932.  
  1933. function UpdatePlanks()
  1934. local inc = 0
  1935. WoodPlanks={}
  1936. for i,v in pairs(game.Workspace.PlayerModels:GetChildren()) do
  1937. pcall(function()
  1938. if v.Name=="Plank" and v.Owner.Value==game.Players.LocalPlayer then
  1939. if v:FindFirstChild("TreeClass") and WoodPlanks[v.TreeClass.Value] then
  1940. WoodPlanks[v.TreeClass.Value]=WoodPlanks[v.TreeClass.Value]
  1941. WoodPlanks[v.TreeClass.Value]["Wood"][v]=v
  1942. elseif v:FindFirstChild("TreeClass") then
  1943. WoodPlanks[v.TreeClass.Value]={Wood={v.WoodSection}}
  1944. end
  1945. end
  1946. end)
  1947. end
  1948. end
  1949.  
  1950. function UpdateMovePlanks()
  1951. checkplanks = true
  1952. local inc=0
  1953. UpdatePlanks()
  1954. ProcessedWoodList:ClearAllChildren()
  1955. for i,v in pairs(WoodPlanks) do
  1956. ProcessedWoodList.CanvasSize=UDim2.new(0,0,0,25*inc)
  1957. local TPButton=Create("TextButton",{Parent=ProcessedWoodList,Size=UDim2.new(0,147,0,20),Position=UDim2.new(0,5,0,25*inc),Text=" "..i,ZIndex=3,BackgroundColor3 = Color3.new(0.2, 0.2, 0.2),Font = Enum.Font.Fantasy,TextColor3 = Color3.new(1, 1, 1),TextSize = 16,BorderColor3 = Color3.new(0, 1, 0)})
  1958. TPButton.MouseButton1Click:Connect(function()
  1959. sendNotice = game.ReplicatedStorage.Notices.SendUserNotice
  1960. sendNotice:Fire("Click where you want the Planks to TP to")
  1961. local ButtonPress
  1962. ButtonPress = game.Players.LocalPlayer:GetMouse().Button1Down:Connect(function()
  1963. Square = game.Players.LocalPlayer:GetMouse().Target
  1964. if (Square.Name == "OriginSquare" or Square.Name == "Square") then
  1965. ButtonPress:Disconnect()
  1966. for _, Plank in pairs(game.Workspace.PlayerModels:GetChildren()) do
  1967. if Plank.Name=="Plank" and Plank:FindFirstChild("TreeClass") then
  1968. if Plank.TreeClass.Value == i and Plank.Owner.Value == game.Players.LocalPlayer then
  1969. Plank:MoveTo(Square.Position)
  1970. for i=1,100 do
  1971. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Plank)
  1972. end
  1973. end
  1974. end
  1975. end
  1976. end
  1977. end)
  1978. end)
  1979. inc=inc+1
  1980. end
  1981. inc=0
  1982. end
  1983.  
  1984. TpAllPlanks.MouseButton1Click:Connect(function()
  1985. for _, Plank in pairs(game.Workspace.PlayerModels:GetChildren()) do
  1986. if Plank.Name=="Plank" and Plank:findFirstChild("Owner") then
  1987. if Plank.Owner.Value == game.Players.LocalPlayer then
  1988. sendNotice = game.ReplicatedStorage.Notices.SendUserNotice
  1989. sendNotice:Fire("Click where you want ALL the Planks to TP to")
  1990. local ButtonPress
  1991. ButtonPress = game.Players.LocalPlayer:GetMouse().Button1Down:Connect(function()
  1992. Square = game.Players.LocalPlayer:GetMouse().Target
  1993. if (Square.Name == "OriginSquare" or Square.Name == "Square") then
  1994. ButtonPress:Disconnect()
  1995. Plank:MoveTo(Square.Position)
  1996. for i=1,100 do
  1997. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Plank)
  1998. end
  1999. end
  2000. end)
  2001. end
  2002. end
  2003. end
  2004. end)
  2005.  
  2006. if not checkplanks then
  2007. UpdateMovePlanks()
  2008. end
  2009.  
  2010. game.Workspace.PlayerModels.ChildAdded:connect(function(Item)
  2011. if Item:FindFirstChild("Owner") and Item.Owner.Value == game.Players.LocalPlayer and Item:FindFirstChild("TreeClass") then
  2012. UpdateMovePlanks()
  2013. end
  2014. end)
  2015.  
  2016. game.Workspace.PlayerModels.ChildRemoved:connect(function(Item)
  2017. if Item:FindFirstChild("Owner") and Item.Owner.Value == game.Players.LocalPlayer and Item:FindFirstChild("TreeClass") then
  2018. UpdateMovePlanks()
  2019. end
  2020. end)
  2021.  
  2022. --- GuiInfo ---
  2023.  
  2024. GuiLabel.MouseButton1Down:connect(function()
  2025. if Lt2Info == "Info" then
  2026. Lt2Info = "Nothing"
  2027. GuiLabel.TextColor3 = Color3.new(1, 0, 1)
  2028. GuiLabel.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  2029. MenuLeftFrame.Active = true
  2030. MenuLeftFrame.Selectable = true
  2031. else
  2032. Lt2Info = "Info"
  2033. GuiLabel.TextColor3 = Color3.new(0, 1, 0)
  2034. GuiLabel.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  2035. MenuLeftFrame.Active = false
  2036. MenuLeftFrame.Selectable = false
  2037. end
  2038. end)
  2039.  
  2040. --- BringTreeInfo ---
  2041.  
  2042. BringTreeInfo1.MouseButton1Down:connect(function()
  2043. if BringTreeInfo1.Text == "Info" then
  2044. BringTreeInfo1.Text = "Close Info"
  2045. BringTreeInfo2.Visible = true
  2046. else
  2047. BringTreeInfo1.Text = "Info"
  2048. BringTreeInfo2.Visible = false
  2049. end
  2050. end)
  2051.  
  2052. --- Walkspeed/JumpPower ---
  2053.  
  2054. player = game.Players.LocalPlayer
  2055. Walk = 16
  2056. Jump = 50
  2057.  
  2058. WalkSpeed.MouseButton1Down:connect(function()
  2059. Walk = WalkText.Text
  2060. end)
  2061. JumpPower.MouseButton1Down:connect(function()
  2062. Jump = JumpText.Text
  2063. end)
  2064.  
  2065. player.Character.Humanoid.JumpPower = Jump
  2066. player.Character.Humanoid.WalkSpeed = Walk
  2067.  
  2068. player.Character.Humanoid.Changed:connect(function()
  2069. player.Character.Humanoid.JumpPower = Jump
  2070. player.Character.Humanoid.WalkSpeed = Walk
  2071. end)
  2072.  
  2073. --- Gold Axe ---
  2074.  
  2075. GoldAxeStart.MouseButton1Down:Connect(function()
  2076. GoldAxe.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2077. GoldAxeStart.Text = "Active"
  2078. Detect = coroutine.wrap(function()
  2079. Player = game.Players.LocalPlayer
  2080. mouse = Player:GetMouse()
  2081. mouse.Button1Down:connect(function()
  2082. MouseDown = true
  2083. end)
  2084. mouse.Button1Up:connect(function()
  2085. MouseDown = false
  2086. end)
  2087. end)
  2088. Detect()
  2089. Player = game.Players.LocalPlayer
  2090. mouse = Player:GetMouse()
  2091. game:GetService('RunService').RenderStepped:connect(function()
  2092. if Player.Character:FindFirstChild("Tool") then
  2093. if MouseDown == true then
  2094. if mouse.Target.Name == "WoodSection" then
  2095. targetWood = mouse.Target
  2096. Tool=Player.Character.Tool
  2097. ---FaceVector
  2098. Height = targetWood.CFrame:pointToObjectSpace(mouse.Hit.p).Y + targetWood.Size.Y/2
  2099. local ray = Ray.new(Player.Character.Head.Position, ((targetWood.CFrame * CFrame.new(0, Height - targetWood.Size.Y/2, 0)).p - Player.Character.Head.Position).unit * 200)
  2100. part,_,p = workspace:FindPartOnRay(ray, Player.Character)
  2101. function fixVector(V)
  2102. return Vector3.new(math.floor(V.X + 0.5), math.floor(V.Y + 0.5), math.floor(V.Z + 0.5))
  2103. end
  2104. local faceVector = fixVector(targetWood.CFrame:vectorToObjectSpace(p))
  2105. if faceVector.Y ~= 0 then
  2106. return
  2107. end
  2108. local lookAtCFrame = CFrame.new(Player.Character.Head.Position, mouse.Hit.p)
  2109. local relativeCFrame = lookAtCFrame:toObjectSpace(targetWood.CFrame * CFrame.Angles(math.pi/2, 0, 0))
  2110. local relativeLookVector = relativeCFrame.lookVector
  2111. local m = relativeLookVector.Y >= 0 and 1 or -1
  2112. if faceVector.X == 1 then
  2113. faceVector = Vector3.new(0, 0, -1) * m
  2114. elseif faceVector.X == -1 then
  2115. faceVector = Vector3.new(0, 0, 1) * m
  2116. elseif faceVector.Z == 1 then
  2117. faceVector = Vector3.new(1, 0, 0) * m
  2118. elseif faceVector.Z == -1 then
  2119. faceVector = Vector3.new(-1, 0, 0) * m
  2120. end
  2121. local cutEvent = targetWood.Parent.CutEvent
  2122. game.ReplicatedStorage.Interaction.RemoteProxy:FireServer(cutEvent, {sectionId = targetWood.ID.Value, faceVector = faceVector, height = Height, hitPoints = 0.2, cooldown = 0, cuttingClass = "Axe", tool = Player.Character.Tool})
  2123. end
  2124. end
  2125. end
  2126. end)
  2127. end)
  2128.  
  2129. --- Show Current Location
  2130.  
  2131. ShowLocation.MouseButton1Down:connect(function()
  2132.  
  2133. function round(num, numDecimalPlaces)
  2134. local mult = 10^(numDecimalPlaces or 0)
  2135. return math.floor(num * mult + 0.5) / mult
  2136. end
  2137.  
  2138. LocationX = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.x, 1)
  2139. LocationY = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.y, 1)
  2140. LocationZ = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.z, 1)
  2141. ShowLocation.Text = "Current/Set Location\n"..LocationX..", "..LocationY..", "..LocationZ
  2142. CustomTPPoint.Text = "TP to "..LocationX..", "..LocationY..", "..LocationZ
  2143. CustomLocationSet = true
  2144. end)
  2145.  
  2146. --- TP to custom location ---
  2147.  
  2148. CustomTPPoint.MouseButton1Down:connect(function()
  2149. if CustomLocationSet == true then
  2150. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2151. uTorso.CFrame = CFrame.new(LocationX, LocationY, LocationZ)
  2152. end
  2153. end)
  2154.  
  2155. --- Player Tp ---
  2156.  
  2157. local buttons = {
  2158. Player1,
  2159. Player2,
  2160. Player3,
  2161. Player4,
  2162. Player5,
  2163. Player6
  2164. }
  2165. spawn(function()
  2166. while true do
  2167. Player1.Text = ""
  2168. Player2.Text = ""
  2169. Player3.Text = ""
  2170. Player4.Text = ""
  2171. Player5.Text = ""
  2172. Player6.Text = ""
  2173. for i, v in pairs(game.Players:GetChildren()) do
  2174. buttons[i].Text = v.Name
  2175. buttons[i].Visible = true
  2176. end
  2177. wait(0.5)
  2178. end
  2179. end)
  2180.  
  2181. Player1.MouseButton1Down:connect(function()
  2182. PlyrSel.Text = Player1.Text
  2183. end)
  2184. Player2.MouseButton1Down:connect(function()
  2185. PlyrSel.Text = Player2.Text
  2186. end)
  2187. Player3.MouseButton1Down:connect(function()
  2188. PlyrSel.Text = Player3.Text
  2189. end)
  2190. Player4.MouseButton1Down:connect(function()
  2191. PlyrSel.Text = Player4.Text
  2192. end)
  2193. Player5.MouseButton1Down:connect(function()
  2194. PlyrSel.Text = Player5.Text
  2195. end)
  2196. Player6.MouseButton1Down:connect(function()
  2197. PlyrSel.Text = Player6.Text
  2198. end)
  2199.  
  2200. TpPlayer.MouseButton1Down:connect(function()
  2201. if PlyrSel.Text == "SELECT A PLAYER" then
  2202. warn("No Player Selected")
  2203. else
  2204. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace[PlyrSel.Text].HumanoidRootPart.CFrame
  2205. end
  2206. end)
  2207. TpBase.MouseButton1Down:connect(function()
  2208. for i, v in pairs(game.Workspace.Properties:GetChildren()) do
  2209. if v.Owner.Value == game.Players[PlyrSel.Text] then
  2210. local p= CFrame.new(v.OriginSquare.CFrame.x, v.OriginSquare.CFrame.y +3.5, v.OriginSquare.CFrame.z)
  2211. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = p
  2212. end
  2213. end
  2214. end)
  2215.  
  2216. --- NoClip ---
  2217.  
  2218. noclip = false
  2219. game:GetService('RunService').Stepped:connect(function()
  2220. if noclip then
  2221. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  2222. end
  2223. end)
  2224. NoClip.MouseButton1Down:connect(function()
  2225. noclip = not noclip
  2226. if NoClip.Text == "Enable NoClip" then
  2227. NoClip.Text = "Disable NoClip"
  2228. NoClip.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2229. else
  2230. NoClip.Text = "Enable NoClip"
  2231. NoClip.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2232. end
  2233. end)
  2234.  
  2235. --- Waypoints ---
  2236.  
  2237. local WayPoints = {
  2238. ["Wood R Us"] = CFrame.new(265, 5, 57),
  2239. ["SpawnPoint"] = CFrame.new(155, 5, 74),
  2240. ["Land Store"] = CFrame.new(258, 5, -99),
  2241. ["Link's Logic"] = CFrame.new(4607, 9, -798),
  2242. ["Cave"] = CFrame.new(3581, -177, 430),
  2243. ["Volcano"] = CFrame.new(-1585, 625, 1140),
  2244. ["Swamp"] = CFrame.new(-1209, 138, -801),
  2245. ["Palm Island"] = CFrame.new(2549, 5, -42),
  2246. ["Fancy Furnishings"] = CFrame.new(491, 13, -1720),
  2247. ["Boxed Cars"] = CFrame.new(509, 5.2, -1463),
  2248. ["Fine Arts Shop"] = CFrame.new(5207, -156, 719),
  2249. ["Bob's Shack"] = CFrame.new(260, 10, -2542),
  2250. ["Dock"] = CFrame.new(1114, 3.2, -197),
  2251. ["Bridge"] = CFrame.new(113, 15, -977),
  2252. ["End Times"] = CFrame.new(113, -204, -951),
  2253. ["Shrine Of Sight"] = CFrame.new(-1600, 205, 919),
  2254. ["The Den"] = CFrame.new(323, 49, 1930),
  2255. ["Volcano Win"] = CFrame.new(-1675, 358, 1476),
  2256. ["Ski Lodge"] = CFrame.new(1244, 66, 2306),
  2257. ["Strange Man"] = CFrame.new(1061, 20, 1131),
  2258. ["Frost Tree"] = CFrame.new(1448.3, 413, 3185.2),
  2259. ["SnowGlow Tree"] = CFrame.new(-1105.9, -6, -894)
  2260. }
  2261.  
  2262. WoodRUs.MouseButton1Down:connect(function()
  2263. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2264. uTorso.CFrame = WayPoints["Wood R Us"]
  2265. end)
  2266.  
  2267. SpawnPoint.MouseButton1Down:connect(function()
  2268. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2269. uTorso.CFrame = WayPoints["SpawnPoint"]
  2270. end)
  2271.  
  2272. LandStore.MouseButton1Down:connect(function()
  2273. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2274. uTorso.CFrame = WayPoints["Land Store"]
  2275. end)
  2276.  
  2277. LinksLogic.MouseButton1Down:connect(function()
  2278. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2279. uTorso.CFrame = WayPoints["Link's Logic"]
  2280. end)
  2281.  
  2282. Cave.MouseButton1Down:connect(function()
  2283. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2284. uTorso.CFrame = WayPoints["Cave"]
  2285. end)
  2286.  
  2287. Volcano.MouseButton1Down:connect(function()
  2288. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2289. uTorso.CFrame = WayPoints["Volcano"]
  2290. end)
  2291.  
  2292. Swamp.MouseButton1Down:connect(function()
  2293. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2294. uTorso.CFrame = WayPoints["Swamp"]
  2295. end)
  2296.  
  2297. PalmIsland.MouseButton1Down:connect(function()
  2298. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2299. uTorso.CFrame = WayPoints["Palm Island"]
  2300. end)
  2301.  
  2302. FancyFurnishings.MouseButton1Down:connect(function()
  2303. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2304. uTorso.CFrame = WayPoints["Fancy Furnishings"]
  2305. end)
  2306.  
  2307. BoxedCars.MouseButton1Down:connect(function()
  2308. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2309. uTorso.CFrame = WayPoints["Boxed Cars"]
  2310. end)
  2311.  
  2312. FineArtsShop.MouseButton1Down:connect(function()
  2313. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2314. uTorso.CFrame = WayPoints["Fine Arts Shop"]
  2315. end)
  2316.  
  2317. BobsShack.MouseButton1Down:connect(function()
  2318. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2319. uTorso.CFrame = WayPoints["Bob's Shack"]
  2320. end)
  2321.  
  2322. Dock.MouseButton1Down:connect(function()
  2323. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2324. uTorso.CFrame = WayPoints["Dock"]
  2325. end)
  2326.  
  2327. Bridge.MouseButton1Down:connect(function()
  2328. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2329. uTorso.CFrame = WayPoints["Bridge"]
  2330. end)
  2331.  
  2332. EndTimes.MouseButton1Down:connect(function()
  2333. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2334. uTorso.CFrame = WayPoints["End Times"]
  2335. end)
  2336.  
  2337. ShrineOfSight.MouseButton1Down:connect(function()
  2338. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2339. uTorso.CFrame = WayPoints["Shrine Of Sight"]
  2340. end)
  2341.  
  2342. TheDen.MouseButton1Down:connect(function()
  2343. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2344. uTorso.CFrame = WayPoints["The Den"]
  2345. end)
  2346.  
  2347. VolcanoWin.MouseButton1Down:connect(function()
  2348. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2349. uTorso.CFrame = WayPoints["Volcano Win"]
  2350. end)
  2351.  
  2352. SkiLodge.MouseButton1Down:connect(function()
  2353. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2354. uTorso.CFrame = WayPoints["Ski Lodge"]
  2355. end)
  2356.  
  2357. StrangeMan.MouseButton1Down:connect(function()
  2358. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2359. uTorso.CFrame = WayPoints["Strange Man"]
  2360. end)
  2361.  
  2362. FrostTreeArea.MouseButton1Down:connect(function()
  2363. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2364. uTorso.CFrame = WayPoints["Frost Tree"]
  2365. end)
  2366.  
  2367. SnowGlowTreeArea.MouseButton1Down:connect(function()
  2368. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2369. uTorso.CFrame = WayPoints["SnowGlow Tree"]
  2370. end)
  2371.  
  2372. --- Make Greywood ---
  2373.  
  2374. GreywoodStart.MouseButton1Down:Connect(function()
  2375. if GreyStart == "Nothing" then
  2376. GreyStart = "On"
  2377. GreywoodStart.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2378. GreywoodStart.Text = "Stop"
  2379. for i,v in next,workspace.PlayerModels:GetChildren() do
  2380. if v:FindFirstChild("Type") then
  2381. if v.Type.Value == "Blueprint" then
  2382. v.Type.Value = "Structure"
  2383. end
  2384. end
  2385. end
  2386. else
  2387. GreyStart = "Nothing"
  2388. GreywoodStart.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2389. GreywoodStart.Text = "Start"
  2390. for i,v in next,workspace.PlayerModels:GetChildren() do
  2391. if v:FindFirstChild("Type") then
  2392. if v.Type.Value == "Structure" then
  2393. v.Type.Value = "Blueprint"
  2394. end
  2395. end
  2396. end
  2397. end
  2398. end)
  2399.  
  2400. --- Anti AFK ---
  2401.  
  2402. AntiAFK.MouseButton1Down:Connect(function()
  2403. if afkactive == true then
  2404. afkactive = false
  2405. AntiAFK.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2406. AntiAFK.Text = "Start Anti-AFK Mode"
  2407. elseif afkactive == false then
  2408. afkactive = true
  2409. AntiAFK.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2410. AntiAFK.Text = "Stop Anti-AFK Mode"
  2411.  
  2412. logtime = coroutine.wrap(function()
  2413. afktotaltime=0
  2414. while afkactive == true do
  2415. wait(1)
  2416. afktotaltime=afktotaltime+1
  2417. AntiAFKtime.Text = "AFK for: "..afktotaltime.." Seconds"
  2418. end
  2419. end)
  2420.  
  2421. messageBot = coroutine.wrap(function()
  2422. while afkactive == true do
  2423. wait(300)
  2424. possiblechats = {"afk", "Away from keyboard", "I'm AFK"}
  2425. decide=math.random(1,#possiblechats)
  2426. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(possiblechats[decide], "All")
  2427. game.Players:Chat("/e point")
  2428. end
  2429. end)
  2430.  
  2431. moveChar = coroutine.wrap(function()
  2432. plr = game:service'Players'.LocalPlayer
  2433. char = plr.Character
  2434. hum = char:FindFirstChildOfClass'Humanoid'
  2435. while afkactive==true do
  2436. wait(1)
  2437. hum:Move(Vector3.new(1, 0, 0), false)
  2438. wait(1)
  2439. hum:Move(Vector3.new(-1, 0, 0), false)
  2440. wait(1)
  2441. hum:Move(Vector3.new(1, 0, 0), false)
  2442. wait(1)
  2443. hum:Move(Vector3.new(-1, 0, 0), false)
  2444. wait(1)
  2445. hum:Move(Vector3.new(0, 1, 0), false)
  2446. wait(1)
  2447. hum:Move(Vector3.new(0, 1, 0), false)
  2448. wait(60)
  2449. end
  2450. end)
  2451.  
  2452. logtime()
  2453. moveChar()
  2454. messageBot()
  2455. end
  2456. end)
  2457.  
  2458. --- Water Walk ---
  2459.  
  2460. WaterCollide.MouseButton1Down:connect(function()
  2461. if WCollide == "Nothing" then
  2462. WCollide = "On"
  2463. WaterCollide.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2464. WaterCollide.Text = "Water is Solid"
  2465. for i,v in pairs(game.Workspace.Water:GetChildren()) do
  2466. if v:IsA("Part") then
  2467. v.CanCollide = true
  2468. end
  2469. end
  2470. else
  2471. WCollide = "Nothing"
  2472. WaterCollide.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2473. WaterCollide.Text = "Walk on Water"
  2474. for i,v in pairs(game.Workspace.Water:GetChildren()) do
  2475. if v:IsA("Part") then
  2476. v.CanCollide = false
  2477. end
  2478. end
  2479. end
  2480. end)
  2481.  
  2482. --- Plot Tp ---
  2483.  
  2484. PlotTp.MouseButton1Down:connect(function()
  2485. for i,v in pairs(game.Workspace.Properties:GetChildren()) do
  2486. if v.Owner.Value == game.Players.LocalPlayer then
  2487. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.OriginSquare.CFrame + Vector3.new(0,10,0)
  2488. end
  2489. end
  2490. end)
  2491.  
  2492. ---TP Wood ---
  2493.  
  2494. TPWood.MouseButton1Click:Connect(function()
  2495. for _, Log in pairs(game.Workspace.LogModels:GetChildren()) do
  2496. if Log.Name:sub(1, 6) == "Loose_" and Log:findFirstChild("Owner") then
  2497. if Log.Owner.Value == game.Players.LocalPlayer then
  2498. Log:MoveTo(game.Players.LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0, 20, 0))
  2499. for i=1,100 do
  2500. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Log)
  2501. end
  2502. end
  2503. end
  2504. end
  2505. end)
  2506.  
  2507. --- Sell Wood ---
  2508.  
  2509. SellWood.MouseButton1Click:Connect(function()
  2510. for _, Log in pairs(game.Workspace.LogModels:GetChildren()) do
  2511. if Log.Name:sub(1, 6) == "Loose_" and Log:findFirstChild("Owner") then
  2512. if Log.Owner.Value == game.Players.LocalPlayer then
  2513. for i,v in pairs(Log:GetChildren()) do
  2514. if v.Name=="WoodSection" then
  2515. spawn(function()
  2516. for i=1,10 do
  2517. wait()
  2518. v.CFrame=CFrame.new(Vector3.new(315, -0.296, 85.791))*CFrame.Angles(math.rad(90),0,0)
  2519. end
  2520. end)
  2521. end
  2522. end
  2523. spawn(function()
  2524. for i=1,20 do
  2525. wait()
  2526. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Log)
  2527. end
  2528. end)
  2529. end
  2530. end
  2531. end
  2532. end)
  2533.  
  2534. --- Sell Planks ---
  2535.  
  2536. SellPlanks.MouseButton1Click:Connect(function()
  2537. for _, Plank in pairs(game.Workspace.PlayerModels:GetChildren()) do
  2538. if Plank.Name=="Plank" and Plank:findFirstChild("Owner") then
  2539. if Plank.Owner.Value == game.Players.LocalPlayer then
  2540. for i,v in pairs(Plank:GetChildren()) do
  2541. if v.Name=="WoodSection" then
  2542. spawn(function()
  2543. for i=1,10 do
  2544. wait()
  2545. v.CFrame=CFrame.new(Vector3.new(315, -0.296, 85.791))*CFrame.Angles(math.rad(90),0,0)
  2546. end
  2547. end)
  2548. end
  2549. end
  2550. spawn(function()
  2551. for i=1,20 do
  2552. wait()
  2553. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Plank)
  2554. end
  2555. end)
  2556. end
  2557. end
  2558. end
  2559. end)
  2560.  
  2561. --- God Mode ---
  2562.  
  2563. GodMode.MouseButton1Click:Connect(function()
  2564. GodMode.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2565. game.Players.LocalPlayer.Character.Humanoid.Name = "1"
  2566. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  2567. l.Parent = game.Players.LocalPlayer.Character
  2568. l.Name = "Humanoid"
  2569. wait(0.1)
  2570. game.Players.LocalPlayer.Character["1"]:Destroy()
  2571. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  2572. game.Players.LocalPlayer.Character.Animate.Disabled = true
  2573. l.Changed:Connect(function()
  2574. if l then
  2575. l.WalkSpeed=Walk
  2576. l.JumpPower=Jump
  2577. end
  2578. end)
  2579. end)
  2580.  
  2581. --- Dupe ---
  2582.  
  2583. MoreInfo.MouseButton1Down:connect(function()
  2584. if MoreInfo.Text == "Info" then
  2585. MoreInfo.Text = "Close Info"
  2586. Info.Visible = true
  2587. else
  2588. MoreInfo.Text = "Info"
  2589. Info.Visible = false
  2590. end
  2591. end)
  2592.  
  2593. Option = false
  2594.  
  2595. Dupe.MouseButton1Down:connect(function()
  2596. plr = game:GetService("Players").LocalPlayer
  2597. slot = plr.CurrentSaveSlot
  2598. if Option == false then
  2599. if slot.Value == -1 then
  2600. Option = true
  2601. slot.RobloxLocked = true
  2602. Duper.Text = "Duping Active"
  2603. Duper.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2604. Duper.TextColor3 = Color3.new(1, 1, 1)
  2605. Dupe.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2606. Dupe.TextColor3 = Color3.new(1, 1, 1)
  2607. Dupe.Text = "Duping"
  2608. DupingText1.Text = "Loaded Slot Will NOT Save\n\nMake sure to reload your slot after duping to make sure you get your items back (If you leave before reloading all your changes will be saved)."
  2609. end
  2610. else
  2611. Option = false
  2612. slot.RobloxLocked = false
  2613. Duper.Text = "Item Duping"
  2614. Duper.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2615. Duper.TextColor3 = Color3.new(1, 1, 1)
  2616. Dupe.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2617. Dupe.TextColor3 = Color3.new(1, 1, 1)
  2618. Dupe.Text = "Dupe"
  2619. DupingText1.Text = "Loaded Slot Will Save"
  2620. end
  2621. end)
  2622.  
  2623. --- BTools ---
  2624.  
  2625. CopyTool.MouseButton1Down:connect(function()
  2626. if BTool == "Copy" then
  2627. BTool = "Nothing"
  2628. CopyTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2629. else
  2630. BTool = "Copy"
  2631. CopyTool.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2632. DeleteTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2633. MoveTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2634. end
  2635. end)
  2636.  
  2637. DeleteTool.MouseButton1Down:connect(function()
  2638. if BTool == "Delete" then
  2639. BTool = "Nothing"
  2640. DeleteTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2641. else
  2642. BTool = "Delete"
  2643. DeleteTool.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2644. CopyTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2645. MoveTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2646. end
  2647. end)
  2648.  
  2649. MoveTool.MouseButton1Down:connect(function()
  2650. if BTool == "Move" then
  2651. BTool = "Nothing"
  2652. MoveTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2653. else
  2654. BTool = "Move"
  2655. MoveTool.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2656. CopyTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2657. DeleteTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2658. end
  2659. end)
  2660.  
  2661. Mouse.Button1Up:connect(function()
  2662. MDown = false
  2663. end)
  2664.  
  2665. Mouse.Button1Down:connect(function()
  2666. MDown = true
  2667. if BTool == "Copy" then
  2668. if Mouse.Target ~= nil then
  2669. Clone = Mouse.Target:clone()
  2670. Clone.Parent = game.Workspace
  2671. end
  2672. end
  2673.  
  2674. if BTool == "Delete" then
  2675. if Mouse.Target ~= nil then
  2676. Mouse.Target:remove()
  2677. end
  2678. end
  2679.  
  2680. if BTool == "Move" then
  2681. if Mouse.Target ~= nil then
  2682. MoveObject = Mouse.Target
  2683. end
  2684. end
  2685.  
  2686. wait()
  2687. if Clone ~= nil then
  2688. Clone.CanCollide = false
  2689. repeat
  2690. wait()
  2691. SubX = Clone.Size.X/2
  2692. SubY = Clone.Size.Y/2
  2693. SubZ = Clone.Size.Z/2
  2694. Clone.Position = Vector3.new(Mouse.Hit.X - SubX, Mouse.Hit.Y - SubY, Mouse.Hit.Z - SubZ)
  2695. until MDown == false
  2696. Clone.CanCollide = true
  2697. Clone.Position = Clone.Position + Vector3.new(SubX, SubY, SubZ)
  2698. Clone = nil
  2699. end
  2700.  
  2701. if MoveObject ~= nil then
  2702. MoveObject.CanCollide = false
  2703. repeat
  2704. wait()
  2705. SubX = MoveObject.Size.X/2
  2706. SubY = MoveObject.Size.Y/2
  2707. SubZ = MoveObject.Size.Z/2
  2708. MoveObject.Position = Vector3.new(Mouse.Hit.X - SubX, Mouse.Hit.Y - SubY, Mouse.Hit.Z - SubZ)
  2709. until MDown == false
  2710. MoveObject.CanCollide = true
  2711. MoveObject.Position = MoveObject.Position + Vector3.new(SubX, SubY, SubZ)
  2712. MoveObject= nil
  2713. end
  2714. end)
  2715.  
  2716. --- TP Tool ---
  2717.  
  2718. TPTool.MouseButton1Down:connect(function()
  2719. local Tele = Instance.new("Tool", game.Players.LocalPlayer.Backpack)
  2720. Tele.RequiresHandle = false
  2721. Tele.RobloxLocked = true
  2722. Tele.Name = "TPTool"
  2723. Tele.ToolTip = "Teleport Tool"
  2724. Tele.Equipped:connect(function(Mouse)
  2725. Mouse.Button1Down:connect(function()
  2726. if Mouse.Target then
  2727. game.Workspace:FindFirstChild(game.Players.LocalPlayer.Name).HumanoidRootPart.CFrame = (CFrame.new(Mouse.Hit.x, Mouse.Hit.y + 5, Mouse.Hit.z))
  2728. end
  2729. end)
  2730. end)
  2731. end)
  2732.  
  2733. --- Departure ---
  2734.  
  2735. game.Workspace.Ferry.TimeToDeparture.Changed:connect(function()
  2736. Depart.Text = "Ferry Departs: ".. game.Workspace.Ferry.TimeToDeparture.Value
  2737. if Depart.Text == "Ferry Departs: 0" then
  2738. wait(6)
  2739. Depart.Text = "Ferry has Departed"
  2740. else
  2741. Depart.Text = "Ferry Departs: ".. game.Workspace.Ferry.TimeToDeparture.Value
  2742. end
  2743. end)
  2744.  
  2745. --- Spawn Tree ---
  2746.  
  2747. function bringtree(telewoodtype)
  2748. local Wood = {
  2749. "Cherry",
  2750. "Palm",
  2751. "CaveCrawler",
  2752. "Generic",
  2753. "Spooky",
  2754. "Fir",
  2755. "GreenSwampy",
  2756. "Oak",
  2757. "Birch",
  2758. "Volcano",
  2759. "LoneCave",
  2760. "GoldSwampy",
  2761. "Koa",
  2762. "Walnut",
  2763. "Frost",
  2764. "SnowGlow"
  2765. }
  2766.  
  2767. local NewRegionNames = {}
  2768.  
  2769. --Name Changer For Seperating What Is What
  2770.  
  2771. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2772. if l.Name == "TreeRegion" then
  2773. if l ~= nil then
  2774. for i, b in pairs(l:GetChildren()) do
  2775. if b:IsA("Model") then
  2776. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[1] then
  2777. l.Name = Wood[1]
  2778. warn("TreeRegion #1 Has Been Changed To: "..Wood[1])
  2779. table.insert(NewRegionNames, l.Name)
  2780. end
  2781. end
  2782. end
  2783. end
  2784. end
  2785. end
  2786.  
  2787. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2788. if l.Name == "TreeRegion" then
  2789. if l ~= nil then
  2790. for i, b in pairs(l:GetChildren()) do
  2791. if b:IsA("Model") then
  2792. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[2] then
  2793. l.Name = Wood[2]
  2794. warn("TreeRegion #2 Has Been Changed To: "..Wood[2])
  2795. table.insert(NewRegionNames, l.Name)
  2796. end
  2797. end
  2798. end
  2799. end
  2800. end
  2801. end
  2802.  
  2803. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2804. if l.Name == "TreeRegion" then
  2805. if l ~= nil then
  2806. for i, b in pairs(l:GetChildren()) do
  2807. if b:IsA("Model") then
  2808. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[3] then
  2809. l.Name = Wood[3]
  2810. warn("TreeRegion #3 Has Been Changed To: "..Wood[3])
  2811. table.insert(NewRegionNames, l.Name)
  2812. end
  2813. end
  2814. end
  2815. end
  2816. end
  2817. end
  2818.  
  2819. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2820. if l.Name == "TreeRegion" then
  2821. if l ~= nil then
  2822. for i, b in pairs(l:GetChildren()) do
  2823. if b:IsA("Model") then
  2824. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[4] then
  2825. l.Name = Wood[4]
  2826. warn("TreeRegion #4 Has Been Changed To: "..Wood[4])
  2827. table.insert(NewRegionNames, l.Name)
  2828. end
  2829. end
  2830. end
  2831. end
  2832. end
  2833. end
  2834.  
  2835. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2836. if l.Name == "TreeRegion" then
  2837. if l ~= nil then
  2838. for i, b in pairs(l:GetChildren()) do
  2839. if b:IsA("Model") then
  2840. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[5] then
  2841. l.Name = Wood[5]
  2842. warn("TreeRegion #5 Has Been Changed To: "..Wood[5])
  2843. table.insert(NewRegionNames, l.Name)
  2844. end
  2845. end
  2846. end
  2847. end
  2848. end
  2849. end
  2850.  
  2851. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2852. if l.Name == "TreeRegion" then
  2853. if l ~= nil then
  2854. for i, b in pairs(l:GetChildren()) do
  2855. if b:IsA("Model") then
  2856. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[6] then
  2857. l.Name = Wood[6]
  2858. warn("TreeRegion #6 Has Been Changed To: "..Wood[6])
  2859. table.insert(NewRegionNames, l.Name)
  2860. end
  2861. end
  2862. end
  2863. end
  2864. end
  2865. end
  2866.  
  2867. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2868. if l.Name == "TreeRegion" then
  2869. if l ~= nil then
  2870. for i, b in pairs(l:GetChildren()) do
  2871. if b:IsA("Model") then
  2872. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[7] then
  2873. l.Name = Wood[7]
  2874. warn("TreeRegion #7 Has Been Changed To: "..Wood[7])
  2875. table.insert(NewRegionNames, l.Name)
  2876. end
  2877. end
  2878. end
  2879. end
  2880. end
  2881. end
  2882.  
  2883. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2884. if l.Name == "TreeRegion" then
  2885. if l ~= nil then
  2886. for i, b in pairs(l:GetChildren()) do
  2887. if b:IsA("Model") then
  2888. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[8] then
  2889. l.Name = Wood[8]
  2890. warn("TreeRegion #8 Has Been Changed To: "..Wood[8])
  2891. table.insert(NewRegionNames, l.Name)
  2892. end
  2893. end
  2894. end
  2895. end
  2896. end
  2897. end
  2898.  
  2899. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2900. if l.Name == "TreeRegion" then
  2901. if l ~= nil then
  2902. for i, b in pairs(l:GetChildren()) do
  2903. if b:IsA("Model") then
  2904. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[9] then
  2905. l.Name = Wood[9]
  2906. warn("TreeRegion #9 Has Been Changed To: "..Wood[9])
  2907. table.insert(NewRegionNames, l.Name)
  2908. end
  2909. end
  2910. end
  2911. end
  2912. end
  2913. end
  2914.  
  2915. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2916. if l.Name == "TreeRegion" then
  2917. if l ~= nil then
  2918. for i, b in pairs(l:GetChildren()) do
  2919. if b:IsA("Model") then
  2920. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[10] then
  2921. l.Name = Wood[10]
  2922. warn("TreeRegion #10 Has Been Changed To: "..Wood[10])
  2923. table.insert(NewRegionNames, l.Name)
  2924. end
  2925. end
  2926. end
  2927. end
  2928. end
  2929. end
  2930.  
  2931. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2932. if l.Name == "TreeRegion" then
  2933. if l ~= nil then
  2934. for i, b in pairs(l:GetChildren()) do
  2935. if b:IsA("Model") then
  2936. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[11] then
  2937. l.Name = Wood[11]
  2938. warn("TreeRegion #11 Has Been Changed To: "..Wood[11])
  2939. table.insert(NewRegionNames, l.Name)
  2940. end
  2941. end
  2942. end
  2943. end
  2944. end
  2945. end
  2946.  
  2947. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2948. if l.Name == "TreeRegion" then
  2949. if l ~= nil then
  2950. for i, b in pairs(l:GetChildren()) do
  2951. if b:IsA("Model") then
  2952. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[12] then
  2953. l.Name = Wood[12]
  2954. warn("TreeRegion #12 Has Been Changed To: "..Wood[12])
  2955. table.insert(NewRegionNames, l.Name)
  2956. end
  2957. end
  2958. end
  2959. end
  2960. end
  2961. end
  2962.  
  2963. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2964. if l.Name == "TreeRegion" then
  2965. if l ~= nil then
  2966. for i, b in pairs(l:GetChildren()) do
  2967. if b:IsA("Model") then
  2968. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[13] then
  2969. l.Name = Wood[13]
  2970. warn("TreeRegion #13 Has Been Changed To: "..Wood[13])
  2971. table.insert(NewRegionNames, l.Name)
  2972. end
  2973. end
  2974. end
  2975. end
  2976. end
  2977. end
  2978.  
  2979. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2980. if l.Name == "TreeRegion" then
  2981. if l ~= nil then
  2982. for i, b in pairs(l:GetChildren()) do
  2983. if b:IsA("Model") then
  2984. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[14] then
  2985. l.Name = Wood[14]
  2986. warn("TreeRegion #14 Has Been Changed To: "..Wood[14])
  2987. table.insert(NewRegionNames, l.Name)
  2988. end
  2989. end
  2990. end
  2991. end
  2992. end
  2993. end
  2994.  
  2995. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2996. if l.Name == "TreeRegion" then
  2997. if l ~= nil then
  2998. for i, b in pairs(l:GetChildren()) do
  2999. if b:IsA("Model") then
  3000. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[15] then
  3001. l.Name = Wood[15]
  3002. warn("TreeRegion #15 Has Been Changed To: "..Wood[15])
  3003. table.insert(NewRegionNames, l.Name)
  3004. end
  3005. end
  3006. end
  3007. end
  3008. end
  3009. end
  3010.  
  3011. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  3012. if l.Name == "TreeRegion" then
  3013. if l ~= nil then
  3014. for i, b in pairs(l:GetChildren()) do
  3015. if b:IsA("Model") then
  3016. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[16] then
  3017. l.Name = Wood[16]
  3018. warn("TreeRegion #16 Has Been Changed To: "..Wood[16])
  3019. table.insert(NewRegionNames, l.Name)
  3020. end
  3021. end
  3022. end
  3023. end
  3024. end
  3025. end
  3026.  
  3027. --Names Checker
  3028.  
  3029. for i, v in pairs(game:GetService("Workspace"):GetChildren()) do
  3030. print(v.Name)
  3031. end
  3032.  
  3033. --Teleporter
  3034.  
  3035. if telewoodtype == Wood[1] then
  3036. for i, v in pairs(game:GetService("Workspace")[Wood[1]]:GetChildren()) do
  3037. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[1] then
  3038. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3039. end
  3040. end
  3041. end
  3042.  
  3043. if telewoodtype == Wood[2] then
  3044. for i, v in pairs(game:GetService("Workspace")[Wood[2]]:GetChildren()) do
  3045. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[2] then
  3046. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3047. end
  3048. end
  3049. end
  3050.  
  3051. if telewoodtype == Wood[3] then
  3052. for i, v in pairs(game:GetService("Workspace")[Wood[3]]:GetChildren()) do
  3053. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[3] then
  3054. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3055. end
  3056. end
  3057. end
  3058.  
  3059. if telewoodtype == Wood[4] then
  3060. for i, v in pairs(game:GetService("Workspace")[Wood[4]]:GetChildren()) do
  3061. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[4] then
  3062. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3063. end
  3064. end
  3065. end
  3066.  
  3067. if telewoodtype == Wood[5] then
  3068. for i, v in pairs(game:GetService("Workspace")[Wood[5]]:GetChildren()) do
  3069. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[5] then
  3070. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3071. end
  3072. end
  3073. end
  3074.  
  3075. if telewoodtype == Wood[6] then
  3076. for i, v in pairs(game:GetService("Workspace")[Wood[6]]:GetChildren()) do
  3077. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[6] then
  3078. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3079. end
  3080. end
  3081. end
  3082.  
  3083. if telewoodtype == Wood[7] then
  3084. for i, v in pairs(game:GetService("Workspace")[Wood[7]]:GetChildren()) do
  3085. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[7] then
  3086. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3087. end
  3088. end
  3089. end
  3090.  
  3091. if telewoodtype == Wood[8] then
  3092. for i, v in pairs(game:GetService("Workspace")[Wood[8]]:GetChildren()) do
  3093. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[8] then
  3094. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3095. end
  3096. end
  3097. end
  3098.  
  3099. if telewoodtype == Wood[9] then
  3100. for i, v in pairs(game:GetService("Workspace")[Wood[9]]:GetChildren()) do
  3101. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[9] then
  3102. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3103. end
  3104. end
  3105. end
  3106.  
  3107. if telewoodtype == Wood[10] then
  3108. for i, v in pairs(game:GetService("Workspace")[Wood[10]]:GetChildren()) do
  3109. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[10] then
  3110. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3111. end
  3112. end
  3113. end
  3114.  
  3115. if telewoodtype == Wood[11] then
  3116. for i, v in pairs(game:GetService("Workspace")[Wood[11]]:GetChildren()) do
  3117. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[11] then
  3118. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3119. end
  3120. end
  3121. end
  3122.  
  3123. if telewoodtype == Wood[12] then
  3124. for i, v in pairs(game:GetService("Workspace")[Wood[12]]:GetChildren()) do
  3125. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[12] then
  3126. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3127. end
  3128. end
  3129. end
  3130.  
  3131. if telewoodtype == Wood[13] then
  3132. for i, v in pairs(game:GetService("Workspace")[Wood[13]]:GetChildren()) do
  3133. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[13] then
  3134. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3135. end
  3136. end
  3137. end
  3138.  
  3139. if telewoodtype == Wood[14] then
  3140. for i, v in pairs(game:GetService("Workspace")[Wood[14]]:GetChildren()) do
  3141. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[14] then
  3142. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3143. end
  3144. end
  3145. end
  3146. if telewoodtype == Wood[15] then
  3147. for i, v in pairs(game:GetService("Workspace")[Wood[15]]:GetChildren()) do
  3148. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[15] then
  3149. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3150. end
  3151. end
  3152. end
  3153. if telewoodtype == Wood[16] then
  3154. for i, v in pairs(game:GetService("Workspace")[Wood[16]]:GetChildren()) do
  3155. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[16] then
  3156. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3157. end
  3158. end
  3159. end
  3160.  
  3161. end
  3162.  
  3163. OakTree.MouseButton1Down:Connect(function()
  3164. bringtree('Generic')
  3165. end)
  3166.  
  3167. CherryTree.MouseButton1Down:Connect(function()
  3168. bringtree('Cherry')
  3169. end)
  3170.  
  3171. PalmTree.MouseButton1Down:Connect(function()
  3172. bringtree('Palm')
  3173. end)
  3174.  
  3175. CaveCrawlerTree.MouseButton1Down:Connect(function()
  3176. bringtree('CaveCrawler')
  3177. end)
  3178.  
  3179. SpookyTree.MouseButton1Down:Connect(function()
  3180. bringtree('Spooky')
  3181. end)
  3182.  
  3183. FirTree.MouseButton1Down:Connect(function()
  3184. bringtree('Fir')
  3185. end)
  3186.  
  3187. GreenTree.MouseButton1Down:Connect(function()
  3188. bringtree('GreenSwampy')
  3189. end)
  3190.  
  3191. BirchTree.MouseButton1Down:Connect(function()
  3192. bringtree('Birch')
  3193. end)
  3194.  
  3195. VolcanoTree.MouseButton1Down:Connect(function()
  3196. bringtree('Volcano')
  3197. end)
  3198.  
  3199. EndTimesTree.MouseButton1Down:Connect(function()
  3200. bringtree('LoneCave')
  3201. end)
  3202.  
  3203. ElmTree.MouseButton1Down:Connect(function()
  3204. bringtree('Oak')
  3205. end)
  3206.  
  3207. KoaTree.MouseButton1Down:Connect(function()
  3208. bringtree('Koa')
  3209. end)
  3210.  
  3211. GoldTree.MouseButton1Down:Connect(function()
  3212. bringtree('GoldSwampy')
  3213. end)
  3214.  
  3215. WalnutTree.MouseButton1Down:Connect(function()
  3216. bringtree('Walnut')
  3217. end)
  3218.  
  3219. FrostyTree.MouseButton1Down:Connect(function()
  3220. bringtree('Frost')
  3221. end)
  3222.  
  3223. SnowGlowTree.MouseButton1Down:Connect(function()
  3224. bringtree('SnowGlow')
  3225. end)
  3226.  
  3227. --- ReJoin Server ---
  3228.  
  3229. ReJoinServer.MouseButton1Down:connect(function()
  3230. local placeId = "13822889"
  3231. game:GetService("TeleportService"):Teleport(placeId)
  3232. end)
  3233.  
  3234. --- End ---
Add Comment
Please, Sign In to add comment