HangMan23

FirstSctiptFHR

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