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