Guest User

Untitled

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