Anonymouse10101

Lumber Tycoon 2 Hacks Op

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