Guest User

Untitled

a guest
Oct 23rd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 209.75 KB | None | 0 0
  1. -- Lumber Tycoon 2 Gui Created by LuckyMMB @ V3rmillion.net
  2. -- Discord https://discord.gg/GKzJnUC
  3.  
  4. --- Automatically Add players to Blacklist ---
  5.  
  6. Mouse = game.Players.LocalPlayer:GetMouse()
  7.  
  8. Client = game.ReplicatedStorage.Interaction.ClientSetListPlayer
  9. players = game.Players
  10. for i, v in pairs(players:GetPlayers()) do
  11. if v.Name ~= players.LocalPlayer.Name then
  12. Client:InvokeServer(players.LocalPlayer.BlacklistFolder, v, true)
  13. end
  14. end
  15. players.PlayerAdded:connect(function(plr)
  16. Client:InvokeServer(players.LocalPlayer.BlacklistFolder, plr, true)
  17. end)
  18.  
  19. --- Fly ---
  20.  
  21. function fly()
  22. for i,v in pairs(script:GetChildren()) do
  23. pcall(function() v.Value = "" end)
  24. game:GetService("Debris"):AddItem(v,.1)
  25. end
  26.  
  27. function weld(p0,p1,c0,c1,par)
  28. local w = Instance.new("Weld",p0 or par)
  29. w.Part0 = p0
  30. w.Part1 = p1
  31. w.C0 = c0 or CFrame.new()
  32. w.C1 = c1 or CFrame.new()
  33. return w
  34. end
  35.  
  36. local motors = {}
  37.  
  38. function motor(p0,p1,c0,c1,des,vel,par)
  39. local w = Instance.new("Motor6D",p0 or par)
  40. w.Part0 = p0
  41. w.Part1 = p1
  42. w.C0 = c0 or CFrame.new()
  43. w.C1 = c1 or CFrame.new()
  44. w.MaxVelocity = tonumber(vel) or .05
  45. w.DesiredAngle = tonumber(des) or 0
  46. return w
  47. end
  48.  
  49. function lerp(a,b,c)
  50. return a+(b-a)*c
  51. end
  52.  
  53. function clerp(c1,c2,al)
  54. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  55. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  56. for i,v in pairs(com1) do
  57. com1[i] = lerp(v,com2[i],al)
  58. end
  59. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  60. end
  61.  
  62. function ccomplerp(c1,c2,al)
  63. local com1 = {c1:components()}
  64. local com2 = {c2:components()}
  65. for i,v in pairs(com1) do
  66. com1[i] = lerp(v,com2[i],al)
  67. end
  68. return CFrame.new(unpack(com1))
  69. end
  70.  
  71. function tickwave(time,length,offset)
  72. return (math.abs((tick()+(offset or 0))%time-time/2)*2-time/2)/time/2*length
  73. end
  74.  
  75. function invcol(c)
  76. c = c.Color
  77. return BrickColor.new(Color3.new(1-c.b,1-c.g,1-c.r))
  78. end
  79. local oc = oc or function(...) return ... end
  80. local plr = game.Players.LocalPlayer
  81. local char = plr.Character
  82. local tor = char.Torso
  83. local hum = char.Humanoid
  84. hum.PlatformStand = false
  85. pcall(function()
  86. char.Wings:Destroy()
  87. end)
  88. pcall(function()
  89. char.Angel:Destroy() -- hat
  90. end)
  91. local mod = Instance.new("Model",char)
  92. mod.Name = "Wings"
  93. local special = {
  94. [game.Players.LocalPlayer.Name] = {"Black","Bright red",.5,0,false,Color3.new(1,0,0),Color3.new(0,0,0)},
  95. }
  96. local topcolor = BrickColor.new("Really black")
  97. local feacolor = BrickColor.new("Black")
  98. local ptrans = 0
  99. local pref = 0
  100. local fire = true
  101. local fmcol = Color3.new()
  102. local fscol = Color3.new()
  103. local spec = special[plr.Name:lower()]
  104. if spec then
  105. 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]
  106. end
  107. local part = Instance.new("Part")
  108. part.FormFactor = "Custom"
  109. part.Size = Vector3.new(.2,.2,.2)
  110. part.TopSurface,part.BottomSurface = 0,0
  111. part.CanCollide = false
  112. part.BrickColor = BrickColor.new("Black")
  113. part.Transparency = ptrans
  114. part.Reflectance = pref
  115. local ef = Instance.new("Fire",fire and part or nil)
  116. ef.Size = .15
  117. ef.Color = BrickColor.new("Black").Color
  118. ef.SecondaryColor = BrickColor.new("Bright red").Color
  119. part:BreakJoints()
  120. function newpart()
  121. local clone = part:Clone()
  122. clone.Parent = mod
  123. clone:BreakJoints()
  124. return clone
  125. end
  126. local feath = newpart()
  127. feath.BrickColor = feacolor
  128. feath.Transparency = 0
  129. Instance.new("SpecialMesh",feath).MeshType = "Sphere"
  130. function newfeather()
  131. local clone = feath:Clone()
  132. clone.Parent = mod
  133. clone:BreakJoints()
  134. return clone
  135. end
  136. flying = false
  137. moving = false
  138. for i,v in pairs(tor:GetChildren()) do
  139. if v.ClassName:lower():match("body") then
  140. v:Destroy()
  141. end
  142. end
  143. local ctor = tor:Clone()
  144. ctor:ClearAllChildren()
  145. ctor.Name = "cTorso"
  146. ctor.Transparency = 1
  147. ctor.CanCollide = false
  148. ctor.FormFactor = "Custom"
  149. ctor.Size = Vector3.new(.2,.2,.2)
  150. ctor.Parent = mod
  151. weld(tor,ctor)
  152. local bg = Instance.new("BodyGyro",ctor)
  153. bg.maxTorque = Vector3.new()
  154. bg.P = 15000
  155. bg.D = 1000
  156. local bv = Instance.new("BodyVelocity",ctor)
  157. bv.maxForce = Vector3.new()
  158. bv.P = 15000
  159. vel = Vector3.new()
  160. cf = CFrame.new()
  161. flspd = 0
  162. keysdown = {}
  163. keypressed = {}
  164. ktime = {}
  165. descendtimer = 0
  166. jumptime = tick()
  167. hum.Jumping:connect(function()
  168. jumptime = tick()
  169. end)
  170. cam = workspace.CurrentCamera
  171. kd = plr:GetMouse().KeyDown:connect(oc(function(key)
  172. keysdown[key] = true
  173. keypressed[key] = true
  174. if key == "q" then
  175. descendtimer = tick()
  176. elseif key == " " and not hum.Jump then
  177. jumptime = tick()
  178. elseif (key == "a" or key == "d") and ktime[key] and tick()-ktime[key] < .3 and math.abs(reqrotx) < .3 then
  179. reqrotx = key == "a" and math.pi*2 or -math.pi*2
  180. end
  181. ktime[key] = tick()
  182. end))
  183.  
  184. ku = plr:GetMouse().KeyUp:connect(function(key)
  185. keysdown[key] = false
  186. if key == " " then
  187. descendtimer = tick()
  188. end
  189. end)
  190. function mid(a,b,c)
  191. return math.max(a,math.min(b,c or -a))
  192. end
  193. function bn(a)
  194. return a and 1 or 0
  195. end
  196. function gm(tar)
  197. local m = 0
  198. for i,v in pairs(tar:GetChildren()) do
  199. if v:IsA("BasePart") then
  200. m = m + v:GetMass()
  201. end
  202. m = m + gm(v)
  203. end
  204. return m
  205. end
  206. reqrotx = 0
  207. local grav = 196.2
  208. local con
  209. con = game:GetService("RunService").Stepped:connect(oc(function()
  210. local obvel = tor.CFrame:vectorToObjectSpace(tor.Velocity)
  211. local sspd, uspd,fspd = obvel.X,obvel.Y,obvel.Z
  212. if flying then
  213. local lfldir = fldir
  214. fldir = cam.CoordinateFrame:vectorToWorldSpace(Vector3.new(bn(keysdown.d)-bn(keysdown.a),0,bn(keysdown.s)-bn(keysdown.w))).unit
  215. local lmoving = moving
  216. moving = fldir.magnitude > .1
  217. if lmoving and not moving then
  218. idledir = lfldir*Vector3.new(1,0,1)
  219. descendtimer = tick()
  220. end
  221. local dbomb = fldir.Y < -.6 or (moving and keysdown["1"])
  222. if moving and keysdown["0"] and lmoving then
  223. fldir = (Vector3.new(lfldir.X,math.min(fldir.Y,lfldir.Y+.01)-.1,lfldir.Z)+(fldir*Vector3.new(1,0,1))*.05).unit
  224. end
  225. local down = tor.CFrame:vectorToWorldSpace(Vector3.new(0,-1,0))
  226. local descending = (not moving and keysdown["q"] and not keysdown[" "])
  227. cf = ccomplerp(cf,CFrame.new(tor.Position,tor.Position+(not moving and idledir or fldir)),keysdown["0"] and .02 or .07)
  228. local gdown = not dbomb and cf.lookVector.Y < -.2 and tor.Velocity.unit.Y < .05
  229. hum.PlatformStand = true
  230. bg.maxTorque = Vector3.new(1,1,1)*9e5
  231. local rotvel = CFrame.new(Vector3.new(),tor.Velocity):toObjectSpace(CFrame.new(Vector3.new(),fldir)).lookVector
  232. 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)
  233. reqrotx = reqrotx - reqrotx/10
  234. bv.maxForce = Vector3.new(1,1,1)*9e4*.5
  235. local anioff =(bn(keysdown[" "])-bn(keysdown["q"]))/2
  236. local ani = tickwave(1.5-anioff,1)
  237. 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)
  238. vel = moving and cf.lookVector*flspd or Vector3.new()
  239. 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))
  240. local hit,ray = workspace:FindPartOnRayWithIgnoreList(Ray.new(tor.Position,Vector3.new(0,-3.5+math.min(0,bv.velocity.y)/30,0)),{char})
  241. if hit and down.Y < -.85 and tick()-flystart > 1 then
  242. flying = false
  243. hum.PlatformStand = false
  244. tor.Velocity = Vector3.new()
  245. end
  246. else
  247. bg.maxTorque = Vector3.new()
  248. bv.maxForce = Vector3.new()
  249. local x,y,z = fspd/160,uspd/700,sspd/900
  250. if keypressed[" "] and not flying and (tick()-jumptime > .05 and (tick()-jumptime < 3 or hum.Jump)) then
  251. vel = Vector3.new(0,50,0)
  252. bv.velocity = vel
  253. idledir = cam.CoordinateFrame.lookVector*Vector3.new(1,0,1)
  254. cf = tor.CFrame * CFrame.Angles(-.01,0,0)
  255. tor.CFrame = cf
  256. bg.cframe = cf
  257. flystart = tick()
  258. flying = true
  259. end
  260. end
  261. keypressed = {}
  262. end))
  263. end
  264. fly()
  265.  
  266. ---
  267.  
  268. Option = false
  269. BTool = "Nothing"
  270. WCollide = "Nothing"
  271. LT2Info = "Nothing"
  272. GreyStart = "Nothing"
  273. MDown = false
  274. afkactive = false
  275. CustomLocationSet = false
  276.  
  277. -- Objects
  278.  
  279. local LT2GUI = Instance.new("ScreenGui")
  280. local MainFrame = Instance.new("Frame")
  281. local MenuLeftFrame = Instance.new("Frame")
  282. local LT2GUI2Frame = Instance.new("Frame")
  283. local BringTree = Instance.new("TextButton")
  284. local Waypoints = Instance.new("TextButton")
  285. local SellFrame = Instance.new("Frame")
  286. local SellWoodPlanks = Instance.new("TextButton")
  287. local SellWood = Instance.new("TextButton")
  288. local SellPlanks = Instance.new("TextButton")
  289. local SellWoodTxt1 = Instance.new("TextLabel")
  290. local SellPlanksTxt1 = Instance.new("TextLabel")
  291. local Greywood = Instance.new("TextButton")
  292. local GreywoodFrame = Instance.new("Frame")
  293. local GreywoodHeader = Instance.new("TextLabel")
  294. local GreywoodInfo = Instance.new("TextLabel")
  295. local GreywoodStart = Instance.new("TextButton")
  296. local StartFrameInfo = Instance.new("TextLabel")
  297. local TPWood = Instance.new("TextButton")
  298. local TPPlanks = Instance.new("TextButton")
  299. local PlankFrame = Instance.new("Frame")
  300. local ProcessedWoodList = Instance.new("ScrollingFrame")
  301. local TpAllPlanks = Instance.new("TextButton")
  302. local TpAllPlanksSpacer = Instance.new("TextLabel")
  303. local TpAllPlanksTxt1 = Instance.new("TextLabel")
  304. local GodMode = Instance.new("TextButton")
  305. local GoldAxe = Instance.new("TextButton")
  306. local GoldAxeInfo = Instance.new("TextLabel")
  307. local GoldAxeFrame = Instance.new("Frame")
  308. local GoldAxeHeader = Instance.new("TextLabel")
  309. local GoldAxeStart = Instance.new("TextButton")
  310. local Duper = Instance.new("TextButton")
  311. local Depart = Instance.new("TextLabel")
  312. local CopyTool = Instance.new("TextButton")
  313. local DeleteTool = Instance.new("TextButton")
  314. local MoveTool = Instance.new("TextButton")
  315. local WaterCollide = Instance.new("TextButton")
  316. local Minimize = Instance.new("TextButton")
  317. local MenuFrame = Instance.new("Frame")
  318. local WaypointFrame = Instance.new("Frame")
  319. local WaypointList = Instance.new("ScrollingFrame")
  320. local BoxedCars = Instance.new("TextButton")
  321. local Cave = Instance.new("TextButton")
  322. local LinksLogic = Instance.new("TextButton")
  323. local Volcano = Instance.new("TextButton")
  324. local BobsShack = Instance.new("TextButton")
  325. local FancyFurnishings = Instance.new("TextButton")
  326. local LandStore = Instance.new("TextButton")
  327. local Dock = Instance.new("TextButton")
  328. local FineArtsShop = Instance.new("TextButton")
  329. local PalmIsland = Instance.new("TextButton")
  330. local Bridge = Instance.new("TextButton")
  331. local Swamp = Instance.new("TextButton")
  332. local SpawnPoint = Instance.new("TextButton")
  333. local WoodRUs = Instance.new("TextButton")
  334. local EndTimes = Instance.new("TextButton")
  335. local ShrineOfSight = Instance.new("TextButton")
  336. local TheDen = Instance.new("TextButton")
  337. local VolcanoWin = Instance.new("TextButton")
  338. local SkiLodge = Instance.new("TextButton")
  339. local StrangeMan = Instance.new("TextButton")
  340. local ShowLocation = Instance.new("TextButton")
  341. local CustomTPPoint = Instance.new("TextButton")
  342. local PlotTp = Instance.new("TextButton")
  343. local BringTreeFrame = Instance.new("Frame")
  344. local BringTreeHeader = Instance.new("TextLabel")
  345. local BringTreeInfo1 = Instance.new("TextButton")
  346. local BringTreeInfo2 = Instance.new("TextLabel")
  347. local ElmTree = Instance.new("TextButton")
  348. local CherryTree = Instance.new("TextButton")
  349. local OakTree = Instance.new("TextButton")
  350. local BirchTree = Instance.new("TextButton")
  351. local CaveCrawlerTree = Instance.new("TextButton")
  352. local GoldTree = Instance.new("TextButton")
  353. local GreenTree = Instance.new("TextButton")
  354. local SpookyTree = Instance.new("TextButton")
  355. local FirTree = Instance.new("TextButton")
  356. local VolcanoTree = Instance.new("TextButton")
  357. local KoaTree = Instance.new("TextButton")
  358. local PalmTree = Instance.new("TextButton")
  359. local EndTimesTree = Instance.new("TextButton")
  360. local WalnutTree = Instance.new("TextButton")
  361. local DupeFrame = Instance.new("Frame")
  362. local Info = Instance.new("TextLabel")
  363. local Dupe = Instance.new("TextButton")
  364. local DupingText1 = Instance.new("TextLabel")
  365. local MoreInfo = Instance.new("TextButton")
  366. local Read = Instance.new("TextLabel")
  367. local PlayerFrame = Instance.new("Frame")
  368. local Player1 = Instance.new("TextButton")
  369. local Player2 = Instance.new("TextButton")
  370. local Player3 = Instance.new("TextButton")
  371. local Player4 = Instance.new("TextButton")
  372. local Player5 = Instance.new("TextButton")
  373. local Player6 = Instance.new("TextButton")
  374. local PlyrSel = Instance.new("TextLabel")
  375. local TpPlayer = Instance.new("TextButton")
  376. local TpBase = Instance.new("TextButton")
  377. local WalkSpeed = Instance.new("TextButton")
  378. local JumpPower = Instance.new("TextButton")
  379. local WalkText = Instance.new("TextBox")
  380. local JumpText = Instance.new("TextBox")
  381. local NoClip = Instance.new("TextButton")
  382. local GuiLabel = Instance.new("TextButton")
  383. local GuiInfo = Instance.new("TextLabel")
  384. local GuiInfoExtras = Instance.new("TextLabel")
  385. local BToolsHeader = Instance.new("TextLabel")
  386. local AntiAFK = Instance.new("TextButton")
  387. local AntiAFKtime = Instance.new("TextLabel")
  388. local PlayerTp = Instance.new("TextButton")
  389. local TPTool = Instance.new("TextButton")
  390. local ReJoinServer = Instance.new("TextButton")
  391. local OpenFrame = Instance.new("Frame")
  392. local Open = Instance.new("TextButton")
  393. local CloseLT2 = Instance.new("TextButton")
  394.  
  395. -- Properties
  396.  
  397. LT2GUI.Name = "LT2GUI"
  398. LT2GUI.Parent = game.CoreGui
  399. local LT2CORE = game.CoreGui["LT2GUI"]
  400.  
  401. OpenFrame.Name = "OpenFrame"
  402. OpenFrame.Parent = LT2GUI
  403. OpenFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  404. OpenFrame.BorderColor3 = Color3.new(0, 1, 0)
  405. OpenFrame.Position = UDim2.new(0.5, -40, 0, -28)
  406. OpenFrame.Size = UDim2.new(0, 80, 0, 20)
  407.  
  408. Open.Name = "Open"
  409. Open.Parent = OpenFrame
  410. Open.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  411. Open.BorderColor3 = Color3.new(0, 1, 0)
  412. Open.Size = UDim2.new(0, 80, 0, 20)
  413. Open.Font = Enum.Font.Fantasy
  414. Open.FontSize = Enum.FontSize.Size18
  415. Open.Text = "Open GUI"
  416. Open.TextColor3 = Color3.new(0, 1, 0)
  417. Open.TextSize = 18
  418. Open.Selectable = true
  419. Open.TextWrapped = true
  420.  
  421. MainFrame.Name = "MainFrame"
  422. MainFrame.Parent = LT2GUI
  423. MainFrame.Active = true
  424. MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  425. MainFrame.BackgroundTransparency = 0.15
  426. MainFrame.BorderColor3 = Color3.new(0, 1, 0)
  427. MainFrame.Draggable = true
  428. MainFrame.Position = UDim2.new(0, 5, 1, -550)
  429. MainFrame.Selectable = true
  430. MainFrame.Size = UDim2.new(0, 335, 0, 370)
  431. MainFrame.Visible = false
  432.  
  433. MenuLeftFrame.Name = "MenuLeftFrame"
  434. MenuLeftFrame.Parent = MainFrame
  435. MenuLeftFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  436. MenuLeftFrame.BackgroundTransparency = 1
  437. MenuLeftFrame.Position = UDim2.new(0, 5, 0, 40)
  438. MenuLeftFrame.Size = UDim2.new(0, 140, 0, 325)
  439.  
  440. MenuFrame.Name = "MenuFrame"
  441. MenuFrame.Parent = MainFrame
  442. MenuFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  443. MenuFrame.BackgroundTransparency = 0
  444. MenuFrame.BorderColor3 = Color3.new(0, 1, 0)
  445. MenuFrame.Position = UDim2.new(0, 155, 0, 40)
  446. MenuFrame.Size = UDim2.new(0, 170, 0, 290)
  447.  
  448. StartFrameInfo.Name = "StartFrameInfo"
  449. StartFrameInfo.Parent = MenuFrame
  450. StartFrameInfo.BackgroundColor3 = Color3.new(0, 0, 0)
  451. StartFrameInfo.BackgroundTransparency = 1
  452. StartFrameInfo.Position = UDim2.new(0, 3, 0, 3)
  453. StartFrameInfo.Size = UDim2.new(0, 164, 0, 284)
  454. StartFrameInfo.Font = Enum.Font.Fantasy
  455. StartFrameInfo.FontSize = Enum.FontSize.Size14
  456. StartFrameInfo.Text = "All current players and new players who join will be automatically blacklisted.\n\nTP Tool adds a backpack item to click teleport you.\n\nTP Wood to You - Chop a tree/s then go to where you want them and click this button to teleport what you chopped to you.\n\nDouble tap Space Bar to Fly.\nFly in to the ground to land.\n\nClick on LT2 at the top for more info and extra options."
  457. StartFrameInfo.TextColor3 = Color3.new(1, 1, 1)
  458. StartFrameInfo.TextWrapped = true
  459. StartFrameInfo.TextSize = 14
  460.  
  461. CloseLT2.Name = "CloseLT2"
  462. CloseLT2.Parent = MainFrame
  463. CloseLT2.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  464. CloseLT2.BorderColor3 = Color3.new(0, 1, 0)
  465. CloseLT2.Position = UDim2.new(0, 10, 0, 10)
  466. CloseLT2.Size = UDim2.new(0, 20, 0, 20)
  467. CloseLT2.Font = Enum.Font.Fantasy
  468. CloseLT2.FontSize = Enum.FontSize.Size18
  469. CloseLT2.Text = "X"
  470. CloseLT2.TextColor3 = Color3.new(1, 1, 1)
  471. CloseLT2.TextScaled = true
  472. CloseLT2.TextWrapped = true
  473. CloseLT2.TextSize = 17
  474.  
  475. Minimize.Name = "Minimize"
  476. Minimize.Parent = MainFrame
  477. Minimize.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  478. Minimize.BorderColor3 = Color3.new(0, 1, 0)
  479. Minimize.Position = UDim2.new(0, 40, 0, 10)
  480. Minimize.Size = UDim2.new(0, 20, 0, 20)
  481. Minimize.Font = Enum.Font.Fantasy
  482. Minimize.FontSize = Enum.FontSize.Size18
  483. Minimize.Text = "-"
  484. Minimize.TextColor3 = Color3.new(1, 1, 1)
  485. Minimize.TextScaled = true
  486. Minimize.TextWrapped = true
  487. Minimize.TextSize = 17
  488.  
  489. GuiLabel.Name = "GuiLabel"
  490. GuiLabel.Parent = MainFrame
  491. GuiLabel.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  492. GuiLabel.BackgroundTransparency = 0
  493. GuiLabel.BorderColor3 = Color3.new(0.2, 0.2, 0.2)
  494. GuiLabel.Position = UDim2.new(0, 78, 0, 6)
  495. GuiLabel.Size = UDim2.new(0, 49, 0, 28)
  496. GuiLabel.Font = Enum.Font.Fantasy
  497. GuiLabel.FontSize = Enum.FontSize.Size14
  498. GuiLabel.Text = "LT2"
  499. GuiLabel.TextColor3 = Color3.new(1, 0, 1)
  500. GuiLabel.TextScaled = true
  501. GuiLabel.TextSize = 14
  502. GuiLabel.TextWrapped = true
  503.  
  504. LT2GUI2Frame.Name = "LT2GUI2Frame"
  505. LT2GUI2Frame.Parent = MainFrame
  506. LT2GUI2Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  507. LT2GUI2Frame.BackgroundTransparency = 0
  508. LT2GUI2Frame.BorderColor3 = Color3.new(0, 1, 0)
  509. LT2GUI2Frame.Position = UDim2.new(0, 10, 0, 40)
  510. LT2GUI2Frame.Size = UDim2.new(0, 315, 0, 320)
  511. LT2GUI2Frame.ZIndex = 8
  512. LT2GUI2Frame.Visible = false
  513. LT2GUI2Frame.Active = false
  514.  
  515. GuiInfo.Name = "GuiInfo"
  516. GuiInfo.Parent = LT2GUI2Frame
  517. GuiInfo.BackgroundColor3 = Color3.new(0, 0, 0)
  518. GuiInfo.BorderColor3 = Color3.new(0, 1, 0)
  519. GuiInfo.Position = UDim2.new(0, 0, 0, 5)
  520. GuiInfo.Size = UDim2.new(0, 315, 0, 200)
  521. GuiInfo.BackgroundTransparency = 1
  522. GuiInfo.Font = Enum.Font.Fantasy
  523. GuiInfo.FontSize = Enum.FontSize.Size14
  524. GuiInfo.Text = "CREDITS - I took ideas from different scripts and added a lot of new stuff so if you see anything that you made please let me know and I will add thanks to this screen.\n\nHope you enjoy using this.\n\nIf you want to get in touch my discord is LuckyMMB#8646"
  525. GuiInfo.TextColor3 = Color3.new(1, 1, 1)
  526. GuiInfo.TextSize = 14
  527. GuiInfo.ZIndex = 8
  528. GuiInfo.TextWrapped = true
  529. GuiInfo.TextYAlignment = Enum.TextYAlignment.Top
  530.  
  531. GuiInfoExtras.Name = "GuiInfoExtras"
  532. GuiInfoExtras.Parent = LT2GUI2Frame
  533. GuiInfoExtras.BackgroundColor3 = Color3.new(0, 0, 0)
  534. GuiInfoExtras.BorderColor3 = Color3.new(0, 0, 0)
  535. GuiInfoExtras.Position = UDim2.new(0, 125, 0, 180)
  536. GuiInfoExtras.Size = UDim2.new(0, 65, 0, 20)
  537. GuiInfoExtras.BackgroundTransparency = 0
  538. GuiInfoExtras.Font = Enum.Font.Fantasy
  539. GuiInfoExtras.FontSize = Enum.FontSize.Size18
  540. GuiInfoExtras.TextColor3 = Color3.new(1, 1, 1)
  541. GuiInfoExtras.Text = "EXTRAS"
  542. GuiInfoExtras.ZIndex = 8
  543. GuiInfoExtras.TextSize = 20
  544.  
  545. ReJoinServer.Name = "ReJoinServer"
  546. ReJoinServer.Parent = LT2GUI2Frame
  547. ReJoinServer.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  548. ReJoinServer.BorderColor3 = Color3.new(0, 1, 0)
  549. ReJoinServer.Position = UDim2.new(0, 80, 0, 210)
  550. ReJoinServer.Size = UDim2.new(0, 155, 0, 20)
  551. ReJoinServer.BackgroundTransparency = 0
  552. ReJoinServer.Font = Enum.Font.Fantasy
  553. ReJoinServer.FontSize = Enum.FontSize.Size18
  554. ReJoinServer.Text = "ReJoin Server"
  555. ReJoinServer.TextColor3 = Color3.new(1, 1, 1)
  556. ReJoinServer.ZIndex = 8
  557. ReJoinServer.TextSize = 17
  558.  
  559. AntiAFK.Name = "AntiAFK"
  560. AntiAFK.Parent = LT2GUI2Frame
  561. AntiAFK.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  562. AntiAFK.BorderColor3 = Color3.new(0, 1, 0)
  563. AntiAFK.Position = UDim2.new(0, 80, 0, 240)
  564. AntiAFK.Size = UDim2.new(0, 155, 0, 20)
  565. AntiAFK.BackgroundTransparency = 0
  566. AntiAFK.Font = Enum.Font.Fantasy
  567. AntiAFK.FontSize = Enum.FontSize.Size18
  568. AntiAFK.Text = "Start Anti-AFK Mode"
  569. AntiAFK.TextColor3 = Color3.new(1, 1, 1)
  570. AntiAFK.ZIndex = 8
  571. AntiAFK.TextSize = 17
  572.  
  573. AntiAFKtime.Name = "AntiAFKtime"
  574. AntiAFKtime.Parent = LT2GUI2Frame
  575. AntiAFKtime.BackgroundColor3 = Color3.new(0, 0, 0)
  576. AntiAFKtime.BorderColor3 = Color3.new(0, 0, 0)
  577. AntiAFKtime.Position = UDim2.new(0, 80, 0, 263)
  578. AntiAFKtime.Size = UDim2.new(0, 155, 0, 20)
  579. AntiAFKtime.BackgroundTransparency = 0
  580. AntiAFKtime.Font = Enum.Font.Fantasy
  581. AntiAFKtime.FontSize = Enum.FontSize.Size18
  582. AntiAFKtime.Text = "AFK for: 0 Seconds"
  583. AntiAFKtime.TextColor3 = Color3.new(1, 1, 1)
  584. AntiAFKtime.ZIndex = 8
  585. AntiAFKtime.TextSize = 17
  586.  
  587. BToolsHeader.Name = "BToolsHeader"
  588. BToolsHeader.Parent = LT2GUI2Frame
  589. BToolsHeader.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  590. BToolsHeader.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  591. BToolsHeader.Position = UDim2.new(0, 10, 0, 290)
  592. BToolsHeader.Size = UDim2.new(0, 70, 0, 20)
  593. BToolsHeader.BackgroundTransparency = 0
  594. BToolsHeader.Font = Enum.Font.Fantasy
  595. BToolsHeader.FontSize = Enum.FontSize.Size18
  596. BToolsHeader.Text = "BTools"
  597. BToolsHeader.TextColor3 = Color3.new(1, 1, 1)
  598. BToolsHeader.ZIndex = 8
  599. BToolsHeader.TextSize = 17
  600.  
  601. CopyTool.Name = "CopyTool"
  602. CopyTool.Parent = LT2GUI2Frame
  603. CopyTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  604. CopyTool.TextColor3 = Color3.new(1, 1, 1)
  605. CopyTool.BorderColor3 = Color3.new(0, 1, 0)
  606. CopyTool.Position = UDim2.new(0, 97, 0, 290)
  607. CopyTool.Size = UDim2.new(0, 64, 0, 20)
  608. CopyTool.Font = Enum.Font.Fantasy
  609. CopyTool.FontSize = Enum.FontSize.Size18
  610. CopyTool.BackgroundTransparency = 0
  611. CopyTool.Text = "Copy"
  612. CopyTool.ZIndex = 8
  613. CopyTool.TextSize = 17
  614.  
  615. DeleteTool.Name = "DeleteTool"
  616. DeleteTool.Parent = LT2GUI2Frame
  617. DeleteTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  618. DeleteTool.TextColor3 = Color3.new(1, 1, 1)
  619. DeleteTool.BorderColor3 = Color3.new(0, 1, 0)
  620. DeleteTool.Position = UDim2.new(0, 169, 0, 290)
  621. DeleteTool.Size = UDim2.new(0, 64, 0, 20)
  622. DeleteTool.Font = Enum.Font.Fantasy
  623. DeleteTool.FontSize = Enum.FontSize.Size18
  624. DeleteTool.BackgroundTransparency = 0
  625. DeleteTool.Text = "Delete"
  626. DeleteTool.ZIndex = 8
  627. DeleteTool.TextSize = 17
  628.  
  629. MoveTool.Name = "MoveTool"
  630. MoveTool.Parent = LT2GUI2Frame
  631. MoveTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  632. MoveTool.TextColor3 = Color3.new(1, 1, 1)
  633. MoveTool.BorderColor3 = Color3.new(0, 1, 0)
  634. MoveTool.Position = UDim2.new(0, 241, 0, 290)
  635. MoveTool.Size = UDim2.new(0, 64, 0, 20)
  636. MoveTool.Font = Enum.Font.Fantasy
  637. MoveTool.FontSize = Enum.FontSize.Size18
  638. MoveTool.BackgroundTransparency = 0
  639. MoveTool.Text = "Move"
  640. MoveTool.ZIndex = 8
  641. MoveTool.TextSize = 17
  642.  
  643. TPTool.Name = "TPTool"
  644. TPTool.Parent = MainFrame
  645. TPTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  646. TPTool.BorderColor3 = Color3.new(0, 1, 0)
  647. TPTool.Position = UDim2.new(0, 145, 0, 10)
  648. TPTool.Size = UDim2.new(0, 60, 0, 20)
  649. TPTool.Font = Enum.Font.Fantasy
  650. TPTool.FontSize = Enum.FontSize.Size18
  651. TPTool.Text = "Tp Tool"
  652. TPTool.TextColor3 = Color3.new(1, 1, 1)
  653. TPTool.TextSize = 17
  654.  
  655. NoClip.Name = "NoClip"
  656. NoClip.Parent = MainFrame
  657. NoClip.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  658. NoClip.BorderColor3 = Color3.new(0, 1, 0)
  659. NoClip.Position = UDim2.new(0, 215, 0, 10)
  660. NoClip.Size = UDim2.new(0, 110, 0, 20)
  661. NoClip.Font = Enum.Font.Fantasy
  662. NoClip.FontSize = Enum.FontSize.Size18
  663. NoClip.Text = "Enable NoClip"
  664. NoClip.TextColor3 = Color3.new(1, 1, 1)
  665. NoClip.TextSize = 17
  666.  
  667. Depart.Name = "Depart"
  668. Depart.Parent = MenuLeftFrame
  669. Depart.BackgroundColor3 = Color3.new(0, 0, 0)
  670. Depart.BackgroundTransparency = 1
  671. Depart.Position = UDim2.new(0, 5, 0, 0)
  672. Depart.Size = UDim2.new(0, 135, 0, 20)
  673. Depart.Font = Enum.Font.Fantasy
  674. Depart.FontSize = Enum.FontSize.Size18
  675. Depart.Text = "Ferry Departs: 0"
  676. Depart.TextColor3 = Color3.new(1, 1, 1)
  677. Depart.TextSize = 17
  678.  
  679. Waypoints.Name = "Waypoints"
  680. Waypoints.Parent = MenuLeftFrame
  681. Waypoints.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  682. Waypoints.TextColor3 = Color3.new(1, 1, 1)
  683. Waypoints.BorderColor3 = Color3.new(0, 1, 0)
  684. Waypoints.Position = UDim2.new(0, 5, 0, 30)
  685. Waypoints.Size = UDim2.new(0, 135, 0, 20)
  686. Waypoints.Font = Enum.Font.Fantasy
  687. Waypoints.FontSize = Enum.FontSize.Size18
  688. Waypoints.Text = "Waypoints"
  689. Waypoints.TextSize = 17
  690.  
  691. TPWood.Name = "TPWood"
  692. TPWood.Parent = MenuLeftFrame
  693. TPWood.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  694. TPWood.BorderColor3 = Color3.new(0, 1, 0)
  695. TPWood.Position = UDim2.new(0, 5, 0, 60)
  696. TPWood.Size = UDim2.new(0, 135, 0, 20)
  697. TPWood.Font = Enum.Font.Fantasy
  698. TPWood.FontSize = Enum.FontSize.Size18
  699. TPWood.Text = "TP Wood to You"
  700. TPWood.TextColor3 = Color3.new(1, 1, 1)
  701. TPWood.TextSize = 17
  702.  
  703. TPPlanks.Name = "TPPlanks"
  704. TPPlanks.Parent = MenuLeftFrame
  705. TPPlanks.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  706. TPPlanks.BorderColor3 = Color3.new(0, 1, 0)
  707. TPPlanks.Position = UDim2.new(0, 5, 0, 90)
  708. TPPlanks.Size = UDim2.new(0, 135, 0, 20)
  709. TPPlanks.Font = Enum.Font.Fantasy
  710. TPPlanks.FontSize = Enum.FontSize.Size18
  711. TPPlanks.Text = "TP Planks to You"
  712. TPPlanks.TextColor3 = Color3.new(1, 1, 1)
  713. TPPlanks.TextSize = 17
  714.  
  715. PlankFrame.Name = "PlankFrame"
  716. PlankFrame.Parent = MenuFrame
  717. PlankFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  718. PlankFrame.BackgroundTransparency = 0
  719. PlankFrame.BorderColor3 = Color3.new(0, 1, 0)
  720. PlankFrame.Position = UDim2.new(0, 0, 0, 34)
  721. PlankFrame.Size = UDim2.new(0, 170, 0, 256)
  722. PlankFrame.Visible = false
  723.  
  724. ProcessedWoodList.Name = "ProcessedWoodList"
  725. ProcessedWoodList.Parent = PlankFrame
  726. ProcessedWoodList.BackgroundColor3 = Color3.new(0, 0, 0)
  727. ProcessedWoodList.BackgroundTransparency = 1
  728. ProcessedWoodList.BorderColor3 = Color3.new(0, 1, 0)
  729. ProcessedWoodList.Position = UDim2.new(0, 0, 0, 1)
  730. ProcessedWoodList.Size = UDim2.new(0, 170, 0, 256)
  731.  
  732. TpAllPlanks.Name = "TpAllPlanks"
  733. TpAllPlanks.Parent = PlankFrame
  734. TpAllPlanks.BackgroundColor3 = Color3.new(0.15, 0.15, 0.15)
  735. TpAllPlanks.BorderColor3 = Color3.new(0, 1, 0)
  736. TpAllPlanks.Position = UDim2.new(0, 0, 0, -34)
  737. TpAllPlanks.Size = UDim2.new(0, 170, 0, 30)
  738. TpAllPlanks.Font = Enum.Font.Fantasy
  739. TpAllPlanks.FontSize = Enum.FontSize.Size18
  740. TpAllPlanks.Text = "TP ALL PLANKS"
  741. TpAllPlanks.TextColor3 = Color3.new(1, 1, 1)
  742. TpAllPlanks.TextSize = 18
  743.  
  744. TpAllPlanksSpacer.Name = "TpAllPlanksSpacer"
  745. TpAllPlanksSpacer.Parent = PlankFrame
  746. TpAllPlanksSpacer.BackgroundTransparency = 0
  747. TpAllPlanksSpacer.BackgroundColor3 = Color3.new(0, 0, 0)
  748. TpAllPlanksSpacer.BorderColor3 = Color3.new(0, 1, 0)
  749. TpAllPlanksSpacer.Position = UDim2.new(0, 0, 0, -4)
  750. TpAllPlanksSpacer.Size = UDim2.new(0, 170, 0, 4)
  751. TpAllPlanksSpacer.Font = Enum.Font.Fantasy
  752. TpAllPlanksSpacer.Text = ""
  753. TpAllPlanksSpacer.TextColor3 = Color3.new(1, 1, 1)
  754. TpAllPlanksSpacer.TextSize = 17
  755.  
  756. SellWoodPlanks.Name = "SellWoodPlanks"
  757. SellWoodPlanks.Parent = MenuLeftFrame
  758. SellWoodPlanks.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  759. SellWoodPlanks.BorderColor3 = Color3.new(0, 1, 0)
  760. SellWoodPlanks.Position = UDim2.new(0, 5, 0, 120)
  761. SellWoodPlanks.Size = UDim2.new(0, 135, 0, 20)
  762. SellWoodPlanks.Font = Enum.Font.Fantasy
  763. SellWoodPlanks.FontSize = Enum.FontSize.Size18
  764. SellWoodPlanks.Text = "Sell Wood/Planks"
  765. SellWoodPlanks.TextColor3 = Color3.new(1, 1, 1)
  766. SellWoodPlanks.TextSize = 17
  767.  
  768. SellFrame.Name = "SellFrame"
  769. SellFrame.Parent = MenuFrame
  770. SellFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  771. SellFrame.BackgroundTransparency = 0
  772. SellFrame.BorderColor3 = Color3.new(0, 1, 0)
  773. SellFrame.Size = UDim2.new(0, 170, 0, 290)
  774. SellFrame.Visible = false
  775.  
  776. SellWood.Name = "SellWood"
  777. SellWood.Parent = SellFrame
  778. SellWood.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  779. SellWood.BorderColor3 = Color3.new(0, 1, 0)
  780. SellWood.Position = UDim2.new(0, 30, 0, 10)
  781. SellWood.Size = UDim2.new(0, 110, 0, 20)
  782. SellWood.Font = Enum.Font.Fantasy
  783. SellWood.FontSize = Enum.FontSize.Size18
  784. SellWood.Text = "Sell Cut Wood"
  785. SellWood.TextColor3 = Color3.new(1, 1, 1)
  786. SellWood.TextSize = 17
  787.  
  788. SellWoodTxt1.Name = "SellWoodTxt1"
  789. SellWoodTxt1.Parent = SellFrame
  790. SellWoodTxt1.BackgroundColor3 = Color3.new(0, 0, 0)
  791. SellWoodTxt1.BackgroundTransparency = 1
  792. SellWoodTxt1.BorderColor3 = Color3.new(0, 0, 0)
  793. SellWoodTxt1.Position = UDim2.new(0, 5, 0, 35)
  794. SellWoodTxt1.Size = UDim2.new(0, 160, 0, 100)
  795. SellWoodTxt1.Font = Enum.Font.Fantasy
  796. SellWoodTxt1.FontSize = Enum.FontSize.Size18
  797. SellWoodTxt1.Text = "Click this after you finish chopping trees to send the wood to the Wood Drop Off and sell it automatically. If it gets stuck click Sell again.\n\n"
  798. SellWoodTxt1.TextColor3 = Color3.new(0, 1, 0)
  799. SellWoodTxt1.TextSize = 14
  800. SellWoodTxt1.TextWrapped = true
  801. SellWoodTxt1.TextYAlignment = Enum.TextYAlignment.Top
  802.  
  803. SellPlanks.Name = "SellPlanks"
  804. SellPlanks.Parent = SellFrame
  805. SellPlanks.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  806. SellPlanks.BorderColor3 = Color3.new(0, 1, 0)
  807. SellPlanks.Position = UDim2.new(0, 6, 0, 135)
  808. SellPlanks.Size = UDim2.new(0, 158, 0, 20)
  809. SellPlanks.Font = Enum.Font.Fantasy
  810. SellPlanks.FontSize = Enum.FontSize.Size18
  811. SellPlanks.Text = "Sell Processed Planks"
  812. SellPlanks.TextColor3 = Color3.new(1, 1, 1)
  813. SellPlanks.TextSize = 17
  814.  
  815. SellPlanksTxt1.Name = "SellPlanksTxt1"
  816. SellPlanksTxt1.Parent = SellFrame
  817. SellPlanksTxt1.BackgroundColor3 = Color3.new(0, 0, 0)
  818. SellPlanksTxt1.BackgroundTransparency = 1
  819. SellPlanksTxt1.BorderColor3 = Color3.new(0, 0, 0)
  820. SellPlanksTxt1.Position = UDim2.new(0, 5, 0, 160)
  821. SellPlanksTxt1.Size = UDim2.new(0, 160, 0, 120)
  822. SellPlanksTxt1.Font = Enum.Font.Fantasy
  823. SellPlanksTxt1.FontSize = Enum.FontSize.Size18
  824. SellPlanksTxt1.Text = "Click this to send ALL processed planks on your plot to the Wood Drop Off and sell it automatically. If it gets stuck click Sell again. WARNING: Do Not click this unless you want ALL your planks to be sold."
  825. SellPlanksTxt1.TextColor3 = Color3.new(0, 1, 0)
  826. SellPlanksTxt1.TextSize = 14
  827. SellPlanksTxt1.TextWrapped = true
  828. SellPlanksTxt1.TextYAlignment = Enum.TextYAlignment.Top
  829.  
  830. BringTree.Name = "BringTree"
  831. BringTree.Parent = MenuLeftFrame
  832. BringTree.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  833. BringTree.BorderColor3 = Color3.new(0, 1, 0)
  834. BringTree.Position = UDim2.new(0, 5, 0, 150)
  835. BringTree.Size = UDim2.new(0, 135, 0, 20)
  836. BringTree.Font = Enum.Font.Fantasy
  837. BringTree.FontSize = Enum.FontSize.Size18
  838. BringTree.Text = "Bring A Tree"
  839. BringTree.TextColor3 = Color3.new(1, 1, 1)
  840. BringTree.TextSize = 17
  841.  
  842. PlayerTp.Name = "PlayerTp"
  843. PlayerTp.Parent = MenuLeftFrame
  844. PlayerTp.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  845. PlayerTp.TextColor3 = Color3.new(1, 1, 1)
  846. PlayerTp.BorderColor3 = Color3.new(0, 1, 0)
  847. PlayerTp.Position = UDim2.new(0, 5, 0, 180)
  848. PlayerTp.Size = UDim2.new(0, 135, 0, 20)
  849. PlayerTp.Font = Enum.Font.Fantasy
  850. PlayerTp.FontSize = Enum.FontSize.Size18
  851. PlayerTp.Text = "Tp to Players"
  852. PlayerTp.TextSize = 17
  853.  
  854. Duper.Name = "Duper"
  855. Duper.Parent = MenuLeftFrame
  856. Duper.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  857. Duper.TextColor3 = Color3.new(1, 1, 1)
  858. Duper.BorderColor3 = Color3.new(0, 1, 0)
  859. Duper.Position = UDim2.new(0, 5, 0, 210)
  860. Duper.Size = UDim2.new(0, 135, 0, 20)
  861. Duper.Font = Enum.Font.Fantasy
  862. Duper.FontSize = Enum.FontSize.Size18
  863. Duper.Text = "Item Duping"
  864. Duper.TextSize = 17
  865.  
  866. Greywood.Name = "Greywood"
  867. Greywood.Parent = MenuLeftFrame
  868. Greywood.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  869. Greywood.TextColor3 = Color3.new(1, 1, 1)
  870. Greywood.BorderColor3 = Color3.new(0, 1, 0)
  871. Greywood.Position = UDim2.new(0, 5, 0, 240)
  872. Greywood.Size = UDim2.new(0, 135, 0, 20)
  873. Greywood.Font = Enum.Font.Fantasy
  874. Greywood.FontSize = Enum.FontSize.Size18
  875. Greywood.Text = "Grey Structures"
  876. Greywood.TextSize = 17
  877.  
  878. GreywoodFrame.Name = "GreywoodFrame"
  879. GreywoodFrame.Parent = MenuFrame
  880. GreywoodFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  881. GreywoodFrame.BackgroundTransparency = 0
  882. GreywoodFrame.BorderColor3 = Color3.new(0, 1, 0)
  883. GreywoodFrame.Size = UDim2.new(0, 170, 0, 290)
  884. GreywoodFrame.Visible = false
  885.  
  886. GreywoodHeader.Name = "GreywoodHeader"
  887. GreywoodHeader.Parent = GreywoodFrame
  888. GreywoodHeader.BackgroundColor3 = Color3.new(1, 1, 1)
  889. GreywoodHeader.BackgroundTransparency = 0.15
  890. GreywoodHeader.BorderColor3 = Color3.new(0, 1, 0)
  891. GreywoodHeader.Size = UDim2.new(0, 170, 0, 35)
  892. GreywoodHeader.Font = Enum.Font.Fantasy
  893. GreywoodHeader.FontSize = Enum.FontSize.Size18
  894. GreywoodHeader.Text = "TURN EMPTY BLUEPRINT TO GREYWOOD"
  895. GreywoodHeader.TextColor3 = Color3.new(0, 0, 0)
  896. GreywoodHeader.TextScaled = true
  897. GreywoodHeader.TextSize = 17
  898. GreywoodHeader.TextWrapped = true
  899.  
  900. GreywoodInfo.Name = "GreywoodInfo"
  901. GreywoodInfo.Parent = GreywoodFrame
  902. GreywoodInfo.BackgroundColor3 = Color3.new(0, 0, 0)
  903. GreywoodInfo.BackgroundTransparency = 1
  904. GreywoodInfo.Position = UDim2.new(0, 5, 0, 40)
  905. GreywoodInfo.Size = UDim2.new(0, 160, 0, 250)
  906. GreywoodInfo.Font = Enum.Font.Fantasy
  907. GreywoodInfo.FontSize = Enum.FontSize.Size14
  908. GreywoodInfo.Text = "1. Place Blueprints down.\n2. Click on 'Start' below.\n3. Press 'e' on blueprint.\n4. Click on Move.\n5. Press 'b' to cancel the move.\n6. It should now be filled with GreyWood\n\nNOTE: Some blueprints will not fill with Grey. Smooth Wall blueprints seem to work best but you can try whatever you want."
  909. GreywoodInfo.TextColor3 = Color3.new(0, 1, 0)
  910. GreywoodInfo.TextSize = 14
  911. GreywoodInfo.TextYAlignment = Enum.TextYAlignment.Top
  912. GreywoodInfo.TextWrapped = true
  913.  
  914. GreywoodStart.Name = "GreywoodStart"
  915. GreywoodStart.Parent = GreywoodFrame
  916. GreywoodStart.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  917. GreywoodStart.BorderColor3 = Color3.new(0, 1, 0)
  918. GreywoodStart.Position = UDim2.new(0, 25, 0, 255)
  919. GreywoodStart.Size = UDim2.new(0, 120, 0, 25)
  920. GreywoodStart.Font = Enum.Font.Fantasy
  921. GreywoodStart.FontSize = Enum.FontSize.Size18
  922. GreywoodStart.Text = "Start"
  923. GreywoodStart.TextColor3 = Color3.new(1, 1, 1)
  924. GreywoodStart.TextSize = 17
  925.  
  926. WaterCollide.Name = "WaterCollide"
  927. WaterCollide.Parent = MenuLeftFrame
  928. WaterCollide.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  929. WaterCollide.BorderColor3 = Color3.new(0, 1, 0)
  930. WaterCollide.Position = UDim2.new(0, 5, 0, 270)
  931. WaterCollide.Size = UDim2.new(0, 135, 0, 20)
  932. WaterCollide.Font = Enum.Font.Fantasy
  933. WaterCollide.FontSize = Enum.FontSize.Size18
  934. WaterCollide.Text = "Walk on Water"
  935. WaterCollide.TextColor3 = Color3.new(1, 1, 1)
  936. WaterCollide.TextSize = 17
  937.  
  938. GodMode.Name = "GodMode"
  939. GodMode.Parent = MenuLeftFrame
  940. GodMode.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  941. GodMode.TextColor3 = Color3.new(1, 1, 1)
  942. GodMode.BorderColor3 = Color3.new(0, 1, 0)
  943. GodMode.Position = UDim2.new(0, 5, 0, 300)
  944. GodMode.Size = UDim2.new(0, 55, 0, 20)
  945. GodMode.Font = Enum.Font.Fantasy
  946. GodMode.FontSize = Enum.FontSize.Size18
  947. GodMode.Text = "God"
  948. GodMode.TextScaled = true
  949. GodMode.TextSize = 17
  950.  
  951. GoldAxe.Name = "GoldAxe"
  952. GoldAxe.Parent = MenuLeftFrame
  953. GoldAxe.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  954. GoldAxe.TextColor3 = Color3.new(1, 1, 1)
  955. GoldAxe.BorderColor3 = Color3.new(0, 1, 0)
  956. GoldAxe.Position = UDim2.new(0, 70, 0, 300)
  957. GoldAxe.Size = UDim2.new(0, 70, 0, 20)
  958. GoldAxe.Font = Enum.Font.Fantasy
  959. GoldAxe.FontSize = Enum.FontSize.Size18
  960. GoldAxe.Text = "Gold Axe"
  961. GoldAxe.TextWrapped = true
  962. GoldAxe.TextSize = 17
  963.  
  964. GoldAxeFrame.Name = "GoldAxeFrame"
  965. GoldAxeFrame.Parent = MenuFrame
  966. GoldAxeFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  967. GoldAxeFrame.BackgroundTransparency = 0
  968. GoldAxeFrame.BorderColor3 = Color3.new(0, 1, 0)
  969. GoldAxeFrame.Size = UDim2.new(0, 170, 0, 290)
  970. GoldAxeFrame.Visible = false
  971.  
  972. GoldAxeHeader.Name = "GoldAxeHeader"
  973. GoldAxeHeader.Parent = GoldAxeFrame
  974. GoldAxeHeader.BackgroundColor3 = Color3.new(1, 1, 1)
  975. GoldAxeHeader.BackgroundTransparency = 0.15
  976. GoldAxeHeader.BorderColor3 = Color3.new(0, 1, 0)
  977. GoldAxeHeader.Size = UDim2.new(0, 170, 0, 35)
  978. GoldAxeHeader.Font = Enum.Font.Fantasy
  979. GoldAxeHeader.FontSize = Enum.FontSize.Size18
  980. GoldAxeHeader.Text = "CHOP WOOD WITH GOLDEN AXE POWER"
  981. GoldAxeHeader.TextColor3 = Color3.new(0, 0, 0)
  982. GoldAxeHeader.TextScaled = true
  983. GoldAxeHeader.TextSize = 17
  984. GoldAxeHeader.TextWrapped = true
  985.  
  986. GoldAxeInfo.Name = "GoldAxeInfo"
  987. GoldAxeInfo.Parent = GoldAxeFrame
  988. GoldAxeInfo.BackgroundColor3 = Color3.new(0, 0, 0)
  989. GoldAxeInfo.BackgroundTransparency = 1
  990. GoldAxeInfo.Position = UDim2.new(0, 5, 0, 40)
  991. GoldAxeInfo.Size = UDim2.new(0, 160, 0, 210)
  992. GoldAxeInfo.Font = Enum.Font.Fantasy
  993. GoldAxeInfo.FontSize = Enum.FontSize.Size14
  994. GoldAxeInfo.Text = "1. Buy a Basic Hatchet if you don't have one\n\n2. Click the start button to enable Golden Axe mode\n\n3. Take out the Basic Hatchet and hold down the left mouse button on a tree to cut through it.\n\nONLY use a Basic Hatchet with Golden Axe mode enabled or you will drop the axe and die."
  995. GoldAxeInfo.TextColor3 = Color3.new(0, 1, 0)
  996. GoldAxeInfo.TextSize = 14
  997. GoldAxeInfo.TextYAlignment = Enum.TextYAlignment.Top
  998. GoldAxeInfo.TextWrapped = true
  999.  
  1000. GoldAxeStart.Name = "GoldAxeStart"
  1001. GoldAxeStart.Parent = GoldAxeFrame
  1002. GoldAxeStart.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1003. GoldAxeStart.BorderColor3 = Color3.new(0, 1, 0)
  1004. GoldAxeStart.Position = UDim2.new(0, 25, 0, 255)
  1005. GoldAxeStart.Size = UDim2.new(0, 120, 0, 25)
  1006. GoldAxeStart.Font = Enum.Font.Fantasy
  1007. GoldAxeStart.FontSize = Enum.FontSize.Size18
  1008. GoldAxeStart.Text = "Start"
  1009. GoldAxeStart.TextColor3 = Color3.new(1, 1, 1)
  1010. GoldAxeStart.TextSize = 17
  1011.  
  1012. WaypointFrame.Name = "WaypointFrame"
  1013. WaypointFrame.Parent = MenuFrame
  1014. WaypointFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  1015. WaypointFrame.BackgroundTransparency = 0
  1016. WaypointFrame.BorderColor3 = Color3.new(0, 1, 0)
  1017. WaypointFrame.Size = UDim2.new(0, 170, 0, 290)
  1018. WaypointFrame.Visible = false
  1019.  
  1020. WaypointList.Name = "WaypointList"
  1021. WaypointList.Parent = WaypointFrame
  1022. WaypointList.BackgroundColor3 = Color3.new(0, 0, 0)
  1023. WaypointList.BackgroundTransparency = 0
  1024. WaypointList.BorderColor3 = Color3.new(0, 1, 0)
  1025. WaypointList.Size = UDim2.new(0, 170, 0, 290)
  1026. WaypointList.CanvasSize = UDim2.new(0, 0, 2.15, 0)
  1027.  
  1028. ShowLocation.Name = "ShowLocation"
  1029. ShowLocation.Parent = WaypointList
  1030. ShowLocation.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1031. ShowLocation.TextColor3 = Color3.new(1, 1, 1)
  1032. ShowLocation.BorderColor3 = Color3.new(0, 1, 0)
  1033. ShowLocation.Position = UDim2.new(0, 5, 0, 5)
  1034. ShowLocation.Size = UDim2.new(0, 147, 0, 40)
  1035. ShowLocation.Font = Enum.Font.Fantasy
  1036. ShowLocation.FontSize = Enum.FontSize.Size14
  1037. ShowLocation.Text = "Show Current Coords\nSet Custom Location"
  1038. ShowLocation.TextWrapped = true
  1039. ShowLocation.TextSize = 15
  1040.  
  1041. CustomTPPoint.Name = "CustomTPPoint"
  1042. CustomTPPoint.Parent = WaypointList
  1043. CustomTPPoint.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1044. CustomTPPoint.TextColor3 = Color3.new(1, 1, 1)
  1045. CustomTPPoint.BorderColor3 = Color3.new(0, 1, 0)
  1046. CustomTPPoint.Position = UDim2.new(0, 5, 0, 50)
  1047. CustomTPPoint.Size = UDim2.new(0, 147, 0, 20)
  1048. CustomTPPoint.Font = Enum.Font.Fantasy
  1049. CustomTPPoint.FontSize = Enum.FontSize.Size14
  1050. CustomTPPoint.Text = "TP to Custom Location"
  1051. CustomTPPoint.TextWrapped = true
  1052. CustomTPPoint.TextSize = 15
  1053.  
  1054. PlotTp.Name = "PlotTp"
  1055. PlotTp.Parent = WaypointList
  1056. PlotTp.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1057. PlotTp.TextColor3 = Color3.new(1, 1, 1)
  1058. PlotTp.BorderColor3 = Color3.new(0, 1, 0)
  1059. PlotTp.Position = UDim2.new(0, 5, 0, 75)
  1060. PlotTp.Size = UDim2.new(0, 147, 0, 20)
  1061. PlotTp.Font = Enum.Font.Fantasy
  1062. PlotTp.FontSize = Enum.FontSize.Size14
  1063. PlotTp.Text = "Tp to Your Plot"
  1064. PlotTp.TextSize = 16
  1065.  
  1066. SpawnPoint.Name = "SpawnPoint"
  1067. SpawnPoint.Parent = WaypointList
  1068. SpawnPoint.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1069. SpawnPoint.TextColor3 = Color3.new(1, 1, 1)
  1070. SpawnPoint.BorderColor3 = Color3.new(0, 1, 0)
  1071. SpawnPoint.Position = UDim2.new(0, 5, 0, 100)
  1072. SpawnPoint.Size = UDim2.new(0, 147, 0, 20)
  1073. SpawnPoint.Font = Enum.Font.Fantasy
  1074. SpawnPoint.FontSize = Enum.FontSize.Size14
  1075. SpawnPoint.Text = "Spawn Point"
  1076. SpawnPoint.TextSize = 16
  1077.  
  1078. WoodRUs.Name = "WoodRUs"
  1079. WoodRUs.Parent = WaypointList
  1080. WoodRUs.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1081. WoodRUs.TextColor3 = Color3.new(1, 1, 1)
  1082. WoodRUs.BorderColor3 = Color3.new(0, 1, 0)
  1083. WoodRUs.Position = UDim2.new(0, 5, 0, 125)
  1084. WoodRUs.Size = UDim2.new(0, 147, 0, 20)
  1085. WoodRUs.Font = Enum.Font.Fantasy
  1086. WoodRUs.FontSize = Enum.FontSize.Size14
  1087. WoodRUs.Text = "Wood R Us"
  1088. WoodRUs.TextSize = 16
  1089.  
  1090. LinksLogic.Name = "LinksLogic"
  1091. LinksLogic.Parent = WaypointList
  1092. LinksLogic.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1093. LinksLogic.TextColor3 = Color3.new(1, 1, 1)
  1094. LinksLogic.BorderColor3 = Color3.new(0, 1, 0)
  1095. LinksLogic.Position = UDim2.new(0, 5, 0, 150)
  1096. LinksLogic.Size = UDim2.new(0, 147, 0, 20)
  1097. LinksLogic.Font = Enum.Font.Fantasy
  1098. LinksLogic.FontSize = Enum.FontSize.Size14
  1099. LinksLogic.Text = "Link's Logic"
  1100. LinksLogic.TextSize = 16
  1101.  
  1102. BoxedCars.Name = "BoxedCars"
  1103. BoxedCars.Parent = WaypointList
  1104. BoxedCars.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1105. BoxedCars.TextColor3 = Color3.new(1, 1, 1)
  1106. BoxedCars.BorderColor3 = Color3.new(0, 1, 0)
  1107. BoxedCars.Position = UDim2.new(0, 5, 0, 175)
  1108. BoxedCars.Size = UDim2.new(0, 147, 0, 20)
  1109. BoxedCars.Font = Enum.Font.Fantasy
  1110. BoxedCars.FontSize = Enum.FontSize.Size14
  1111. BoxedCars.Text = "Boxed Cars"
  1112. BoxedCars.TextSize = 16
  1113.  
  1114. FancyFurnishings.Name = "FancyFurnishings"
  1115. FancyFurnishings.Parent = WaypointList
  1116. FancyFurnishings.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1117. FancyFurnishings.TextColor3 = Color3.new(1, 1, 1)
  1118. FancyFurnishings.BorderColor3 = Color3.new(0, 1, 0)
  1119. FancyFurnishings.Position = UDim2.new(0, 5, 0, 200)
  1120. FancyFurnishings.Size = UDim2.new(0, 147, 0, 20)
  1121. FancyFurnishings.Font = Enum.Font.Fantasy
  1122. FancyFurnishings.FontSize = Enum.FontSize.Size14
  1123. FancyFurnishings.Text = "Fancy Furnishings"
  1124. FancyFurnishings.TextSize = 16
  1125.  
  1126. LandStore.Name = "LandStore"
  1127. LandStore.Parent = WaypointList
  1128. LandStore.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1129. LandStore.TextColor3 = Color3.new(1, 1, 1)
  1130. LandStore.BorderColor3 = Color3.new(0, 1, 0)
  1131. LandStore.Position = UDim2.new(0, 5, 0, 225)
  1132. LandStore.Size = UDim2.new(0, 147, 0, 20)
  1133. LandStore.Font = Enum.Font.Fantasy
  1134. LandStore.FontSize = Enum.FontSize.Size14
  1135. LandStore.Text = "Land Store"
  1136. LandStore.TextSize = 16
  1137.  
  1138. FineArtsShop.Name = "FineArtsShop"
  1139. FineArtsShop.Parent = WaypointList
  1140. FineArtsShop.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1141. FineArtsShop.TextColor3 = Color3.new(1, 1, 1)
  1142. FineArtsShop.BorderColor3 = Color3.new(0, 1, 0)
  1143. FineArtsShop.Position = UDim2.new(0, 5, 0, 250)
  1144. FineArtsShop.Size = UDim2.new(0, 147, 0, 20)
  1145. FineArtsShop.Font = Enum.Font.Fantasy
  1146. FineArtsShop.FontSize = Enum.FontSize.Size14
  1147. FineArtsShop.Text = "Fine Arts Shop"
  1148. FineArtsShop.TextSize = 16
  1149.  
  1150. BobsShack.Name = "BobsShack"
  1151. BobsShack.Parent = WaypointList
  1152. BobsShack.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1153. BobsShack.TextColor3 = Color3.new(1, 1, 1)
  1154. BobsShack.BorderColor3 = Color3.new(0, 1, 0)
  1155. BobsShack.Position = UDim2.new(0, 5, 0, 275)
  1156. BobsShack.Size = UDim2.new(0, 147, 0, 20)
  1157. BobsShack.Font = Enum.Font.Fantasy
  1158. BobsShack.FontSize = Enum.FontSize.Size14
  1159. BobsShack.Text = "Bob's Shack"
  1160. BobsShack.TextSize = 16
  1161.  
  1162. Swamp.Name = "Swamp"
  1163. Swamp.Parent = WaypointList
  1164. Swamp.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1165. Swamp.TextColor3 = Color3.new(1, 1, 1)
  1166. Swamp.BorderColor3 = Color3.new(0, 1, 0)
  1167. Swamp.Position = UDim2.new(0, 5, 0, 300)
  1168. Swamp.Size = UDim2.new(0, 147, 0, 20)
  1169. Swamp.Font = Enum.Font.Fantasy
  1170. Swamp.FontSize = Enum.FontSize.Size14
  1171. Swamp.Text = "Swamp"
  1172. Swamp.TextSize = 16
  1173.  
  1174. PalmIsland.Name = "PalmIsland"
  1175. PalmIsland.Parent = WaypointList
  1176. PalmIsland.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1177. PalmIsland.TextColor3 = Color3.new(1, 1, 1)
  1178. PalmIsland.BorderColor3 = Color3.new(0, 1, 0)
  1179. PalmIsland.Position = UDim2.new(0, 5, 0, 325)
  1180. PalmIsland.Size = UDim2.new(0, 147, 0, 20)
  1181. PalmIsland.Font = Enum.Font.Fantasy
  1182. PalmIsland.FontSize = Enum.FontSize.Size14
  1183. PalmIsland.Text = "Palm Island"
  1184. PalmIsland.TextSize = 16
  1185.  
  1186. Cave.Name = "Cave"
  1187. Cave.Parent = WaypointList
  1188. Cave.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1189. Cave.TextColor3 = Color3.new(1, 1, 1)
  1190. Cave.BorderColor3 = Color3.new(0, 1, 0)
  1191. Cave.Position = UDim2.new(0, 5, 0, 350)
  1192. Cave.Size = UDim2.new(0, 147, 0, 20)
  1193. Cave.Font = Enum.Font.Fantasy
  1194. Cave.FontSize = Enum.FontSize.Size14
  1195. Cave.Text = "Cave"
  1196. Cave.TextSize = 16
  1197.  
  1198. Volcano.Name = "Volcano"
  1199. Volcano.Parent = WaypointList
  1200. Volcano.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1201. Volcano.TextColor3 = Color3.new(1, 1, 1)
  1202. Volcano.BorderColor3 = Color3.new(0, 1, 0)
  1203. Volcano.Position = UDim2.new(0, 5, 0, 375)
  1204. Volcano.Size = UDim2.new(0, 147, 0, 20)
  1205. Volcano.Font = Enum.Font.Fantasy
  1206. Volcano.FontSize = Enum.FontSize.Size14
  1207. Volcano.Text = "Volcano"
  1208. Volcano.TextSize = 16
  1209.  
  1210. Dock.Name = "Dock"
  1211. Dock.Parent = WaypointList
  1212. Dock.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1213. Dock.TextColor3 = Color3.new(1, 1, 1)
  1214. Dock.BorderColor3 = Color3.new(0, 1, 0)
  1215. Dock.Position = UDim2.new(0, 5, 0, 400)
  1216. Dock.Size = UDim2.new(0, 147, 0, 20)
  1217. Dock.Font = Enum.Font.Fantasy
  1218. Dock.FontSize = Enum.FontSize.Size14
  1219. Dock.Text = "Dock"
  1220. Dock.TextSize = 16
  1221.  
  1222. Bridge.Name = "Bridge"
  1223. Bridge.Parent = WaypointList
  1224. Bridge.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1225. Bridge.TextColor3 = Color3.new(1, 1, 1)
  1226. Bridge.BorderColor3 = Color3.new(0, 1, 0)
  1227. Bridge.Position = UDim2.new(0, 5, 0, 425)
  1228. Bridge.Size = UDim2.new(0, 147, 0, 20)
  1229. Bridge.Font = Enum.Font.Fantasy
  1230. Bridge.FontSize = Enum.FontSize.Size14
  1231. Bridge.Text = "Bridge"
  1232. Bridge.TextSize = 16
  1233.  
  1234. EndTimes.Name = "EndTimes"
  1235. EndTimes.Parent = WaypointList
  1236. EndTimes.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1237. EndTimes.TextColor3 = Color3.new(1, 1, 1)
  1238. EndTimes.BorderColor3 = Color3.new(0, 1, 0)
  1239. EndTimes.Position = UDim2.new(0, 5, 0, 450)
  1240. EndTimes.Size = UDim2.new(0, 147, 0, 20)
  1241. EndTimes.Font = Enum.Font.Fantasy
  1242. EndTimes.FontSize = Enum.FontSize.Size14
  1243. EndTimes.Text = "End Times"
  1244. EndTimes.TextSize = 16
  1245.  
  1246. ShrineOfSight.Name = "ShrineOfSight"
  1247. ShrineOfSight.Parent = WaypointList
  1248. ShrineOfSight.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1249. ShrineOfSight.TextColor3 = Color3.new(1, 1, 1)
  1250. ShrineOfSight.BorderColor3 = Color3.new(0, 1, 0)
  1251. ShrineOfSight.Position = UDim2.new(0, 5, 0, 475)
  1252. ShrineOfSight.Size = UDim2.new(0, 147, 0, 20)
  1253. ShrineOfSight.Font = Enum.Font.Fantasy
  1254. ShrineOfSight.FontSize = Enum.FontSize.Size14
  1255. ShrineOfSight.Text = "Shrine Of Sight"
  1256. ShrineOfSight.TextSize = 16
  1257.  
  1258. TheDen.Name = "TheDen"
  1259. TheDen.Parent = WaypointList
  1260. TheDen.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1261. TheDen.TextColor3 = Color3.new(1, 1, 1)
  1262. TheDen.BorderColor3 = Color3.new(0, 1, 0)
  1263. TheDen.Position = UDim2.new(0, 5, 0, 500)
  1264. TheDen.Size = UDim2.new(0, 147, 0, 20)
  1265. TheDen.Font = Enum.Font.Fantasy
  1266. TheDen.FontSize = Enum.FontSize.Size14
  1267. TheDen.Text = "The Den"
  1268. TheDen.TextSize = 16
  1269.  
  1270. VolcanoWin.Name = "VolcanoWin"
  1271. VolcanoWin.Parent = WaypointList
  1272. VolcanoWin.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1273. VolcanoWin.TextColor3 = Color3.new(1, 1, 1)
  1274. VolcanoWin.BorderColor3 = Color3.new(0, 1, 0)
  1275. VolcanoWin.Position = UDim2.new(0, 5, 0, 525)
  1276. VolcanoWin.Size = UDim2.new(0, 147, 0, 20)
  1277. VolcanoWin.Font = Enum.Font.Fantasy
  1278. VolcanoWin.FontSize = Enum.FontSize.Size14
  1279. VolcanoWin.Text = "Volcano Win"
  1280. VolcanoWin.TextSize = 16
  1281.  
  1282. SkiLodge.Name = "SkiLodge"
  1283. SkiLodge.Parent = WaypointList
  1284. SkiLodge.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1285. SkiLodge.TextColor3 = Color3.new(1, 1, 1)
  1286. SkiLodge.BorderColor3 = Color3.new(0, 1, 0)
  1287. SkiLodge.Position = UDim2.new(0, 5, 0, 550)
  1288. SkiLodge.Size = UDim2.new(0, 147, 0, 20)
  1289. SkiLodge.Font = Enum.Font.Fantasy
  1290. SkiLodge.FontSize = Enum.FontSize.Size14
  1291. SkiLodge.Text = "Ski Lodge"
  1292. SkiLodge.TextSize = 16
  1293.  
  1294. StrangeMan.Name = "StrangeMan"
  1295. StrangeMan.Parent = WaypointList
  1296. StrangeMan.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1297. StrangeMan.TextColor3 = Color3.new(1, 1, 1)
  1298. StrangeMan.BorderColor3 = Color3.new(0, 1, 0)
  1299. StrangeMan.Position = UDim2.new(0, 5, 0, 575)
  1300. StrangeMan.Size = UDim2.new(0, 147, 0, 20)
  1301. StrangeMan.Font = Enum.Font.Fantasy
  1302. StrangeMan.FontSize = Enum.FontSize.Size14
  1303. StrangeMan.Text = "The Strange Man"
  1304. StrangeMan.TextSize = 16
  1305.  
  1306. BringTreeFrame.Name = "BringTreeFrame"
  1307. BringTreeFrame.Parent = MenuFrame
  1308. BringTreeFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  1309. BringTreeFrame.BackgroundTransparency = 0
  1310. BringTreeFrame.BorderColor3 = Color3.new(0, 1, 0)
  1311. BringTreeFrame.Size = UDim2.new(0, 170, 0, 290)
  1312. BringTreeFrame.Visible = false
  1313.  
  1314. BringTreeHeader.Name = "BringTreeHeader"
  1315. BringTreeHeader.Parent = BringTreeFrame
  1316. BringTreeHeader.BackgroundColor3 = Color3.new(1, 1, 1)
  1317. BringTreeHeader.BackgroundTransparency = 0.15
  1318. BringTreeHeader.BorderColor3 = Color3.new(0, 1, 0)
  1319. BringTreeHeader.Position = UDim2.new(0, 0, 0, 0)
  1320. BringTreeHeader.Size = UDim2.new(0, 170, 0, 35)
  1321. BringTreeHeader.Font = Enum.Font.Fantasy
  1322. BringTreeHeader.FontSize = Enum.FontSize.Size18
  1323. BringTreeHeader.Text = "SELECT A TREE TO SPAWN"
  1324. BringTreeHeader.TextColor3 = Color3.new(0, 0, 0)
  1325. BringTreeHeader.TextScaled = true
  1326. BringTreeHeader.TextSize = 17
  1327. BringTreeHeader.TextWrapped = true
  1328.  
  1329. BringTreeInfo1.Name = "BringTreeInfo1"
  1330. BringTreeInfo1.Parent = BringTreeFrame
  1331. BringTreeInfo1.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1332. BringTreeInfo1.BorderColor3 = Color3.new(0, 1, 0)
  1333. BringTreeInfo1.Position = UDim2.new(0, 30, 0, 255)
  1334. BringTreeInfo1.Size = UDim2.new(0, 110, 0, 25)
  1335. BringTreeInfo1.Font = Enum.Font.SourceSans
  1336. BringTreeInfo1.FontSize = Enum.FontSize.Size18
  1337. BringTreeInfo1.TextColor3 = Color3.new(1, 1, 1)
  1338. BringTreeInfo1.Text = "Info"
  1339. BringTreeInfo1.TextScaled = true
  1340. BringTreeInfo1.TextSize = 18
  1341.  
  1342. BringTreeInfo2.Name = "BringTreeInfo2"
  1343. BringTreeInfo2.Parent = BringTreeFrame
  1344. BringTreeInfo2.BackgroundColor3 = Color3.new(0, 0, 0)
  1345. BringTreeInfo2.BorderColor3 = Color3.new(0, 1, 0)
  1346. BringTreeInfo2.Position = UDim2.new(0, 185, 1, -260)
  1347. BringTreeInfo2.Size = UDim2.new(0, 170, 0, 300)
  1348. BringTreeInfo2.Visible = false
  1349. BringTreeInfo2.Font = Enum.Font.Fantasy
  1350. BringTreeInfo2.FontSize = Enum.FontSize.Size18
  1351. 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."
  1352. BringTreeInfo2.TextColor3 = Color3.new(1, 1, 1)
  1353. BringTreeInfo2.TextSize = 16
  1354. BringTreeInfo2.Active = true
  1355. BringTreeInfo2.Draggable = true
  1356. BringTreeInfo2.ZIndex = 7
  1357. BringTreeInfo2.TextWrapped = true
  1358. BringTreeInfo2.TextYAlignment = Enum.TextYAlignment.Top
  1359.  
  1360. OakTree.Name = "OakTree"
  1361. OakTree.Parent = BringTreeFrame
  1362. OakTree.BackgroundColor3 = Color3.new(0.95256, 0.70952, 0.60368)
  1363. OakTree.BackgroundTransparency = 0.15
  1364. OakTree.BorderColor3 = Color3.new(0, 1, 0)
  1365. OakTree.Position = UDim2.new(0, 5, 0, 45)
  1366. OakTree.Size = UDim2.new(0, 37, 0, 35)
  1367. OakTree.Font = Enum.Font.Fantasy
  1368. OakTree.FontSize = Enum.FontSize.Size18
  1369. OakTree.Text = "OAK\nTREE"
  1370. OakTree.TextColor3 = Color3.new(0, 0, 0)
  1371. OakTree.TextWrapped = true
  1372. OakTree.TextSize = 14
  1373.  
  1374. ElmTree.Name = "ElmTree"
  1375. ElmTree.Parent = BringTreeFrame
  1376. ElmTree.BackgroundColor3 = Color3.new(1, 0.95648, 0.88984)
  1377. ElmTree.BackgroundTransparency = 0.15
  1378. ElmTree.BorderColor3 = Color3.new(0, 1, 0)
  1379. ElmTree.Position = UDim2.new(0, 47, 0, 45)
  1380. ElmTree.Size = UDim2.new(0, 37, 0, 35)
  1381. ElmTree.Font = Enum.Font.Fantasy
  1382. ElmTree.FontSize = Enum.FontSize.Size18
  1383. ElmTree.Text = "ELM\nTREE"
  1384. ElmTree.TextColor3 = Color3.new(0, 0, 0)
  1385. ElmTree.TextWrapped = true
  1386. ElmTree.TextSize = 14
  1387.  
  1388. EndTimesTree.Name = "EndTimesTree"
  1389. EndTimesTree.Parent = BringTreeFrame
  1390. EndTimesTree.BackgroundColor3 = Color3.new(1, 1, 1)
  1391. EndTimesTree.BackgroundTransparency = 0.15
  1392. EndTimesTree.BorderColor3 = Color3.new(0, 1, 0)
  1393. EndTimesTree.Position = UDim2.new(0, 89, 0, 45)
  1394. EndTimesTree.Size = UDim2.new(0, 76, 0, 35)
  1395. EndTimesTree.Font = Enum.Font.Fantasy
  1396. EndTimesTree.FontSize = Enum.FontSize.Size18
  1397. EndTimesTree.Text = "ENDTIMES\nTREE"
  1398. EndTimesTree.TextColor3 = Color3.new(0, 0, 0)
  1399. EndTimesTree.TextWrapped = true
  1400. EndTimesTree.TextSize = 14
  1401.  
  1402. BirchTree.Name = "BirchTree"
  1403. BirchTree.Parent = BringTreeFrame
  1404. BirchTree.BackgroundColor3 = Color3.new(0.9604, 0.9604, 0.9604)
  1405. BirchTree.BackgroundTransparency = 0.15
  1406. BirchTree.BorderColor3 = Color3.new(0, 1, 0)
  1407. BirchTree.Position = UDim2.new(0, 5, 0, 85)
  1408. BirchTree.Size = UDim2.new(0, 45, 0, 35)
  1409. BirchTree.Font = Enum.Font.Fantasy
  1410. BirchTree.FontSize = Enum.FontSize.Size18
  1411. BirchTree.Text = "BIRCH\nTREE"
  1412. BirchTree.TextColor3 = Color3.new(0, 0, 0)
  1413. BirchTree.TextWrapped = true
  1414. BirchTree.TextSize = 14
  1415.  
  1416. VolcanoTree.Name = "VolcanoTree"
  1417. VolcanoTree.Parent = BringTreeFrame
  1418. VolcanoTree.BackgroundColor3 = Color3.new(1, 0, 0)
  1419. VolcanoTree.BackgroundTransparency = 0.15
  1420. VolcanoTree.BorderColor3 = Color3.new(0, 1, 0)
  1421. VolcanoTree.Position = UDim2.new(0, 55, 0, 85)
  1422. VolcanoTree.Size = UDim2.new(0, 65, 0, 35)
  1423. VolcanoTree.Font = Enum.Font.Fantasy
  1424. VolcanoTree.FontSize = Enum.FontSize.Size18
  1425. VolcanoTree.Text = "VOLCANO\nTREE"
  1426. VolcanoTree.TextColor3 = Color3.new(0, 0, 0)
  1427. VolcanoTree.TextWrapped = true
  1428. VolcanoTree.TextSize = 14
  1429.  
  1430. FirTree.Name = "FirTree"
  1431. FirTree.Parent = BringTreeFrame
  1432. FirTree.BackgroundColor3 = Color3.new(1, 0.96824, 0.9212)
  1433. FirTree.BackgroundTransparency = 0.15
  1434. FirTree.BorderColor3 = Color3.new(0, 1, 0)
  1435. FirTree.Position = UDim2.new(0, 125, 0, 85)
  1436. FirTree.Size = UDim2.new(0, 40, 0, 35)
  1437. FirTree.Font = Enum.Font.Fantasy
  1438. FirTree.FontSize = Enum.FontSize.Size18
  1439. FirTree.Text = "FIR\nTREE"
  1440. FirTree.TextColor3 = Color3.new(0, 0, 0)
  1441. FirTree.TextWrapped = true
  1442. FirTree.TextSize = 14
  1443.  
  1444. SpookyTree.Name = "SpookyTree"
  1445. SpookyTree.Parent = BringTreeFrame
  1446. SpookyTree.BackgroundColor3 = Color3.new(0.35672, 0.062736, 0.003921)
  1447. SpookyTree.BackgroundTransparency = 0.15
  1448. SpookyTree.BorderColor3 = Color3.new(0, 1, 0)
  1449. SpookyTree.Position = UDim2.new(0, 5, 0, 125)
  1450. SpookyTree.Size = UDim2.new(0, 60, 0, 35)
  1451. SpookyTree.Font = Enum.Font.Fantasy
  1452. SpookyTree.FontSize = Enum.FontSize.Size18
  1453. SpookyTree.Text = "SPOOKY\nTREE"
  1454. SpookyTree.TextColor3 = Color3.new(1, 1, 1)
  1455. SpookyTree.TextWrapped = true
  1456. SpookyTree.TextSize = 14
  1457.  
  1458. KoaTree.Name = "KoaTree"
  1459. KoaTree.Parent = BringTreeFrame
  1460. KoaTree.BackgroundColor3 = Color3.new(0.72912, 0.125472, 0.003921)
  1461. KoaTree.BackgroundTransparency = 0.15
  1462. KoaTree.BorderColor3 = Color3.new(0, 1, 0)
  1463. KoaTree.Position = UDim2.new(0, 70, 0, 125)
  1464. KoaTree.Size = UDim2.new(0, 45, 0, 35)
  1465. KoaTree.Font = Enum.Font.Fantasy
  1466. KoaTree.FontSize = Enum.FontSize.Size18
  1467. KoaTree.Text = "KOA\nTREE"
  1468. KoaTree.TextColor3 = Color3.new(1, 1, 1)
  1469. KoaTree.TextWrapped = true
  1470. KoaTree.TextSize = 14
  1471.  
  1472. PalmTree.Name = "PalmTree"
  1473. PalmTree.Parent = BringTreeFrame
  1474. PalmTree.BackgroundColor3 = Color3.new(1, 0.96824, 0.9212)
  1475. PalmTree.BackgroundTransparency = 0.15
  1476. PalmTree.BorderColor3 = Color3.new(0, 1, 0)
  1477. PalmTree.Position = UDim2.new(0, 120, 0, 125)
  1478. PalmTree.Size = UDim2.new(0, 45, 0, 35)
  1479. PalmTree.Font = Enum.Font.Fantasy
  1480. PalmTree.FontSize = Enum.FontSize.Size18
  1481. PalmTree.Text = "PALM\nTREE"
  1482. PalmTree.TextColor3 = Color3.new(0, 0, 0)
  1483. PalmTree.TextWrapped = true
  1484. PalmTree.TextSize = 14
  1485.  
  1486. GreenTree.Name = "GreenTree"
  1487. GreenTree.Parent = BringTreeFrame
  1488. GreenTree.BackgroundColor3 = Color3.new(0, 1, 0)
  1489. GreenTree.BackgroundTransparency = 0.15
  1490. GreenTree.BorderColor3 = Color3.new(0, 1, 0)
  1491. GreenTree.Position = UDim2.new(0, 5, 0, 165)
  1492. GreenTree.Size = UDim2.new(0, 51, 0, 35)
  1493. GreenTree.Font = Enum.Font.Fantasy
  1494. GreenTree.FontSize = Enum.FontSize.Size18
  1495. GreenTree.Text = "GREEN\nTREE"
  1496. GreenTree.TextColor3 = Color3.new(0, 0, 0)
  1497. GreenTree.TextWrapped = true
  1498. GreenTree.TextSize = 14
  1499.  
  1500. GoldTree.Name = "GoldTree"
  1501. GoldTree.Parent = BringTreeFrame
  1502. GoldTree.BackgroundColor3 = Color3.new(0.960645, 0.86262, 0.231339)
  1503. GoldTree.BackgroundTransparency = 0.15
  1504. GoldTree.BorderColor3 = Color3.new(0, 1, 0)
  1505. GoldTree.Position = UDim2.new(0, 61, 0, 165)
  1506. GoldTree.Size = UDim2.new(0, 44, 0, 35)
  1507. GoldTree.Font = Enum.Font.Fantasy
  1508. GoldTree.FontSize = Enum.FontSize.Size18
  1509. GoldTree.Text = "GOLD\nTREE"
  1510. GoldTree.TextColor3 = Color3.new(0, 0, 0)
  1511. GoldTree.TextWrapped = true
  1512. GoldTree.TextSize = 14
  1513.  
  1514. CherryTree.Name = "CherryTree"
  1515. CherryTree.Parent = BringTreeFrame
  1516. CherryTree.BackgroundColor3 = Color3.new(0.93296, 0.39984, 0.49)
  1517. CherryTree.BackgroundTransparency = 0.15
  1518. CherryTree.BorderColor3 = Color3.new(0, 1, 0)
  1519. CherryTree.Position = UDim2.new(0, 110, 0, 165)
  1520. CherryTree.Size = UDim2.new(0, 55, 0, 35)
  1521. CherryTree.Font = Enum.Font.Fantasy
  1522. CherryTree.FontSize = Enum.FontSize.Size18
  1523. CherryTree.Text = "CHERRY TREE"
  1524. CherryTree.TextColor3 = Color3.new(0, 0, 0)
  1525. CherryTree.TextWrapped = true
  1526. CherryTree.TextSize = 14
  1527.  
  1528. CaveCrawlerTree.Name = "CaveCrawlerTree"
  1529. CaveCrawlerTree.Parent = BringTreeFrame
  1530. CaveCrawlerTree.BackgroundColor3 = Color3.new(0, 0, 1)
  1531. CaveCrawlerTree.BackgroundTransparency = 0.15
  1532. CaveCrawlerTree.BorderColor3 = Color3.new(0, 1, 0)
  1533. CaveCrawlerTree.Position = UDim2.new(0, 5, 0, 205)
  1534. CaveCrawlerTree.Size = UDim2.new(0, 95, 0, 35)
  1535. CaveCrawlerTree.Font = Enum.Font.Fantasy
  1536. CaveCrawlerTree.FontSize = Enum.FontSize.Size18
  1537. CaveCrawlerTree.Text = "CAVECRAWLER\nTREE"
  1538. CaveCrawlerTree.TextColor3 = Color3.new(1, 1, 1)
  1539. CaveCrawlerTree.TextWrapped = true
  1540. CaveCrawlerTree.TextSize = 14
  1541.  
  1542. WalnutTree.Name = "WalnutTree"
  1543. WalnutTree.Parent = BringTreeFrame
  1544. WalnutTree.BackgroundColor3 = Color3.new(0.360732, 0.176445, 0.137235)
  1545. WalnutTree.BackgroundTransparency = 0.15
  1546. WalnutTree.BorderColor3 = Color3.new(0, 1, 0)
  1547. WalnutTree.Position = UDim2.new(0, 105, 0, 205)
  1548. WalnutTree.Size = UDim2.new(0, 60, 0, 35)
  1549. WalnutTree.Font = Enum.Font.Fantasy
  1550. WalnutTree.FontSize = Enum.FontSize.Size18
  1551. WalnutTree.Text = "WALNUT\nTREE"
  1552. WalnutTree.TextColor3 = Color3.new(1, 1, 1)
  1553. WalnutTree.TextWrapped = true
  1554. WalnutTree.TextSize = 14
  1555.  
  1556. DupeFrame.Name = "DupeFrame"
  1557. DupeFrame.Parent = MenuFrame
  1558. DupeFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  1559. DupeFrame.BackgroundTransparency = 0
  1560. DupeFrame.BorderColor3 = Color3.new(0, 1, 0)
  1561. DupeFrame.Size = UDim2.new(0, 170, 0, 290)
  1562. DupeFrame.Visible = false
  1563.  
  1564. Info.Name = "Info"
  1565. Info.Parent = DupeFrame
  1566. Info.BackgroundColor3 = Color3.new(0, 0, 0)
  1567. Info.BorderColor3 = Color3.new(0, 1, 0)
  1568. Info.Position = UDim2.new(0, 185, 1, -370)
  1569. Info.Size = UDim2.new(0, 170, 0, 410)
  1570. Info.Visible = false
  1571. Info.Font = Enum.Font.Fantasy
  1572. Info.FontSize = Enum.FontSize.Size14
  1573. 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."
  1574. Info.TextColor3 = Color3.new(1, 1, 1)
  1575. Info.TextSize = 14
  1576. Info.Active = true
  1577. Info.Draggable = true
  1578. Info.ZIndex = 7
  1579. Info.TextWrapped = true
  1580. Info.TextYAlignment = Enum.TextYAlignment.Top
  1581.  
  1582. Read.Name = "Read"
  1583. Read.Parent = DupeFrame
  1584. Read.BackgroundColor3 = Color3.new(1, 1, 1)
  1585. Read.BackgroundTransparency = 0.15
  1586. Read.BorderColor3 = Color3.new(0, 1, 0)
  1587. Read.Size = UDim2.new(0, 170, 0, 35)
  1588. Read.Font = Enum.Font.Fantasy
  1589. Read.FontSize = Enum.FontSize.Size18
  1590. Read.Text = "READ INFO BEFORE USING THIS"
  1591. Read.TextColor3 = Color3.new(0, 0, 0)
  1592. Read.TextScaled = true
  1593. Read.TextSize = 17
  1594. Read.TextWrapped = true
  1595.  
  1596. Dupe.Name = "Dupe"
  1597. Dupe.Parent = DupeFrame
  1598. Dupe.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1599. Dupe.BorderColor3 = Color3.new(0, 1, 0)
  1600. Dupe.Position = UDim2.new(0, 50, 0, 65)
  1601. Dupe.Size = UDim2.new(0, 70, 0, 25)
  1602. Dupe.Font = Enum.Font.Fantasy
  1603. Dupe.FontSize = Enum.FontSize.Size18
  1604. Dupe.Text = "Dupe"
  1605. Dupe.TextScaled = true
  1606. Dupe.TextColor3 = Color3.new(1, 1, 1)
  1607. Dupe.TextSize = 17
  1608.  
  1609. DupingText1.Name = "DupingText1"
  1610. DupingText1.Parent = DupeFrame
  1611. DupingText1.BackgroundColor3 = Color3.new(0, 0, 0)
  1612. DupingText1.BackgroundTransparency = 1
  1613. DupingText1.Position = UDim2.new(0, 5, 0, 100)
  1614. DupingText1.Size = UDim2.new(0, 160, 0, 140)
  1615. DupingText1.Font = Enum.Font.Fantasy
  1616. DupingText1.FontSize = Enum.FontSize.Size14
  1617. DupingText1.Text = "Loaded Slot Will Save"
  1618. DupingText1.TextColor3 = Color3.new(0, 1, 0)
  1619. DupingText1.TextSize = 14
  1620. DupingText1.TextYAlignment = Enum.TextYAlignment.Top
  1621. DupingText1.TextWrapped = true
  1622.  
  1623. MoreInfo.Name = "MoreInfo"
  1624. MoreInfo.Parent = DupeFrame
  1625. MoreInfo.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1626. MoreInfo.BorderColor3 = Color3.new(0, 1, 0)
  1627. MoreInfo.Position = UDim2.new(0, 25, 0, 240)
  1628. MoreInfo.Size = UDim2.new(0, 120, 0, 25)
  1629. MoreInfo.Font = Enum.Font.SourceSans
  1630. MoreInfo.FontSize = Enum.FontSize.Size18
  1631. MoreInfo.Text = "Info"
  1632. MoreInfo.TextScaled = true
  1633. MoreInfo.TextColor3 = Color3.new(1, 1, 1)
  1634. MoreInfo.TextSize = 18
  1635.  
  1636. PlayerFrame.Name = "PlayerFrame"
  1637. PlayerFrame.Parent = MenuFrame
  1638. PlayerFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  1639. PlayerFrame.BackgroundTransparency = 0
  1640. PlayerFrame.BorderColor3 = Color3.new(0, 1, 0)
  1641. PlayerFrame.Size = UDim2.new(0, 170, 0, 290)
  1642. PlayerFrame.Visible = false
  1643.  
  1644. PlyrSel.Name = "PlyrSel"
  1645. PlyrSel.Parent = PlayerFrame
  1646. PlyrSel.BackgroundColor3 = Color3.new(1, 1, 1)
  1647. PlyrSel.BackgroundTransparency = 0.15
  1648. PlyrSel.BorderColor3 = Color3.new(0, 1, 0)
  1649. PlyrSel.Position = UDim2.new(0, 5, 0, 5)
  1650. PlyrSel.Size = UDim2.new(0, 160, 0, 20)
  1651. PlyrSel.Font = Enum.Font.SourceSans
  1652. PlyrSel.FontSize = Enum.FontSize.Size18
  1653. PlyrSel.Text = "SELECT A PLAYER"
  1654. PlyrSel.TextColor3 = Color3.new(0, 0, 0)
  1655. PlyrSel.TextScaled = true
  1656. PlyrSel.TextSize = 17
  1657. PlyrSel.TextWrapped = true
  1658.  
  1659. Player1.Name = "Player1"
  1660. Player1.Parent = PlayerFrame
  1661. Player1.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1662. Player1.BorderColor3 = Color3.new(0, 1, 0)
  1663. Player1.Position = UDim2.new(0, 5, 0, 40)
  1664. Player1.Size = UDim2.new(0, 160, 0, 20)
  1665. Player1.Font = Enum.Font.Fantasy
  1666. Player1.FontSize = Enum.FontSize.Size18
  1667. Player1.Text = ""
  1668. Player1.TextColor3 = Color3.new(1, 1, 1)
  1669. Player1.TextSize = 16
  1670. Player1.TextWrapped = true
  1671.  
  1672. Player2.Name = "Player2"
  1673. Player2.Parent = PlayerFrame
  1674. Player2.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1675. Player2.BorderColor3 = Color3.new(0, 1, 0)
  1676. Player2.Position = UDim2.new(0, 5, 0, 65)
  1677. Player2.Size = UDim2.new(0, 160, 0, 20)
  1678. Player2.Font = Enum.Font.Fantasy
  1679. Player2.FontSize = Enum.FontSize.Size18
  1680. Player2.Text = ""
  1681. Player2.TextColor3 = Color3.new(1, 1, 1)
  1682. Player2.TextSize = 16
  1683. Player2.TextWrapped = true
  1684.  
  1685. Player3.Name = "Player3"
  1686. Player3.Parent = PlayerFrame
  1687. Player3.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1688. Player3.BorderColor3 = Color3.new(0, 1, 0)
  1689. Player3.Position = UDim2.new(0, 5, 0, 90)
  1690. Player3.Size = UDim2.new(0, 160, 0, 20)
  1691. Player3.Font = Enum.Font.Fantasy
  1692. Player3.FontSize = Enum.FontSize.Size18
  1693. Player3.Text = ""
  1694. Player3.TextColor3 = Color3.new(1, 1, 1)
  1695. Player3.TextSize = 16
  1696. Player3.TextWrapped = true
  1697.  
  1698. Player4.Name = "Player4"
  1699. Player4.Parent = PlayerFrame
  1700. Player4.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1701. Player4.BorderColor3 = Color3.new(0, 1, 0)
  1702. Player4.Position = UDim2.new(0, 5, 0, 115)
  1703. Player4.Size = UDim2.new(0, 160, 0, 20)
  1704. Player4.Font = Enum.Font.Fantasy
  1705. Player4.FontSize = Enum.FontSize.Size18
  1706. Player4.Text = ""
  1707. Player4.TextColor3 = Color3.new(1, 1, 1)
  1708. Player4.TextSize = 16
  1709. Player4.TextWrapped = true
  1710.  
  1711. Player5.Name = "Player5"
  1712. Player5.Parent = PlayerFrame
  1713. Player5.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1714. Player5.BorderColor3 = Color3.new(0, 1, 0)
  1715. Player5.Position = UDim2.new(0, 5, 0, 140)
  1716. Player5.Size = UDim2.new(0, 160, 0, 20)
  1717. Player5.Font = Enum.Font.Fantasy
  1718. Player5.FontSize = Enum.FontSize.Size18
  1719. Player5.Text = ""
  1720. Player5.TextColor3 = Color3.new(1, 1, 1)
  1721. Player5.TextSize = 16
  1722. Player5.TextWrapped = true
  1723.  
  1724. Player6.Name = "Player6"
  1725. Player6.Parent = PlayerFrame
  1726. Player6.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1727. Player6.BorderColor3 = Color3.new(0, 1, 0)
  1728. Player6.Position = UDim2.new(0, 5, 0, 165)
  1729. Player6.Size = UDim2.new(0, 160, 0, 20)
  1730. Player6.Font = Enum.Font.Fantasy
  1731. Player6.FontSize = Enum.FontSize.Size18
  1732. Player6.Text = ""
  1733. Player6.TextColor3 = Color3.new(1, 1, 1)
  1734. Player6.TextSize = 16
  1735. Player6.TextWrapped = true
  1736.  
  1737. TpPlayer.Name = "TpPlayer"
  1738. TpPlayer.Parent = PlayerFrame
  1739. TpPlayer.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1740. TpPlayer.BackgroundTransparency = 0
  1741. TpPlayer.BorderColor3 = Color3.new(0, 1, 0)
  1742. TpPlayer.Position = UDim2.new(0, 5, 0, 225)
  1743. TpPlayer.Size = UDim2.new(0, 75, 0, 35)
  1744. TpPlayer.Font = Enum.Font.Fantasy
  1745. TpPlayer.FontSize = Enum.FontSize.Size18
  1746. TpPlayer.Text = "Tp to Player"
  1747. TpPlayer.TextColor3 = Color3.new(1, 1, 1)
  1748. TpPlayer.TextScaled = true
  1749. TpPlayer.TextWrapped = true
  1750. TpPlayer.TextSize = 14
  1751.  
  1752. TpBase.Name = "TpBase"
  1753. TpBase.Parent = PlayerFrame
  1754. TpBase.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1755. TpBase.BackgroundTransparency = 0
  1756. TpBase.BorderColor3 = Color3.new(0, 1, 0)
  1757. TpBase.Position = UDim2.new(0, 90, 0, 225)
  1758. TpBase.Size = UDim2.new(0, 75, 0, 35)
  1759. TpBase.Font = Enum.Font.Fantasy
  1760. TpBase.FontSize = Enum.FontSize.Size18
  1761. TpBase.Text = "Tp to\nBase"
  1762. TpBase.TextColor3 = Color3.new(1, 1, 1)
  1763. TpPlayer.TextSize = 22
  1764.  
  1765. WalkSpeed.Name = "WalkSpeed"
  1766. WalkSpeed.Parent = MainFrame
  1767. WalkSpeed.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1768. WalkSpeed.TextColor3 = Color3.new(1, 1, 1)
  1769. WalkSpeed.BorderColor3 = Color3.new(0, 1, 0)
  1770. WalkSpeed.Position = UDim2.new(0, 155, 0, 340)
  1771. WalkSpeed.Size = UDim2.new(0, 45, 0, 20)
  1772. WalkSpeed.Font = Enum.Font.Fantasy
  1773. WalkSpeed.FontSize = Enum.FontSize.Size18
  1774. WalkSpeed.Text = "Walk"
  1775. WalkSpeed.TextSize = 17
  1776.  
  1777. WalkText.Name = "WalkText"
  1778. WalkText.Parent = MainFrame
  1779. WalkText.BackgroundColor3 = Color3.new(0, 0, 0)
  1780. WalkText.BorderColor3 = Color3.new(0, 1, 0)
  1781. WalkText.Position = UDim2.new(0, 205, 0, 340)
  1782. WalkText.Size = UDim2.new(0, 28, 0, 20)
  1783. WalkText.Font = Enum.Font.Fantasy
  1784. WalkText.FontSize = Enum.FontSize.Size18
  1785. WalkText.Text = "16"
  1786. WalkText.TextColor3 = Color3.new(1, 1, 1)
  1787. WalkText.TextSize = 17
  1788. WalkText.TextScaled = true
  1789.  
  1790. JumpPower.Name = "JumpPower"
  1791. JumpPower.Parent = MainFrame
  1792. JumpPower.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1793. JumpPower.TextColor3 = Color3.new(1, 1, 1)
  1794. JumpPower.BorderColor3 = Color3.new(0, 1, 0)
  1795. JumpPower.Position = UDim2.new(0, 243, 0, 340)
  1796. JumpPower.Size = UDim2.new(0, 49, 0, 20)
  1797. JumpPower.Font = Enum.Font.Fantasy
  1798. JumpPower.FontSize = Enum.FontSize.Size18
  1799. JumpPower.Text = "Jump"
  1800. JumpPower.TextSize = 17
  1801.  
  1802. JumpText.Name = "JumpText"
  1803. JumpText.Parent = MainFrame
  1804. JumpText.BackgroundColor3 = Color3.new(0, 0, 0)
  1805. JumpText.BorderColor3 = Color3.new(0, 1, 0)
  1806. JumpText.Position = UDim2.new(0, 297, 0, 340)
  1807. JumpText.Size = UDim2.new(0, 28, 0, 20)
  1808. JumpText.Font = Enum.Font.Fantasy
  1809. JumpText.FontSize = Enum.FontSize.Size18
  1810. JumpText.Text = "50"
  1811. JumpText.TextColor3 = Color3.new(1, 1, 1)
  1812. JumpText.TextSize = 17
  1813. JumpText.TextScaled = true
  1814.  
  1815. game.Lighting.Changed:connect(function()
  1816. game.Lighting.TimeOfDay = "12:00:00"
  1817. game.Lighting.FogEnd = 9999
  1818. game.Lighting.Brightness = 1
  1819. end)
  1820.  
  1821. --- Menus ---
  1822.  
  1823. local Menus = {
  1824. [BringTree] = BringTreeFrame;
  1825. [Waypoints] = WaypointFrame;
  1826. [Duper] = DupeFrame;
  1827. [TPPlanks] = PlankFrame;
  1828. [GoldAxe] = GoldAxeFrame;
  1829. [PlayerTp] = PlayerFrame;
  1830. [Greywood] = GreywoodFrame;
  1831. [GuiLabel] = LT2GUI2Frame;
  1832. [SellWoodPlanks] = SellFrame;
  1833. }
  1834. for button,frame in pairs(Menus) do
  1835. button.MouseButton1Click:connect(function()
  1836. if frame.Visible then
  1837. frame.Visible = false
  1838. return
  1839. end
  1840. for k,v in pairs(Menus) do
  1841. v.Visible = v == frame
  1842. end
  1843. end)
  1844. end
  1845.  
  1846. --- Open/Close ---
  1847.  
  1848. Open.MouseButton1Down:connect(function()
  1849. OpenFrame.Visible = false
  1850. MainFrame.Visible = true
  1851. end)
  1852.  
  1853. Minimize.MouseButton1Down:connect(function()
  1854. MainFrame.Visible = false
  1855. OpenFrame.Visible = true
  1856. end)
  1857.  
  1858. CloseLT2.MouseButton1Down:connect(function()
  1859. LT2CORE:destroy()
  1860. end)
  1861.  
  1862.  
  1863. local service = setmetatable({}, {
  1864. __index = function(t, k)
  1865. return game:GetService(k)
  1866. end
  1867. })
  1868.  
  1869. function Create(cls,props)
  1870. local inst = Instance.new(cls)
  1871. for i,v in pairs(props) do
  1872. inst[i] = v
  1873. end
  1874. return inst
  1875. end
  1876.  
  1877. --- TP Planks to you ---
  1878.  
  1879. checkplanks = false
  1880. local WoodPlanks={}
  1881. local ProcessedWoodList = LT2GUI.MainFrame.MenuFrame.PlankFrame.ProcessedWoodList
  1882.  
  1883. function UpdatePlanks()
  1884. local inc = 0
  1885. WoodPlanks={}
  1886. for i,v in pairs(game.Workspace.PlayerModels:GetChildren()) do
  1887. if v.Name=="Plank" and v.Owner.Value==game.Players.LocalPlayer then
  1888. if v:FindFirstChild("TreeClass") and WoodPlanks[v.TreeClass.Value] then
  1889. WoodPlanks[v.TreeClass.Value]=WoodPlanks[v.TreeClass.Value]
  1890. WoodPlanks[v.TreeClass.Value]["Wood"][v]=v
  1891. elseif v:FindFirstChild("TreeClass") then
  1892. WoodPlanks[v.TreeClass.Value]={Wood={v.WoodSection}}
  1893. end
  1894. end
  1895. end
  1896. end
  1897.  
  1898. function UpdateMovePlanks()
  1899. checkplanks = true
  1900. local inc=0
  1901. UpdatePlanks()
  1902. ProcessedWoodList:ClearAllChildren()
  1903. for i,v in pairs(WoodPlanks) do
  1904. ProcessedWoodList.CanvasSize=UDim2.new(0,0,0,25*inc)
  1905. 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)})
  1906. TPButton.MouseButton1Click:Connect(function()
  1907. sendNotice = game.ReplicatedStorage.Notices.SendUserNotice
  1908. sendNotice:Fire("Click where you want the Planks to TP to")
  1909. local ButtonPress
  1910. ButtonPress = game.Players.LocalPlayer:GetMouse().Button1Down:Connect(function()
  1911. Square = game.Players.LocalPlayer:GetMouse().Target
  1912. if (Square.Name == "OriginSquare" or Square.Name == "Square") then
  1913. ButtonPress:Disconnect()
  1914. for _, Plank in pairs(game.Workspace.PlayerModels:GetChildren()) do
  1915. if Plank.Name=="Plank" and Plank:FindFirstChild("TreeClass") then
  1916. if Plank.TreeClass.Value == i and Plank.Owner.Value == game.Players.LocalPlayer then
  1917. Plank:MoveTo(Square.Position)
  1918. for i=1,100 do
  1919. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Plank)
  1920. end
  1921. end
  1922. end
  1923. end
  1924. end
  1925. end)
  1926. end)
  1927. inc=inc+1
  1928. end
  1929. inc=0
  1930. end
  1931.  
  1932. TpAllPlanks.MouseButton1Click:Connect(function()
  1933. for _, Plank in pairs(game.Workspace.PlayerModels:GetChildren()) do
  1934. if Plank.Name=="Plank" and Plank:findFirstChild("Owner") then
  1935. if Plank.Owner.Value == game.Players.LocalPlayer then
  1936. sendNotice = game.ReplicatedStorage.Notices.SendUserNotice
  1937. sendNotice:Fire("Click where you want ALL the Planks to TP to")
  1938. local ButtonPress
  1939. ButtonPress = game.Players.LocalPlayer:GetMouse().Button1Down:Connect(function()
  1940. Square = game.Players.LocalPlayer:GetMouse().Target
  1941. if (Square.Name == "OriginSquare" or Square.Name == "Square") then
  1942. ButtonPress:Disconnect()
  1943. Plank:MoveTo(Square.Position)
  1944. for i=1,100 do
  1945. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Plank)
  1946. end
  1947. end
  1948. end)
  1949. end
  1950. end
  1951. end
  1952. end)
  1953.  
  1954. if not checkplanks then
  1955. UpdateMovePlanks()
  1956. end
  1957.  
  1958. game.Workspace.PlayerModels.ChildAdded:connect(function(Item)
  1959. if Item:FindFirstChild("Owner") and Item.Owner.Value == game.Players.LocalPlayer and Item:FindFirstChild("TreeClass") then
  1960. UpdateMovePlanks()
  1961. end
  1962. end)
  1963.  
  1964. game.Workspace.PlayerModels.ChildRemoved:connect(function(Item)
  1965. if Item:FindFirstChild("Owner") and Item.Owner.Value == game.Players.LocalPlayer and Item:FindFirstChild("TreeClass") then
  1966. UpdateMovePlanks()
  1967. end
  1968. end)
  1969.  
  1970. --- GuiInfo ---
  1971.  
  1972. GuiLabel.MouseButton1Down:connect(function()
  1973. if Lt2Info == "Info" then
  1974. Lt2Info = "Nothing"
  1975. GuiLabel.TextColor3 = Color3.new(1, 0, 1)
  1976. GuiLabel.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1977. MenuLeftFrame.Active = true
  1978. MenuLeftFrame.Selectable = true
  1979. else
  1980. Lt2Info = "Info"
  1981. GuiLabel.TextColor3 = Color3.new(0, 1, 0)
  1982. GuiLabel.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1983. MenuLeftFrame.Active = false
  1984. MenuLeftFrame.Selectable = false
  1985. end
  1986. end)
  1987.  
  1988. --- BringTreeInfo ---
  1989.  
  1990. BringTreeInfo1.MouseButton1Down:connect(function()
  1991. if BringTreeInfo1.Text == "Info" then
  1992. BringTreeInfo1.Text = "Close Info"
  1993. BringTreeInfo2.Visible = true
  1994. else
  1995. BringTreeInfo1.Text = "Info"
  1996. BringTreeInfo2.Visible = false
  1997. end
  1998. end)
  1999.  
  2000. --- Walkspeed/JumpPower ---
  2001.  
  2002. player = game.Players.LocalPlayer
  2003. Walk = 16
  2004. Jump = 50
  2005.  
  2006. WalkSpeed.MouseButton1Down:connect(function()
  2007. Walk = WalkText.Text
  2008. end)
  2009. JumpPower.MouseButton1Down:connect(function()
  2010. Jump = JumpText.Text
  2011. end)
  2012.  
  2013. player.Character.Humanoid.JumpPower = Jump
  2014. player.Character.Humanoid.WalkSpeed = Walk
  2015.  
  2016. player.Character.Humanoid.Changed:connect(function()
  2017. player.Character.Humanoid.JumpPower = Jump
  2018. player.Character.Humanoid.WalkSpeed = Walk
  2019. end)
  2020.  
  2021. --- Gold Axe ---
  2022.  
  2023. GoldAxeStart.MouseButton1Down:Connect(function()
  2024. GoldAxe.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2025. GoldAxeStart.Text = "Active"
  2026. Detect = coroutine.wrap(function()
  2027. Player = game.Players.LocalPlayer
  2028. mouse = Player:GetMouse()
  2029. mouse.Button1Down:connect(function()
  2030. MouseDown = true
  2031. end)
  2032. mouse.Button1Up:connect(function()
  2033. MouseDown = false
  2034. end)
  2035. end)
  2036. Detect()
  2037. Player = game.Players.LocalPlayer
  2038. mouse = Player:GetMouse()
  2039. game:GetService('RunService').RenderStepped:connect(function()
  2040. if Player.Character:FindFirstChild("Tool") then
  2041. if MouseDown == true then
  2042. if mouse.Target.Name == "WoodSection" then
  2043. targetWood = mouse.Target
  2044. Tool=Player.Character.Tool
  2045. ---FaceVector
  2046. Height = targetWood.CFrame:pointToObjectSpace(mouse.Hit.p).Y + targetWood.Size.Y/2
  2047. 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)
  2048. part,_,p = workspace:FindPartOnRay(ray, Player.Character)
  2049. function fixVector(V)
  2050. return Vector3.new(math.floor(V.X + 0.5), math.floor(V.Y + 0.5), math.floor(V.Z + 0.5))
  2051. end
  2052. local faceVector = fixVector(targetWood.CFrame:vectorToObjectSpace(p))
  2053. if faceVector.Y ~= 0 then
  2054. return
  2055. end
  2056. local lookAtCFrame = CFrame.new(Player.Character.Head.Position, mouse.Hit.p)
  2057. local relativeCFrame = lookAtCFrame:toObjectSpace(targetWood.CFrame * CFrame.Angles(math.pi/2, 0, 0))
  2058. local relativeLookVector = relativeCFrame.lookVector
  2059. local m = relativeLookVector.Y >= 0 and 1 or -1
  2060. if faceVector.X == 1 then
  2061. faceVector = Vector3.new(0, 0, -1) * m
  2062. elseif faceVector.X == -1 then
  2063. faceVector = Vector3.new(0, 0, 1) * m
  2064. elseif faceVector.Z == 1 then
  2065. faceVector = Vector3.new(1, 0, 0) * m
  2066. elseif faceVector.Z == -1 then
  2067. faceVector = Vector3.new(-1, 0, 0) * m
  2068. end
  2069. local cutEvent = targetWood.Parent.CutEvent
  2070. 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})
  2071. end
  2072. end
  2073. end
  2074. end)
  2075. end)
  2076.  
  2077. --- Show Current Location
  2078.  
  2079. ShowLocation.MouseButton1Down:connect(function()
  2080.  
  2081. function round(num, numDecimalPlaces)
  2082. local mult = 10^(numDecimalPlaces or 0)
  2083. return math.floor(num * mult + 0.5) / mult
  2084. end
  2085.  
  2086. LocationX = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.x, 1)
  2087. LocationY = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.y, 1)
  2088. LocationZ = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.z, 1)
  2089. ShowLocation.Text = "Current/Set Location\n"..LocationX..", "..LocationY..", "..LocationZ
  2090. CustomTPPoint.Text = "TP to "..LocationX..", "..LocationY..", "..LocationZ
  2091. CustomLocationSet = true
  2092. end)
  2093.  
  2094. --- TP to custom location ---
  2095.  
  2096. CustomTPPoint.MouseButton1Down:connect(function()
  2097. if CustomLocationSet == true then
  2098. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2099. uTorso.CFrame = CFrame.new(LocationX, LocationY, LocationZ)
  2100. end
  2101. end)
  2102.  
  2103. --- Player Tp ---
  2104.  
  2105. local buttons = {
  2106. Player1,
  2107. Player2,
  2108. Player3,
  2109. Player4,
  2110. Player5,
  2111. Player6
  2112. }
  2113. spawn(function()
  2114. while true do
  2115. Player1.Text = ""
  2116. Player2.Text = ""
  2117. Player3.Text = ""
  2118. Player4.Text = ""
  2119. Player5.Text = ""
  2120. Player6.Text = ""
  2121. for i, v in pairs(game.Players:GetChildren()) do
  2122. buttons[i].Text = v.Name
  2123. buttons[i].Visible = true
  2124. end
  2125. wait(0.5)
  2126. end
  2127. end)
  2128.  
  2129. Player1.MouseButton1Down:connect(function()
  2130. PlyrSel.Text = Player1.Text
  2131. end)
  2132. Player2.MouseButton1Down:connect(function()
  2133. PlyrSel.Text = Player2.Text
  2134. end)
  2135. Player3.MouseButton1Down:connect(function()
  2136. PlyrSel.Text = Player3.Text
  2137. end)
  2138. Player4.MouseButton1Down:connect(function()
  2139. PlyrSel.Text = Player4.Text
  2140. end)
  2141. Player5.MouseButton1Down:connect(function()
  2142. PlyrSel.Text = Player5.Text
  2143. end)
  2144. Player6.MouseButton1Down:connect(function()
  2145. PlyrSel.Text = Player6.Text
  2146. end)
  2147.  
  2148. TpPlayer.MouseButton1Down:connect(function()
  2149. if PlyrSel.Text == "SELECT A PLAYER" then
  2150. warn("No Player Selected")
  2151. else
  2152. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace[PlyrSel.Text].HumanoidRootPart.CFrame
  2153. end
  2154. end)
  2155. TpBase.MouseButton1Down:connect(function()
  2156. for i, v in pairs(game.Workspace.Properties:GetChildren()) do
  2157. if v.Owner.Value == game.Players[PlyrSel.Text] then
  2158. local p= CFrame.new(v.OriginSquare.CFrame.x, v.OriginSquare.CFrame.y +3.5, v.OriginSquare.CFrame.z)
  2159. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = p
  2160. end
  2161. end
  2162. end)
  2163.  
  2164. --- NoClip ---
  2165.  
  2166. noclip = false
  2167. game:GetService('RunService').Stepped:connect(function()
  2168. if noclip then
  2169. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  2170. end
  2171. end)
  2172. NoClip.MouseButton1Down:connect(function()
  2173. noclip = not noclip
  2174. if NoClip.Text == "Enable NoClip" then
  2175. NoClip.Text = "Disable NoClip"
  2176. NoClip.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2177. else
  2178. NoClip.Text = "Enable NoClip"
  2179. NoClip.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2180. end
  2181. end)
  2182.  
  2183. --- Waypoints ---
  2184.  
  2185. local WayPoints = {
  2186. ["Wood R Us"] = CFrame.new(265, 5, 57),
  2187. ["SpawnPoint"] = CFrame.new(155, 5, 74),
  2188. ["Land Store"] = CFrame.new(258, 5, -99),
  2189. ["Link's Logic"] = CFrame.new(4607, 9, -798),
  2190. ["Cave"] = CFrame.new(3581, -177, 430),
  2191. ["Volcano"] = CFrame.new(-1585, 625, 1140),
  2192. ["Swamp"] = CFrame.new(-1209, 138, -801),
  2193. ["Palm Island"] = CFrame.new(2549, 5, -42),
  2194. ["Fancy Furnishings"] = CFrame.new(491, 13, -1720),
  2195. ["Boxed Cars"] = CFrame.new(509, 5.2, -1463),
  2196. ["Fine Arts Shop"] = CFrame.new(5207, -156, 719),
  2197. ["Bob's Shack"] = CFrame.new(260, 10, -2542),
  2198. ["Dock"] = CFrame.new(1114, 3.2, -197),
  2199. ["Bridge"] = CFrame.new(113, 15, -977),
  2200. ["End Times"] = CFrame.new(113, -204, -951),
  2201. ["Shrine Of Sight"] = CFrame.new(-1600, 205, 919),
  2202. ["The Den"] = CFrame.new(323, 49, 1930),
  2203. ["Volcano Win"] = CFrame.new(-1675, 358, 1476),
  2204. ["Ski Lodge"] = CFrame.new(1244, 66, 2306),
  2205. ["Strange Man"] = CFrame.new(1061, 20, 1131)
  2206. }
  2207.  
  2208. WoodRUs.MouseButton1Down:connect(function()
  2209. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2210. uTorso.CFrame = WayPoints["Wood R Us"]
  2211. end)
  2212.  
  2213. SpawnPoint.MouseButton1Down:connect(function()
  2214. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2215. uTorso.CFrame = WayPoints["SpawnPoint"]
  2216. end)
  2217.  
  2218. LandStore.MouseButton1Down:connect(function()
  2219. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2220. uTorso.CFrame = WayPoints["Land Store"]
  2221. end)
  2222.  
  2223. LinksLogic.MouseButton1Down:connect(function()
  2224. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2225. uTorso.CFrame = WayPoints["Link's Logic"]
  2226. end)
  2227.  
  2228. Cave.MouseButton1Down:connect(function()
  2229. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2230. uTorso.CFrame = WayPoints["Cave"]
  2231. end)
  2232.  
  2233. Volcano.MouseButton1Down:connect(function()
  2234. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2235. uTorso.CFrame = WayPoints["Volcano"]
  2236. end)
  2237.  
  2238. Swamp.MouseButton1Down:connect(function()
  2239. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2240. uTorso.CFrame = WayPoints["Swamp"]
  2241. end)
  2242.  
  2243. PalmIsland.MouseButton1Down:connect(function()
  2244. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2245. uTorso.CFrame = WayPoints["Palm Island"]
  2246. end)
  2247.  
  2248. FancyFurnishings.MouseButton1Down:connect(function()
  2249. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2250. uTorso.CFrame = WayPoints["Fancy Furnishings"]
  2251. end)
  2252.  
  2253. BoxedCars.MouseButton1Down:connect(function()
  2254. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2255. uTorso.CFrame = WayPoints["Boxed Cars"]
  2256. end)
  2257.  
  2258. FineArtsShop.MouseButton1Down:connect(function()
  2259. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2260. uTorso.CFrame = WayPoints["Fine Arts Shop"]
  2261. end)
  2262.  
  2263. BobsShack.MouseButton1Down:connect(function()
  2264. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2265. uTorso.CFrame = WayPoints["Bob's Shack"]
  2266. end)
  2267.  
  2268. Dock.MouseButton1Down:connect(function()
  2269. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2270. uTorso.CFrame = WayPoints["Dock"]
  2271. end)
  2272.  
  2273. Bridge.MouseButton1Down:connect(function()
  2274. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2275. uTorso.CFrame = WayPoints["Bridge"]
  2276. end)
  2277.  
  2278. EndTimes.MouseButton1Down:connect(function()
  2279. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2280. uTorso.CFrame = WayPoints["End Times"]
  2281. end)
  2282.  
  2283. ShrineOfSight.MouseButton1Down:connect(function()
  2284. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2285. uTorso.CFrame = WayPoints["Shrine Of Sight"]
  2286. end)
  2287.  
  2288. TheDen.MouseButton1Down:connect(function()
  2289. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2290. uTorso.CFrame = WayPoints["The Den"]
  2291. end)
  2292.  
  2293. VolcanoWin.MouseButton1Down:connect(function()
  2294. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2295. uTorso.CFrame = WayPoints["Volcano Win"]
  2296. end)
  2297.  
  2298. SkiLodge.MouseButton1Down:connect(function()
  2299. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2300. uTorso.CFrame = WayPoints["Ski Lodge"]
  2301. end)
  2302.  
  2303. StrangeMan.MouseButton1Down:connect(function()
  2304. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2305. uTorso.CFrame = WayPoints["Strange Man"]
  2306. end)
  2307.  
  2308. --- Make Greywood ---
  2309.  
  2310. GreywoodStart.MouseButton1Down:Connect(function()
  2311. if GreyStart == "Nothing" then
  2312. GreyStart = "On"
  2313. GreywoodStart.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2314. GreywoodStart.Text = "Stop"
  2315. for i,v in next,workspace.PlayerModels:GetChildren() do
  2316. if v:FindFirstChild("Type") then
  2317. if v.Type.Value == "Blueprint" then
  2318. v.Type.Value = "Structure"
  2319. end
  2320. end
  2321. end
  2322. else
  2323. GreyStart = "Nothing"
  2324. GreywoodStart.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2325. GreywoodStart.Text = "Start"
  2326. for i,v in next,workspace.PlayerModels:GetChildren() do
  2327. if v:FindFirstChild("Type") then
  2328. if v.Type.Value == "Structure" then
  2329. v.Type.Value = "Blueprint"
  2330. end
  2331. end
  2332. end
  2333. end
  2334. end)
  2335.  
  2336. --- Anti AFK ---
  2337.  
  2338. AntiAFK.MouseButton1Down:Connect(function()
  2339. if afkactive == true then
  2340. afkactive = false
  2341. AntiAFK.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2342. AntiAFK.Text = "Start Anti-AFK Mode"
  2343. elseif afkactive == false then
  2344. afkactive = true
  2345. AntiAFK.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2346. AntiAFK.Text = "Stop Anti-AFK Mode"
  2347.  
  2348. logtime = coroutine.wrap(function()
  2349. afktotaltime=0
  2350. while afkactive == true do
  2351. wait(1)
  2352. afktotaltime=afktotaltime+1
  2353. AntiAFKtime.Text = "AFK for: "..afktotaltime.." Seconds"
  2354. end
  2355. end)
  2356.  
  2357. messageBot = coroutine.wrap(function()
  2358. while afkactive == true do
  2359. wait(300)
  2360. possiblechats = {"afk", "Away from keyboard", "I'm AFK"}
  2361. decide=math.random(1,#possiblechats)
  2362. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(possiblechats[decide], "All")
  2363. game.Players:Chat("/e point")
  2364. end
  2365. end)
  2366.  
  2367. moveChar = coroutine.wrap(function()
  2368. plr = game:service'Players'.LocalPlayer
  2369. char = plr.Character
  2370. hum = char:FindFirstChildOfClass'Humanoid'
  2371. while afkactive==true do
  2372. wait(1)
  2373. hum:Move(Vector3.new(1, 0, 0), false)
  2374. wait(1)
  2375. hum:Move(Vector3.new(-1, 0, 0), false)
  2376. wait(1)
  2377. hum:Move(Vector3.new(1, 0, 0), false)
  2378. wait(1)
  2379. hum:Move(Vector3.new(-1, 0, 0), false)
  2380. wait(1)
  2381. hum:Move(Vector3.new(0, 1, 0), false)
  2382. wait(1)
  2383. hum:Move(Vector3.new(0, 1, 0), false)
  2384. wait(60)
  2385. end
  2386. end)
  2387.  
  2388. logtime()
  2389. moveChar()
  2390. messageBot()
  2391. end
  2392. end)
  2393.  
  2394. --- Plot Tp ---
  2395.  
  2396. PlotTp.MouseButton1Down:connect(function()
  2397. for i,v in pairs(game.Workspace.Properties:GetChildren()) do
  2398. if v.Owner.Value == game.Players.LocalPlayer then
  2399. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.OriginSquare.CFrame + Vector3.new(0,10,0)
  2400. end
  2401. end
  2402. end)
  2403.  
  2404. ---TP Wood ---
  2405.  
  2406. TPWood.MouseButton1Click:Connect(function()
  2407. for _, Log in pairs(service.Workspace.LogModels:GetChildren()) do
  2408. if Log.Name:sub(1, 6) == "Loose_" and Log:findFirstChild("Owner") then
  2409. if Log.Owner.Value == service.Players.LocalPlayer then
  2410. Log:MoveTo(service.Players.LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0, 20, 0))
  2411. for i=1,100 do
  2412. service.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Log)
  2413. end
  2414. end
  2415. end
  2416. end
  2417. end)
  2418.  
  2419. --- Sell Wood ---
  2420.  
  2421. SellWood.MouseButton1Click:Connect(function()
  2422. for _, Log in pairs(service.Workspace.LogModels:GetChildren()) do
  2423. if Log.Name:sub(1, 6) == "Loose_" and Log:findFirstChild("Owner") then
  2424. if Log.Owner.Value == service.Players.LocalPlayer then
  2425. for i,v in pairs(Log:GetChildren()) do
  2426. if v.Name=="WoodSection" then
  2427. spawn(function()
  2428. for i=1,10 do
  2429. wait()
  2430. v.CFrame=CFrame.new(Vector3.new(315, -0.296, 85.791))*CFrame.Angles(math.rad(90),0,0)
  2431. end
  2432. end)
  2433. end
  2434. end
  2435. spawn(function()
  2436. for i=1,20 do
  2437. wait()
  2438. service.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Log)
  2439. end
  2440. end)
  2441. end
  2442. end
  2443. end
  2444. end)
  2445.  
  2446. --- Sell Planks ---
  2447.  
  2448. SellPlanks.MouseButton1Click:Connect(function()
  2449. for _, Plank in pairs(service.Workspace.PlayerModels:GetChildren()) do
  2450. if Plank.Name=="Plank" and Plank:findFirstChild("Owner") then
  2451. if Plank.Owner.Value == service.Players.LocalPlayer then
  2452. for i,v in pairs(Plank:GetChildren()) do
  2453. if v.Name=="WoodSection" then
  2454. spawn(function()
  2455. for i=1,10 do
  2456. wait()
  2457. v.CFrame=CFrame.new(Vector3.new(315, -0.296, 85.791))*CFrame.Angles(math.rad(90),0,0)
  2458. end
  2459. end)
  2460. end
  2461. end
  2462. spawn(function()
  2463. for i=1,20 do
  2464. wait()
  2465. service.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Plank)
  2466. end
  2467. end)
  2468. end
  2469. end
  2470. end
  2471. end)
  2472.  
  2473. --- God Mode ---
  2474.  
  2475. GodMode.MouseButton1Click:Connect(function()
  2476. GodMode.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2477. game.Players.LocalPlayer.Character.Humanoid.Name = "1"
  2478. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  2479. l.Parent = game.Players.LocalPlayer.Character
  2480. l.Name = "Humanoid"
  2481. wait(0.1)
  2482. game.Players.LocalPlayer.Character["1"]:Destroy()
  2483. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  2484. game.Players.LocalPlayer.Character.Animate.Disabled = true
  2485. l.Changed:Connect(function()
  2486. if l then
  2487. l.WalkSpeed=Walk
  2488. l.JumpPower=Jump
  2489. end
  2490. end)
  2491. end)
  2492.  
  2493. --- Dupe ---
  2494.  
  2495. MoreInfo.MouseButton1Down:connect(function()
  2496. if MoreInfo.Text == "Info" then
  2497. MoreInfo.Text = "Close Info"
  2498. Info.Visible = true
  2499. else
  2500. MoreInfo.Text = "Info"
  2501. Info.Visible = false
  2502. end
  2503. end)
  2504.  
  2505. Option = false
  2506.  
  2507. Dupe.MouseButton1Down:connect(function()
  2508. plr = game:GetService("Players").LocalPlayer
  2509. slot = plr.CurrentSaveSlot
  2510. if Option == false then
  2511. if slot.Value == -1 then
  2512. Option = true
  2513. slot.RobloxLocked = true
  2514. Duper.Text = "Duping Active"
  2515. Duper.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2516. Duper.TextColor3 = Color3.new(1, 1, 1)
  2517. Dupe.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2518. Dupe.TextColor3 = Color3.new(1, 1, 1)
  2519. Dupe.Text = "Duping"
  2520. 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)."
  2521. end
  2522. else
  2523. Option = false
  2524. slot.RobloxLocked = false
  2525. Duper.Text = "Item Duping"
  2526. Duper.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2527. Duper.TextColor3 = Color3.new(1, 1, 1)
  2528. Dupe.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2529. Dupe.TextColor3 = Color3.new(1, 1, 1)
  2530. Dupe.Text = "Dupe"
  2531. DupingText1.Text = "Loaded Slot Will Save"
  2532. end
  2533. end)
  2534.  
  2535. --- Water Walk ---
  2536.  
  2537. WaterCollide.MouseButton1Down:connect(function()
  2538. if WCollide == "Nothing" then
  2539. WCollide = "On"
  2540. WaterCollide.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2541. WaterCollide.Text = "Water is Solid"
  2542. for i,v in pairs(game.Workspace.Water:GetChildren()) do
  2543. if v:IsA("Part") then
  2544. v.CanCollide = true
  2545. end
  2546. end
  2547. else
  2548. WCollide = "Nothing"
  2549. WaterCollide.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2550. WaterCollide.Text = "Walk on Water"
  2551. for i,v in pairs(game.Workspace.Water:GetChildren()) do
  2552. if v:IsA("Part") then
  2553. v.CanCollide = false
  2554. end
  2555. end
  2556. end
  2557. end)
  2558.  
  2559. --- BTools ---
  2560.  
  2561. CopyTool.MouseButton1Down:connect(function()
  2562. if BTool == "Copy" then
  2563. BTool = "Nothing"
  2564. CopyTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2565. else
  2566. BTool = "Copy"
  2567. CopyTool.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2568. DeleteTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2569. MoveTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2570. end
  2571. end)
  2572.  
  2573. DeleteTool.MouseButton1Down:connect(function()
  2574. if BTool == "Delete" then
  2575. BTool = "Nothing"
  2576. DeleteTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2577. else
  2578. BTool = "Delete"
  2579. DeleteTool.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2580. CopyTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2581. MoveTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2582. end
  2583. end)
  2584.  
  2585. MoveTool.MouseButton1Down:connect(function()
  2586. if BTool == "Move" then
  2587. BTool = "Nothing"
  2588. MoveTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2589. else
  2590. BTool = "Move"
  2591. MoveTool.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2592. CopyTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2593. DeleteTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2594. end
  2595. end)
  2596.  
  2597. Mouse.Button1Up:connect(function()
  2598. MDown = false
  2599. end)
  2600.  
  2601. Mouse.Button1Down:connect(function()
  2602. MDown = true
  2603. if BTool == "Copy" then
  2604. if Mouse.Target ~= nil then
  2605. Clone = Mouse.Target:clone()
  2606. Clone.Parent = game.Workspace
  2607. end
  2608. end
  2609.  
  2610. if BTool == "Delete" then
  2611. if Mouse.Target ~= nil then
  2612. Mouse.Target:remove()
  2613. end
  2614. end
  2615.  
  2616. if BTool == "Move" then
  2617. if Mouse.Target ~= nil then
  2618. MoveObject = Mouse.Target
  2619. end
  2620. end
  2621.  
  2622. wait()
  2623. if Clone ~= nil then
  2624. Clone.CanCollide = false
  2625. repeat
  2626. wait()
  2627. SubX = Clone.Size.X/2
  2628. SubY = Clone.Size.Y/2
  2629. SubZ = Clone.Size.Z/2
  2630. Clone.Position = Vector3.new(Mouse.Hit.X - SubX, Mouse.Hit.Y - SubY, Mouse.Hit.Z - SubZ)
  2631. until MDown == false
  2632. Clone.CanCollide = true
  2633. Clone.Position = Clone.Position + Vector3.new(SubX, SubY, SubZ)
  2634. Clone = nil
  2635. end
  2636.  
  2637. if MoveObject ~= nil then
  2638. MoveObject.CanCollide = false
  2639. repeat
  2640. wait()
  2641. SubX = MoveObject.Size.X/2
  2642. SubY = MoveObject.Size.Y/2
  2643. SubZ = MoveObject.Size.Z/2
  2644. MoveObject.Position = Vector3.new(Mouse.Hit.X - SubX, Mouse.Hit.Y - SubY, Mouse.Hit.Z - SubZ)
  2645. until MDown == false
  2646. MoveObject.CanCollide = true
  2647. MoveObject.Position = MoveObject.Position + Vector3.new(SubX, SubY, SubZ)
  2648. MoveObject= nil
  2649. end
  2650. end)
  2651.  
  2652. --- TP Tool ---
  2653.  
  2654. TPTool.MouseButton1Down:connect(function()
  2655. local Tele = Instance.new("Tool", game.Players.LocalPlayer.Backpack)
  2656. Tele.RequiresHandle = false
  2657. Tele.RobloxLocked = true
  2658. Tele.Name = "TPTool"
  2659. Tele.ToolTip = "Teleport Tool"
  2660. Tele.Equipped:connect(function(Mouse)
  2661. Mouse.Button1Down:connect(function()
  2662. if Mouse.Target then
  2663. game.Workspace:FindFirstChild(game.Players.LocalPlayer.Name).HumanoidRootPart.CFrame = (CFrame.new(Mouse.Hit.x, Mouse.Hit.y + 5, Mouse.Hit.z))
  2664. end
  2665. end)
  2666. end)
  2667. end)
  2668.  
  2669. --- Departure ---
  2670.  
  2671. game.Workspace.Ferry.TimeToDeparture.Changed:connect(function()
  2672. Depart.Text = "Ferry Departs: ".. game.Workspace.Ferry.TimeToDeparture.Value
  2673. if Depart.Text == "Ferry Departs: 0" then
  2674. wait(6)
  2675. Depart.Text = "Ferry has Departed"
  2676. else
  2677. Depart.Text = "Ferry Departs: ".. game.Workspace.Ferry.TimeToDeparture.Value
  2678. end
  2679. end)
  2680.  
  2681. --- Spawn Tree ---
  2682.  
  2683. function bringtree(telewoodtype)
  2684. local Wood = {
  2685. "Cherry",
  2686. "Palm",
  2687. "CaveCrawler",
  2688. "Generic",
  2689. "Spooky",
  2690. "Fir",
  2691. "GreenSwampy",
  2692. "Oak",
  2693. "Birch",
  2694. "Volcano",
  2695. "LoneCave",
  2696. "GoldSwampy",
  2697. "Koa",
  2698. "Walnut"
  2699. }
  2700.  
  2701. local NewRegionNames = {}
  2702.  
  2703. --Name Changer For Seperating What Is What
  2704.  
  2705. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2706. if l.Name == "TreeRegion" then
  2707. if l ~= nil then
  2708. for i, b in pairs(l:GetChildren()) do
  2709. if b:IsA("Model") then
  2710. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[1] then
  2711. l.Name = Wood[1]
  2712. warn("TreeRegion #1 Has Been Changed To: "..Wood[1])
  2713. table.insert(NewRegionNames, l.Name)
  2714. end
  2715. end
  2716. end
  2717. end
  2718. end
  2719. end
  2720.  
  2721. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2722. if l.Name == "TreeRegion" then
  2723. if l ~= nil then
  2724. for i, b in pairs(l:GetChildren()) do
  2725. if b:IsA("Model") then
  2726. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[2] then
  2727. l.Name = Wood[2]
  2728. warn("TreeRegion #2 Has Been Changed To: "..Wood[2])
  2729. table.insert(NewRegionNames, l.Name)
  2730. end
  2731. end
  2732. end
  2733. end
  2734. end
  2735. end
  2736.  
  2737. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2738. if l.Name == "TreeRegion" then
  2739. if l ~= nil then
  2740. for i, b in pairs(l:GetChildren()) do
  2741. if b:IsA("Model") then
  2742. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[3] then
  2743. l.Name = Wood[3]
  2744. warn("TreeRegion #3 Has Been Changed To: "..Wood[3])
  2745. table.insert(NewRegionNames, l.Name)
  2746. end
  2747. end
  2748. end
  2749. end
  2750. end
  2751. end
  2752.  
  2753. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2754. if l.Name == "TreeRegion" then
  2755. if l ~= nil then
  2756. for i, b in pairs(l:GetChildren()) do
  2757. if b:IsA("Model") then
  2758. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[4] then
  2759. l.Name = Wood[4]
  2760. warn("TreeRegion #4 Has Been Changed To: "..Wood[4])
  2761. table.insert(NewRegionNames, l.Name)
  2762. end
  2763. end
  2764. end
  2765. end
  2766. end
  2767. end
  2768.  
  2769. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2770. if l.Name == "TreeRegion" then
  2771. if l ~= nil then
  2772. for i, b in pairs(l:GetChildren()) do
  2773. if b:IsA("Model") then
  2774. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[5] then
  2775. l.Name = Wood[5]
  2776. warn("TreeRegion #5 Has Been Changed To: "..Wood[5])
  2777. table.insert(NewRegionNames, l.Name)
  2778. end
  2779. end
  2780. end
  2781. end
  2782. end
  2783. end
  2784.  
  2785. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2786. if l.Name == "TreeRegion" then
  2787. if l ~= nil then
  2788. for i, b in pairs(l:GetChildren()) do
  2789. if b:IsA("Model") then
  2790. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[6] then
  2791. l.Name = Wood[6]
  2792. warn("TreeRegion #6 Has Been Changed To: "..Wood[6])
  2793. table.insert(NewRegionNames, l.Name)
  2794. end
  2795. end
  2796. end
  2797. end
  2798. end
  2799. end
  2800.  
  2801. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2802. if l.Name == "TreeRegion" then
  2803. if l ~= nil then
  2804. for i, b in pairs(l:GetChildren()) do
  2805. if b:IsA("Model") then
  2806. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[7] then
  2807. l.Name = Wood[7]
  2808. warn("TreeRegion #7 Has Been Changed To: "..Wood[7])
  2809. table.insert(NewRegionNames, l.Name)
  2810. end
  2811. end
  2812. end
  2813. end
  2814. end
  2815. end
  2816.  
  2817. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2818. if l.Name == "TreeRegion" then
  2819. if l ~= nil then
  2820. for i, b in pairs(l:GetChildren()) do
  2821. if b:IsA("Model") then
  2822. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[8] then
  2823. l.Name = Wood[8]
  2824. warn("TreeRegion #8 Has Been Changed To: "..Wood[8])
  2825. table.insert(NewRegionNames, l.Name)
  2826. end
  2827. end
  2828. end
  2829. end
  2830. end
  2831. end
  2832.  
  2833. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2834. if l.Name == "TreeRegion" then
  2835. if l ~= nil then
  2836. for i, b in pairs(l:GetChildren()) do
  2837. if b:IsA("Model") then
  2838. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[9] then
  2839. l.Name = Wood[9]
  2840. warn("TreeRegion #9 Has Been Changed To: "..Wood[9])
  2841. table.insert(NewRegionNames, l.Name)
  2842. end
  2843. end
  2844. end
  2845. end
  2846. end
  2847. end
  2848.  
  2849. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2850. if l.Name == "TreeRegion" then
  2851. if l ~= nil then
  2852. for i, b in pairs(l:GetChildren()) do
  2853. if b:IsA("Model") then
  2854. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[10] then
  2855. l.Name = Wood[10]
  2856. warn("TreeRegion #10 Has Been Changed To: "..Wood[10])
  2857. table.insert(NewRegionNames, l.Name)
  2858. end
  2859. end
  2860. end
  2861. end
  2862. end
  2863. end
  2864.  
  2865. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2866. if l.Name == "TreeRegion" then
  2867. if l ~= nil then
  2868. for i, b in pairs(l:GetChildren()) do
  2869. if b:IsA("Model") then
  2870. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[11] then
  2871. l.Name = Wood[11]
  2872. warn("TreeRegion #11 Has Been Changed To: "..Wood[11])
  2873. table.insert(NewRegionNames, l.Name)
  2874. end
  2875. end
  2876. end
  2877. end
  2878. end
  2879. end
  2880.  
  2881. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2882. if l.Name == "TreeRegion" then
  2883. if l ~= nil then
  2884. for i, b in pairs(l:GetChildren()) do
  2885. if b:IsA("Model") then
  2886. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[12] then
  2887. l.Name = Wood[12]
  2888. warn("TreeRegion #12 Has Been Changed To: "..Wood[12])
  2889. table.insert(NewRegionNames, l.Name)
  2890. end
  2891. end
  2892. end
  2893. end
  2894. end
  2895. end
  2896.  
  2897. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2898. if l.Name == "TreeRegion" then
  2899. if l ~= nil then
  2900. for i, b in pairs(l:GetChildren()) do
  2901. if b:IsA("Model") then
  2902. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[13] then
  2903. l.Name = Wood[13]
  2904. warn("TreeRegion #13 Has Been Changed To: "..Wood[13])
  2905. table.insert(NewRegionNames, l.Name)
  2906. end
  2907. end
  2908. end
  2909. end
  2910. end
  2911. end
  2912.  
  2913. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2914. if l.Name == "TreeRegion" then
  2915. if l ~= nil then
  2916. for i, b in pairs(l:GetChildren()) do
  2917. if b:IsA("Model") then
  2918. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[14] then
  2919. l.Name = Wood[14]
  2920. warn("TreeRegion #14 Has Been Changed To: "..Wood[14])
  2921. table.insert(NewRegionNames, l.Name)
  2922. end
  2923. end
  2924. end
  2925. end
  2926. end
  2927. end
  2928.  
  2929. --Names Checker
  2930.  
  2931. for i, v in pairs(game:GetService("Workspace"):GetChildren()) do
  2932. print(v.Name)
  2933. end
  2934.  
  2935. --Teleporter
  2936.  
  2937. if telewoodtype == Wood[1] then
  2938. for i, v in pairs(game:GetService("Workspace")[Wood[1]]:GetChildren()) do
  2939. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[1] then
  2940. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  2941. end
  2942. end
  2943. end
  2944.  
  2945. if telewoodtype == Wood[2] then
  2946. for i, v in pairs(game:GetService("Workspace")[Wood[2]]:GetChildren()) do
  2947. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[2] then
  2948. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  2949. end
  2950. end
  2951. end
  2952.  
  2953. if telewoodtype == Wood[3] then
  2954. for i, v in pairs(game:GetService("Workspace")[Wood[3]]:GetChildren()) do
  2955. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[3] then
  2956. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  2957. end
  2958. end
  2959. end
  2960.  
  2961. if telewoodtype == Wood[4] then
  2962. for i, v in pairs(game:GetService("Workspace")[Wood[4]]:GetChildren()) do
  2963. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[4] then
  2964. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  2965. end
  2966. end
  2967. end
  2968.  
  2969. if telewoodtype == Wood[5] then
  2970. for i, v in pairs(game:GetService("Workspace")[Wood[5]]:GetChildren()) do
  2971. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[5] then
  2972. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  2973. end
  2974. end
  2975. end
  2976.  
  2977. if telewoodtype == Wood[6] then
  2978. for i, v in pairs(game:GetService("Workspace")[Wood[6]]:GetChildren()) do
  2979. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[6] then
  2980. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  2981. end
  2982. end
  2983. end
  2984.  
  2985. if telewoodtype == Wood[7] then
  2986. for i, v in pairs(game:GetService("Workspace")[Wood[7]]:GetChildren()) do
  2987. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[7] then
  2988. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  2989. end
  2990. end
  2991. end
  2992.  
  2993. if telewoodtype == Wood[8] then
  2994. for i, v in pairs(game:GetService("Workspace")[Wood[8]]:GetChildren()) do
  2995. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[8] then
  2996. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  2997. end
  2998. end
  2999. end
  3000.  
  3001. if telewoodtype == Wood[9] then
  3002. for i, v in pairs(game:GetService("Workspace")[Wood[9]]:GetChildren()) do
  3003. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[9] then
  3004. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3005. end
  3006. end
  3007. end
  3008.  
  3009. if telewoodtype == Wood[10] then
  3010. for i, v in pairs(game:GetService("Workspace")[Wood[10]]:GetChildren()) do
  3011. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[10] then
  3012. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3013. end
  3014. end
  3015. end
  3016.  
  3017. if telewoodtype == Wood[11] then
  3018. for i, v in pairs(game:GetService("Workspace")[Wood[11]]:GetChildren()) do
  3019. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[11] then
  3020. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3021. end
  3022. end
  3023. end
  3024.  
  3025. if telewoodtype == Wood[12] then
  3026. for i, v in pairs(game:GetService("Workspace")[Wood[12]]:GetChildren()) do
  3027. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[12] then
  3028. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3029. end
  3030. end
  3031. end
  3032.  
  3033. if telewoodtype == Wood[13] then
  3034. for i, v in pairs(game:GetService("Workspace")[Wood[13]]:GetChildren()) do
  3035. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[13] then
  3036. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3037. end
  3038. end
  3039. end
  3040.  
  3041. if telewoodtype == Wood[14] then
  3042. for i, v in pairs(game:GetService("Workspace")[Wood[14]]:GetChildren()) do
  3043. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[14] then
  3044. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3045. end
  3046. end
  3047. end
  3048. end
  3049.  
  3050. OakTree.MouseButton1Down:Connect(function()
  3051. bringtree('Generic')
  3052. end)
  3053.  
  3054. CherryTree.MouseButton1Down:Connect(function()
  3055. bringtree('Cherry')
  3056. end)
  3057.  
  3058. PalmTree.MouseButton1Down:Connect(function()
  3059. bringtree('Palm')
  3060. end)
  3061.  
  3062. CaveCrawlerTree.MouseButton1Down:Connect(function()
  3063. bringtree('CaveCrawler')
  3064. end)
  3065.  
  3066. SpookyTree.MouseButton1Down:Connect(function()
  3067. bringtree('Spooky')
  3068. end)
  3069.  
  3070. FirTree.MouseButton1Down:Connect(function()
  3071. bringtree('Fir')
  3072. end)
  3073.  
  3074. GreenTree.MouseButton1Down:Connect(function()
  3075. bringtree('GreenSwampy')
  3076. end)
  3077.  
  3078. BirchTree.MouseButton1Down:Connect(function()
  3079. bringtree('Birch')
  3080. end)
  3081.  
  3082. VolcanoTree.MouseButton1Down:Connect(function()
  3083. bringtree('Volcano')
  3084. end)
  3085.  
  3086. EndTimesTree.MouseButton1Down:Connect(function()
  3087. bringtree('LoneCave')
  3088. end)
  3089.  
  3090. ElmTree.MouseButton1Down:Connect(function()
  3091. bringtree('Oak')
  3092. end)
  3093.  
  3094. KoaTree.MouseButton1Down:Connect(function()
  3095. bringtree('Koa')
  3096. end)
  3097.  
  3098. GoldTree.MouseButton1Down:Connect(function()
  3099. bringtree('GoldSwampy')
  3100. end)
  3101.  
  3102. WalnutTree.MouseButton1Down:Connect(function()
  3103. bringtree('Walnut')
  3104. end)
  3105.  
  3106. --- ReJoin Server ---
  3107.  
  3108. ReJoinServer.MouseButton1Down:connect(function()
  3109. local placeId = "13822889"
  3110. game:GetService("TeleportService"):Teleport(placeId)
  3111. end)
  3112.  
  3113. --- End ----- Lumber Tycoon 2 Gui Created by LuckyMMB @ V3rmillion.net
  3114. -- Discord https://discord.gg/GKzJnUC
  3115.  
  3116. --- Automatically Add players to Blacklist ---
  3117.  
  3118. Mouse = game.Players.LocalPlayer:GetMouse()
  3119.  
  3120. Client = game.ReplicatedStorage.Interaction.ClientSetListPlayer
  3121. players = game.Players
  3122. for i, v in pairs(players:GetPlayers()) do
  3123. if v.Name ~= players.LocalPlayer.Name then
  3124. Client:InvokeServer(players.LocalPlayer.BlacklistFolder, v, true)
  3125. end
  3126. end
  3127. players.PlayerAdded:connect(function(plr)
  3128. Client:InvokeServer(players.LocalPlayer.BlacklistFolder, plr, true)
  3129. end)
  3130.  
  3131. --- Fly ---
  3132.  
  3133. function fly()
  3134. for i,v in pairs(script:GetChildren()) do
  3135. pcall(function() v.Value = "" end)
  3136. game:GetService("Debris"):AddItem(v,.1)
  3137. end
  3138.  
  3139. function weld(p0,p1,c0,c1,par)
  3140. local w = Instance.new("Weld",p0 or par)
  3141. w.Part0 = p0
  3142. w.Part1 = p1
  3143. w.C0 = c0 or CFrame.new()
  3144. w.C1 = c1 or CFrame.new()
  3145. return w
  3146. end
  3147.  
  3148. local motors = {}
  3149.  
  3150. function motor(p0,p1,c0,c1,des,vel,par)
  3151. local w = Instance.new("Motor6D",p0 or par)
  3152. w.Part0 = p0
  3153. w.Part1 = p1
  3154. w.C0 = c0 or CFrame.new()
  3155. w.C1 = c1 or CFrame.new()
  3156. w.MaxVelocity = tonumber(vel) or .05
  3157. w.DesiredAngle = tonumber(des) or 0
  3158. return w
  3159. end
  3160.  
  3161. function lerp(a,b,c)
  3162. return a+(b-a)*c
  3163. end
  3164.  
  3165. function clerp(c1,c2,al)
  3166. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  3167. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  3168. for i,v in pairs(com1) do
  3169. com1[i] = lerp(v,com2[i],al)
  3170. end
  3171. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  3172. end
  3173.  
  3174. function ccomplerp(c1,c2,al)
  3175. local com1 = {c1:components()}
  3176. local com2 = {c2:components()}
  3177. for i,v in pairs(com1) do
  3178. com1[i] = lerp(v,com2[i],al)
  3179. end
  3180. return CFrame.new(unpack(com1))
  3181. end
  3182.  
  3183. function tickwave(time,length,offset)
  3184. return (math.abs((tick()+(offset or 0))%time-time/2)*2-time/2)/time/2*length
  3185. end
  3186.  
  3187. function invcol(c)
  3188. c = c.Color
  3189. return BrickColor.new(Color3.new(1-c.b,1-c.g,1-c.r))
  3190. end
  3191. local oc = oc or function(...) return ... end
  3192. local plr = game.Players.LocalPlayer
  3193. local char = plr.Character
  3194. local tor = char.Torso
  3195. local hum = char.Humanoid
  3196. hum.PlatformStand = false
  3197. pcall(function()
  3198. char.Wings:Destroy()
  3199. end)
  3200. pcall(function()
  3201. char.Angel:Destroy() -- hat
  3202. end)
  3203. local mod = Instance.new("Model",char)
  3204. mod.Name = "Wings"
  3205. local special = {
  3206. [game.Players.LocalPlayer.Name] = {"Black","Bright red",.5,0,false,Color3.new(1,0,0),Color3.new(0,0,0)},
  3207. }
  3208. local topcolor = BrickColor.new("Really black")
  3209. local feacolor = BrickColor.new("Black")
  3210. local ptrans = 0
  3211. local pref = 0
  3212. local fire = true
  3213. local fmcol = Color3.new()
  3214. local fscol = Color3.new()
  3215. local spec = special[plr.Name:lower()]
  3216. if spec then
  3217. 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]
  3218. end
  3219. local part = Instance.new("Part")
  3220. part.FormFactor = "Custom"
  3221. part.Size = Vector3.new(.2,.2,.2)
  3222. part.TopSurface,part.BottomSurface = 0,0
  3223. part.CanCollide = false
  3224. part.BrickColor = BrickColor.new("Black")
  3225. part.Transparency = ptrans
  3226. part.Reflectance = pref
  3227. local ef = Instance.new("Fire",fire and part or nil)
  3228. ef.Size = .15
  3229. ef.Color = BrickColor.new("Black").Color
  3230. ef.SecondaryColor = BrickColor.new("Bright red").Color
  3231. part:BreakJoints()
  3232. function newpart()
  3233. local clone = part:Clone()
  3234. clone.Parent = mod
  3235. clone:BreakJoints()
  3236. return clone
  3237. end
  3238. local feath = newpart()
  3239. feath.BrickColor = feacolor
  3240. feath.Transparency = 0
  3241. Instance.new("SpecialMesh",feath).MeshType = "Sphere"
  3242. function newfeather()
  3243. local clone = feath:Clone()
  3244. clone.Parent = mod
  3245. clone:BreakJoints()
  3246. return clone
  3247. end
  3248. flying = false
  3249. moving = false
  3250. for i,v in pairs(tor:GetChildren()) do
  3251. if v.ClassName:lower():match("body") then
  3252. v:Destroy()
  3253. end
  3254. end
  3255. local ctor = tor:Clone()
  3256. ctor:ClearAllChildren()
  3257. ctor.Name = "cTorso"
  3258. ctor.Transparency = 1
  3259. ctor.CanCollide = false
  3260. ctor.FormFactor = "Custom"
  3261. ctor.Size = Vector3.new(.2,.2,.2)
  3262. ctor.Parent = mod
  3263. weld(tor,ctor)
  3264. local bg = Instance.new("BodyGyro",ctor)
  3265. bg.maxTorque = Vector3.new()
  3266. bg.P = 15000
  3267. bg.D = 1000
  3268. local bv = Instance.new("BodyVelocity",ctor)
  3269. bv.maxForce = Vector3.new()
  3270. bv.P = 15000
  3271. vel = Vector3.new()
  3272. cf = CFrame.new()
  3273. flspd = 0
  3274. keysdown = {}
  3275. keypressed = {}
  3276. ktime = {}
  3277. descendtimer = 0
  3278. jumptime = tick()
  3279. hum.Jumping:connect(function()
  3280. jumptime = tick()
  3281. end)
  3282. cam = workspace.CurrentCamera
  3283. kd = plr:GetMouse().KeyDown:connect(oc(function(key)
  3284. keysdown[key] = true
  3285. keypressed[key] = true
  3286. if key == "q" then
  3287. descendtimer = tick()
  3288. elseif key == " " and not hum.Jump then
  3289. jumptime = tick()
  3290. elseif (key == "a" or key == "d") and ktime[key] and tick()-ktime[key] < .3 and math.abs(reqrotx) < .3 then
  3291. reqrotx = key == "a" and math.pi*2 or -math.pi*2
  3292. end
  3293. ktime[key] = tick()
  3294. end))
  3295.  
  3296. ku = plr:GetMouse().KeyUp:connect(function(key)
  3297. keysdown[key] = false
  3298. if key == " " then
  3299. descendtimer = tick()
  3300. end
  3301. end)
  3302. function mid(a,b,c)
  3303. return math.max(a,math.min(b,c or -a))
  3304. end
  3305. function bn(a)
  3306. return a and 1 or 0
  3307. end
  3308. function gm(tar)
  3309. local m = 0
  3310. for i,v in pairs(tar:GetChildren()) do
  3311. if v:IsA("BasePart") then
  3312. m = m + v:GetMass()
  3313. end
  3314. m = m + gm(v)
  3315. end
  3316. return m
  3317. end
  3318. reqrotx = 0
  3319. local grav = 196.2
  3320. local con
  3321. con = game:GetService("RunService").Stepped:connect(oc(function()
  3322. local obvel = tor.CFrame:vectorToObjectSpace(tor.Velocity)
  3323. local sspd, uspd,fspd = obvel.X,obvel.Y,obvel.Z
  3324. if flying then
  3325. local lfldir = fldir
  3326. fldir = cam.CoordinateFrame:vectorToWorldSpace(Vector3.new(bn(keysdown.d)-bn(keysdown.a),0,bn(keysdown.s)-bn(keysdown.w))).unit
  3327. local lmoving = moving
  3328. moving = fldir.magnitude > .1
  3329. if lmoving and not moving then
  3330. idledir = lfldir*Vector3.new(1,0,1)
  3331. descendtimer = tick()
  3332. end
  3333. local dbomb = fldir.Y < -.6 or (moving and keysdown["1"])
  3334. if moving and keysdown["0"] and lmoving then
  3335. fldir = (Vector3.new(lfldir.X,math.min(fldir.Y,lfldir.Y+.01)-.1,lfldir.Z)+(fldir*Vector3.new(1,0,1))*.05).unit
  3336. end
  3337. local down = tor.CFrame:vectorToWorldSpace(Vector3.new(0,-1,0))
  3338. local descending = (not moving and keysdown["q"] and not keysdown[" "])
  3339. cf = ccomplerp(cf,CFrame.new(tor.Position,tor.Position+(not moving and idledir or fldir)),keysdown["0"] and .02 or .07)
  3340. local gdown = not dbomb and cf.lookVector.Y < -.2 and tor.Velocity.unit.Y < .05
  3341. hum.PlatformStand = true
  3342. bg.maxTorque = Vector3.new(1,1,1)*9e5
  3343. local rotvel = CFrame.new(Vector3.new(),tor.Velocity):toObjectSpace(CFrame.new(Vector3.new(),fldir)).lookVector
  3344. 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)
  3345. reqrotx = reqrotx - reqrotx/10
  3346. bv.maxForce = Vector3.new(1,1,1)*9e4*.5
  3347. local anioff =(bn(keysdown[" "])-bn(keysdown["q"]))/2
  3348. local ani = tickwave(1.5-anioff,1)
  3349. 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)
  3350. vel = moving and cf.lookVector*flspd or Vector3.new()
  3351. 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))
  3352. local hit,ray = workspace:FindPartOnRayWithIgnoreList(Ray.new(tor.Position,Vector3.new(0,-3.5+math.min(0,bv.velocity.y)/30,0)),{char})
  3353. if hit and down.Y < -.85 and tick()-flystart > 1 then
  3354. flying = false
  3355. hum.PlatformStand = false
  3356. tor.Velocity = Vector3.new()
  3357. end
  3358. else
  3359. bg.maxTorque = Vector3.new()
  3360. bv.maxForce = Vector3.new()
  3361. local x,y,z = fspd/160,uspd/700,sspd/900
  3362. if keypressed[" "] and not flying and (tick()-jumptime > .05 and (tick()-jumptime < 3 or hum.Jump)) then
  3363. vel = Vector3.new(0,50,0)
  3364. bv.velocity = vel
  3365. idledir = cam.CoordinateFrame.lookVector*Vector3.new(1,0,1)
  3366. cf = tor.CFrame * CFrame.Angles(-.01,0,0)
  3367. tor.CFrame = cf
  3368. bg.cframe = cf
  3369. flystart = tick()
  3370. flying = true
  3371. end
  3372. end
  3373. keypressed = {}
  3374. end))
  3375. end
  3376. fly()
  3377.  
  3378. ---
  3379.  
  3380. Option = false
  3381. BTool = "Nothing"
  3382. WCollide = "Nothing"
  3383. LT2Info = "Nothing"
  3384. GreyStart = "Nothing"
  3385. MDown = false
  3386. afkactive = false
  3387. CustomLocationSet = false
  3388.  
  3389. -- Objects
  3390.  
  3391. local LT2GUI = Instance.new("ScreenGui")
  3392. local MainFrame = Instance.new("Frame")
  3393. local MenuLeftFrame = Instance.new("Frame")
  3394. local LT2GUI2Frame = Instance.new("Frame")
  3395. local BringTree = Instance.new("TextButton")
  3396. local Waypoints = Instance.new("TextButton")
  3397. local SellFrame = Instance.new("Frame")
  3398. local SellWoodPlanks = Instance.new("TextButton")
  3399. local SellWood = Instance.new("TextButton")
  3400. local SellPlanks = Instance.new("TextButton")
  3401. local SellWoodTxt1 = Instance.new("TextLabel")
  3402. local SellPlanksTxt1 = Instance.new("TextLabel")
  3403. local Greywood = Instance.new("TextButton")
  3404. local GreywoodFrame = Instance.new("Frame")
  3405. local GreywoodHeader = Instance.new("TextLabel")
  3406. local GreywoodInfo = Instance.new("TextLabel")
  3407. local GreywoodStart = Instance.new("TextButton")
  3408. local StartFrameInfo = Instance.new("TextLabel")
  3409. local TPWood = Instance.new("TextButton")
  3410. local TPPlanks = Instance.new("TextButton")
  3411. local PlankFrame = Instance.new("Frame")
  3412. local ProcessedWoodList = Instance.new("ScrollingFrame")
  3413. local TpAllPlanks = Instance.new("TextButton")
  3414. local TpAllPlanksSpacer = Instance.new("TextLabel")
  3415. local TpAllPlanksTxt1 = Instance.new("TextLabel")
  3416. local GodMode = Instance.new("TextButton")
  3417. local GoldAxe = Instance.new("TextButton")
  3418. local GoldAxeInfo = Instance.new("TextLabel")
  3419. local GoldAxeFrame = Instance.new("Frame")
  3420. local GoldAxeHeader = Instance.new("TextLabel")
  3421. local GoldAxeStart = Instance.new("TextButton")
  3422. local Duper = Instance.new("TextButton")
  3423. local Depart = Instance.new("TextLabel")
  3424. local CopyTool = Instance.new("TextButton")
  3425. local DeleteTool = Instance.new("TextButton")
  3426. local MoveTool = Instance.new("TextButton")
  3427. local WaterCollide = Instance.new("TextButton")
  3428. local Minimize = Instance.new("TextButton")
  3429. local MenuFrame = Instance.new("Frame")
  3430. local WaypointFrame = Instance.new("Frame")
  3431. local WaypointList = Instance.new("ScrollingFrame")
  3432. local BoxedCars = Instance.new("TextButton")
  3433. local Cave = Instance.new("TextButton")
  3434. local LinksLogic = Instance.new("TextButton")
  3435. local Volcano = Instance.new("TextButton")
  3436. local BobsShack = Instance.new("TextButton")
  3437. local FancyFurnishings = Instance.new("TextButton")
  3438. local LandStore = Instance.new("TextButton")
  3439. local Dock = Instance.new("TextButton")
  3440. local FineArtsShop = Instance.new("TextButton")
  3441. local PalmIsland = Instance.new("TextButton")
  3442. local Bridge = Instance.new("TextButton")
  3443. local Swamp = Instance.new("TextButton")
  3444. local SpawnPoint = Instance.new("TextButton")
  3445. local WoodRUs = Instance.new("TextButton")
  3446. local EndTimes = Instance.new("TextButton")
  3447. local ShrineOfSight = Instance.new("TextButton")
  3448. local TheDen = Instance.new("TextButton")
  3449. local VolcanoWin = Instance.new("TextButton")
  3450. local SkiLodge = Instance.new("TextButton")
  3451. local StrangeMan = Instance.new("TextButton")
  3452. local ShowLocation = Instance.new("TextButton")
  3453. local CustomTPPoint = Instance.new("TextButton")
  3454. local PlotTp = Instance.new("TextButton")
  3455. local BringTreeFrame = Instance.new("Frame")
  3456. local BringTreeHeader = Instance.new("TextLabel")
  3457. local BringTreeInfo1 = Instance.new("TextButton")
  3458. local BringTreeInfo2 = Instance.new("TextLabel")
  3459. local ElmTree = Instance.new("TextButton")
  3460. local CherryTree = Instance.new("TextButton")
  3461. local OakTree = Instance.new("TextButton")
  3462. local BirchTree = Instance.new("TextButton")
  3463. local CaveCrawlerTree = Instance.new("TextButton")
  3464. local GoldTree = Instance.new("TextButton")
  3465. local GreenTree = Instance.new("TextButton")
  3466. local SpookyTree = Instance.new("TextButton")
  3467. local FirTree = Instance.new("TextButton")
  3468. local VolcanoTree = Instance.new("TextButton")
  3469. local KoaTree = Instance.new("TextButton")
  3470. local PalmTree = Instance.new("TextButton")
  3471. local EndTimesTree = Instance.new("TextButton")
  3472. local WalnutTree = Instance.new("TextButton")
  3473. local DupeFrame = Instance.new("Frame")
  3474. local Info = Instance.new("TextLabel")
  3475. local Dupe = Instance.new("TextButton")
  3476. local DupingText1 = Instance.new("TextLabel")
  3477. local MoreInfo = Instance.new("TextButton")
  3478. local Read = Instance.new("TextLabel")
  3479. local PlayerFrame = Instance.new("Frame")
  3480. local Player1 = Instance.new("TextButton")
  3481. local Player2 = Instance.new("TextButton")
  3482. local Player3 = Instance.new("TextButton")
  3483. local Player4 = Instance.new("TextButton")
  3484. local Player5 = Instance.new("TextButton")
  3485. local Player6 = Instance.new("TextButton")
  3486. local PlyrSel = Instance.new("TextLabel")
  3487. local TpPlayer = Instance.new("TextButton")
  3488. local TpBase = Instance.new("TextButton")
  3489. local WalkSpeed = Instance.new("TextButton")
  3490. local JumpPower = Instance.new("TextButton")
  3491. local WalkText = Instance.new("TextBox")
  3492. local JumpText = Instance.new("TextBox")
  3493. local NoClip = Instance.new("TextButton")
  3494. local GuiLabel = Instance.new("TextButton")
  3495. local GuiInfo = Instance.new("TextLabel")
  3496. local GuiInfoExtras = Instance.new("TextLabel")
  3497. local BToolsHeader = Instance.new("TextLabel")
  3498. local AntiAFK = Instance.new("TextButton")
  3499. local AntiAFKtime = Instance.new("TextLabel")
  3500. local PlayerTp = Instance.new("TextButton")
  3501. local TPTool = Instance.new("TextButton")
  3502. local ReJoinServer = Instance.new("TextButton")
  3503. local OpenFrame = Instance.new("Frame")
  3504. local Open = Instance.new("TextButton")
  3505. local CloseLT2 = Instance.new("TextButton")
  3506.  
  3507. -- Properties
  3508.  
  3509. LT2GUI.Name = "LT2GUI"
  3510. LT2GUI.Parent = game.CoreGui
  3511. local LT2CORE = game.CoreGui["LT2GUI"]
  3512.  
  3513. OpenFrame.Name = "OpenFrame"
  3514. OpenFrame.Parent = LT2GUI
  3515. OpenFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  3516. OpenFrame.BorderColor3 = Color3.new(0, 1, 0)
  3517. OpenFrame.Position = UDim2.new(0.5, -40, 0, -28)
  3518. OpenFrame.Size = UDim2.new(0, 80, 0, 20)
  3519.  
  3520. Open.Name = "Open"
  3521. Open.Parent = OpenFrame
  3522. Open.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  3523. Open.BorderColor3 = Color3.new(0, 1, 0)
  3524. Open.Size = UDim2.new(0, 80, 0, 20)
  3525. Open.Font = Enum.Font.Fantasy
  3526. Open.FontSize = Enum.FontSize.Size18
  3527. Open.Text = "Open GUI"
  3528. Open.TextColor3 = Color3.new(0, 1, 0)
  3529. Open.TextSize = 18
  3530. Open.Selectable = true
  3531. Open.TextWrapped = true
  3532.  
  3533. MainFrame.Name = "MainFrame"
  3534. MainFrame.Parent = LT2GUI
  3535. MainFrame.Active = true
  3536. MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  3537. MainFrame.BackgroundTransparency = 0.15
  3538. MainFrame.BorderColor3 = Color3.new(0, 1, 0)
  3539. MainFrame.Draggable = true
  3540. MainFrame.Position = UDim2.new(0, 5, 1, -550)
  3541. MainFrame.Selectable = true
  3542. MainFrame.Size = UDim2.new(0, 335, 0, 370)
  3543. MainFrame.Visible = false
  3544.  
  3545. MenuLeftFrame.Name = "MenuLeftFrame"
  3546. MenuLeftFrame.Parent = MainFrame
  3547. MenuLeftFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  3548. MenuLeftFrame.BackgroundTransparency = 1
  3549. MenuLeftFrame.Position = UDim2.new(0, 5, 0, 40)
  3550. MenuLeftFrame.Size = UDim2.new(0, 140, 0, 325)
  3551.  
  3552. MenuFrame.Name = "MenuFrame"
  3553. MenuFrame.Parent = MainFrame
  3554. MenuFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  3555. MenuFrame.BackgroundTransparency = 0
  3556. MenuFrame.BorderColor3 = Color3.new(0, 1, 0)
  3557. MenuFrame.Position = UDim2.new(0, 155, 0, 40)
  3558. MenuFrame.Size = UDim2.new(0, 170, 0, 290)
  3559.  
  3560. StartFrameInfo.Name = "StartFrameInfo"
  3561. StartFrameInfo.Parent = MenuFrame
  3562. StartFrameInfo.BackgroundColor3 = Color3.new(0, 0, 0)
  3563. StartFrameInfo.BackgroundTransparency = 1
  3564. StartFrameInfo.Position = UDim2.new(0, 3, 0, 3)
  3565. StartFrameInfo.Size = UDim2.new(0, 164, 0, 284)
  3566. StartFrameInfo.Font = Enum.Font.Fantasy
  3567. StartFrameInfo.FontSize = Enum.FontSize.Size14
  3568. 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."
  3569. StartFrameInfo.TextColor3 = Color3.new(1, 1, 1)
  3570. StartFrameInfo.TextWrapped = true
  3571. StartFrameInfo.TextSize = 14
  3572.  
  3573. CloseLT2.Name = "CloseLT2"
  3574. CloseLT2.Parent = MainFrame
  3575. CloseLT2.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  3576. CloseLT2.BorderColor3 = Color3.new(0, 1, 0)
  3577. CloseLT2.Position = UDim2.new(0, 10, 0, 10)
  3578. CloseLT2.Size = UDim2.new(0, 20, 0, 20)
  3579. CloseLT2.Font = Enum.Font.Fantasy
  3580. CloseLT2.FontSize = Enum.FontSize.Size18
  3581. CloseLT2.Text = "X"
  3582. CloseLT2.TextColor3 = Color3.new(1, 1, 1)
  3583. CloseLT2.TextScaled = true
  3584. CloseLT2.TextWrapped = true
  3585. CloseLT2.TextSize = 17
  3586.  
  3587. Minimize.Name = "Minimize"
  3588. Minimize.Parent = MainFrame
  3589. Minimize.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  3590. Minimize.BorderColor3 = Color3.new(0, 1, 0)
  3591. Minimize.Position = UDim2.new(0, 40, 0, 10)
  3592. Minimize.Size = UDim2.new(0, 20, 0, 20)
  3593. Minimize.Font = Enum.Font.Fantasy
  3594. Minimize.FontSize = Enum.FontSize.Size18
  3595. Minimize.Text = "-"
  3596. Minimize.TextColor3 = Color3.new(1, 1, 1)
  3597. Minimize.TextScaled = true
  3598. Minimize.TextWrapped = true
  3599. Minimize.TextSize = 17
  3600.  
  3601. GuiLabel.Name = "GuiLabel"
  3602. GuiLabel.Parent = MainFrame
  3603. GuiLabel.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  3604. GuiLabel.BackgroundTransparency = 0
  3605. GuiLabel.BorderColor3 = Color3.new(0.2, 0.2, 0.2)
  3606. GuiLabel.Position = UDim2.new(0, 78, 0, 6)
  3607. GuiLabel.Size = UDim2.new(0, 49, 0, 28)
  3608. GuiLabel.Font = Enum.Font.Fantasy
  3609. GuiLabel.FontSize = Enum.FontSize.Size14
  3610. GuiLabel.Text = "LT2"
  3611. GuiLabel.TextColor3 = Color3.new(1, 0, 1)
  3612. GuiLabel.TextScaled = true
  3613. GuiLabel.TextSize = 14
  3614. GuiLabel.TextWrapped = true
  3615.  
  3616. LT2GUI2Frame.Name = "LT2GUI2Frame"
  3617. LT2GUI2Frame.Parent = MainFrame
  3618. LT2GUI2Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  3619. LT2GUI2Frame.BackgroundTransparency = 0
  3620. LT2GUI2Frame.BorderColor3 = Color3.new(0, 1, 0)
  3621. LT2GUI2Frame.Position = UDim2.new(0, 10, 0, 40)
  3622. LT2GUI2Frame.Size = UDim2.new(0, 315, 0, 320)
  3623. LT2GUI2Frame.ZIndex = 8
  3624. LT2GUI2Frame.Visible = false
  3625. LT2GUI2Frame.Active = false
  3626.  
  3627. GuiInfo.Name = "GuiInfo"
  3628. GuiInfo.Parent = LT2GUI2Frame
  3629. GuiInfo.BackgroundColor3 = Color3.new(0, 0, 0)
  3630. GuiInfo.BorderColor3 = Color3.new(0, 1, 0)
  3631. GuiInfo.Position = UDim2.new(0, 0, 0, 5)
  3632. GuiInfo.Size = UDim2.new(0, 315, 0, 200)
  3633. GuiInfo.BackgroundTransparency = 1
  3634. GuiInfo.Font = Enum.Font.Fantasy
  3635. GuiInfo.FontSize = Enum.FontSize.Size14
  3636. 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"
  3637. GuiInfo.TextColor3 = Color3.new(1, 1, 1)
  3638. GuiInfo.TextSize = 14
  3639. GuiInfo.ZIndex = 8
  3640. GuiInfo.TextWrapped = true
  3641. GuiInfo.TextYAlignment = Enum.TextYAlignment.Top
  3642.  
  3643. GuiInfoExtras.Name = "GuiInfoExtras"
  3644. GuiInfoExtras.Parent = LT2GUI2Frame
  3645. GuiInfoExtras.BackgroundColor3 = Color3.new(0, 0, 0)
  3646. GuiInfoExtras.BorderColor3 = Color3.new(0, 0, 0)
  3647. GuiInfoExtras.Position = UDim2.new(0, 125, 0, 180)
  3648. GuiInfoExtras.Size = UDim2.new(0, 65, 0, 20)
  3649. GuiInfoExtras.BackgroundTransparency = 0
  3650. GuiInfoExtras.Font = Enum.Font.Fantasy
  3651. GuiInfoExtras.FontSize = Enum.FontSize.Size18
  3652. GuiInfoExtras.TextColor3 = Color3.new(1, 1, 1)
  3653. GuiInfoExtras.Text = "EXTRAS"
  3654. GuiInfoExtras.ZIndex = 8
  3655. GuiInfoExtras.TextSize = 20
  3656.  
  3657. ReJoinServer.Name = "ReJoinServer"
  3658. ReJoinServer.Parent = LT2GUI2Frame
  3659. ReJoinServer.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  3660. ReJoinServer.BorderColor3 = Color3.new(0, 1, 0)
  3661. ReJoinServer.Position = UDim2.new(0, 80, 0, 210)
  3662. ReJoinServer.Size = UDim2.new(0, 155, 0, 20)
  3663. ReJoinServer.BackgroundTransparency = 0
  3664. ReJoinServer.Font = Enum.Font.Fantasy
  3665. ReJoinServer.FontSize = Enum.FontSize.Size18
  3666. ReJoinServer.Text = "ReJoin Server"
  3667. ReJoinServer.TextColor3 = Color3.new(1, 1, 1)
  3668. ReJoinServer.ZIndex = 8
  3669. ReJoinServer.TextSize = 17
  3670.  
  3671. AntiAFK.Name = "AntiAFK"
  3672. AntiAFK.Parent = LT2GUI2Frame
  3673. AntiAFK.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  3674. AntiAFK.BorderColor3 = Color3.new(0, 1, 0)
  3675. AntiAFK.Position = UDim2.new(0, 80, 0, 240)
  3676. AntiAFK.Size = UDim2.new(0, 155, 0, 20)
  3677. AntiAFK.BackgroundTransparency = 0
  3678. AntiAFK.Font = Enum.Font.Fantasy
  3679. AntiAFK.FontSize = Enum.FontSize.Size18
  3680. AntiAFK.Text = "Start Anti-AFK Mode"
  3681. AntiAFK.TextColor3 = Color3.new(1, 1, 1)
  3682. AntiAFK.ZIndex = 8
  3683. AntiAFK.TextSize = 17
  3684.  
  3685. AntiAFKtime.Name = "AntiAFKtime"
  3686. AntiAFKtime.Parent = LT2GUI2Frame
  3687. AntiAFKtime.BackgroundColor3 = Color3.new(0, 0, 0)
  3688. AntiAFKtime.BorderColor3 = Color3.new(0, 0, 0)
  3689. AntiAFKtime.Position = UDim2.new(0, 80, 0, 263)
  3690. AntiAFKtime.Size = UDim2.new(0, 155, 0, 20)
  3691. AntiAFKtime.BackgroundTransparency = 0
  3692. AntiAFKtime.Font = Enum.Font.Fantasy
  3693. AntiAFKtime.FontSize = Enum.FontSize.Size18
  3694. AntiAFKtime.Text = "AFK for: 0 Seconds"
  3695. AntiAFKtime.TextColor3 = Color3.new(1, 1, 1)
  3696. AntiAFKtime.ZIndex = 8
  3697. AntiAFKtime.TextSize = 17
  3698.  
  3699. BToolsHeader.Name = "BToolsHeader"
  3700. BToolsHeader.Parent = LT2GUI2Frame
  3701. BToolsHeader.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  3702. BToolsHeader.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  3703. BToolsHeader.Position = UDim2.new(0, 10, 0, 290)
  3704. BToolsHeader.Size = UDim2.new(0, 70, 0, 20)
  3705. BToolsHeader.BackgroundTransparency = 0
  3706. BToolsHeader.Font = Enum.Font.Fantasy
  3707. BToolsHeader.FontSize = Enum.FontSize.Size18
  3708. BToolsHeader.Text = "BTools"
  3709. BToolsHeader.TextColor3 = Color3.new(1, 1, 1)
  3710. BToolsHeader.ZIndex = 8
  3711. BToolsHeader.TextSize = 17
  3712.  
  3713. CopyTool.Name = "CopyTool"
  3714. CopyTool.Parent = LT2GUI2Frame
  3715. CopyTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  3716. CopyTool.TextColor3 = Color3.new(1, 1, 1)
  3717. CopyTool.BorderColor3 = Color3.new(0, 1, 0)
  3718. CopyTool.Position = UDim2.new(0, 97, 0, 290)
  3719. CopyTool.Size = UDim2.new(0, 64, 0, 20)
  3720. CopyTool.Font = Enum.Font.Fantasy
  3721. CopyTool.FontSize = Enum.FontSize.Size18
  3722. CopyTool.BackgroundTransparency = 0
  3723. CopyTool.Text = "Copy"
  3724. CopyTool.ZIndex = 8
  3725. CopyTool.TextSize = 17
  3726.  
  3727. DeleteTool.Name = "DeleteTool"
  3728. DeleteTool.Parent = LT2GUI2Frame
  3729. DeleteTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  3730. DeleteTool.TextColor3 = Color3.new(1, 1, 1)
  3731. DeleteTool.BorderColor3 = Color3.new(0, 1, 0)
  3732. DeleteTool.Position = UDim2.new(0, 169, 0, 290)
  3733. DeleteTool.Size = UDim2.new(0, 64, 0, 20)
  3734. DeleteTool.Font = Enum.Font.Fantasy
  3735. DeleteTool.FontSize = Enum.FontSize.Size18
  3736. DeleteTool.BackgroundTransparency = 0
  3737. DeleteTool.Text = "Delete"
  3738. DeleteTool.ZIndex = 8
  3739. DeleteTool.TextSize = 17
  3740.  
  3741. MoveTool.Name = "MoveTool"
  3742. MoveTool.Parent = LT2GUI2Frame
  3743. MoveTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  3744. MoveTool.TextColor3 = Color3.new(1, 1, 1)
  3745. MoveTool.BorderColor3 = Color3.new(0, 1, 0)
  3746. MoveTool.Position = UDim2.new(0, 241, 0, 290)
  3747. MoveTool.Size = UDim2.new(0, 64, 0, 20)
  3748. MoveTool.Font = Enum.Font.Fantasy
  3749. MoveTool.FontSize = Enum.FontSize.Size18
  3750. MoveTool.BackgroundTransparency = 0
  3751. MoveTool.Text = "Move"
  3752. MoveTool.ZIndex = 8
  3753. MoveTool.TextSize = 17
  3754.  
  3755. TPTool.Name = "TPTool"
  3756. TPTool.Parent = MainFrame
  3757. TPTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  3758. TPTool.BorderColor3 = Color3.new(0, 1, 0)
  3759. TPTool.Position = UDim2.new(0, 145, 0, 10)
  3760. TPTool.Size = UDim2.new(0, 60, 0, 20)
  3761. TPTool.Font = Enum.Font.Fantasy
  3762. TPTool.FontSize = Enum.FontSize.Size18
  3763. TPTool.Text = "Tp Tool"
  3764. TPTool.TextColor3 = Color3.new(1, 1, 1)
  3765. TPTool.TextSize = 17
  3766.  
  3767. NoClip.Name = "NoClip"
  3768. NoClip.Parent = MainFrame
  3769. NoClip.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  3770. NoClip.BorderColor3 = Color3.new(0, 1, 0)
  3771. NoClip.Position = UDim2.new(0, 215, 0, 10)
  3772. NoClip.Size = UDim2.new(0, 110, 0, 20)
  3773. NoClip.Font = Enum.Font.Fantasy
  3774. NoClip.FontSize = Enum.FontSize.Size18
  3775. NoClip.Text = "Enable NoClip"
  3776. NoClip.TextColor3 = Color3.new(1, 1, 1)
  3777. NoClip.TextSize = 17
  3778.  
  3779. Depart.Name = "Depart"
  3780. Depart.Parent = MenuLeftFrame
  3781. Depart.BackgroundColor3 = Color3.new(0, 0, 0)
  3782. Depart.BackgroundTransparency = 1
  3783. Depart.Position = UDim2.new(0, 5, 0, 0)
  3784. Depart.Size = UDim2.new(0, 135, 0, 20)
  3785. Depart.Font = Enum.Font.Fantasy
  3786. Depart.FontSize = Enum.FontSize.Size18
  3787. Depart.Text = "Ferry Departs: 0"
  3788. Depart.TextColor3 = Color3.new(1, 1, 1)
  3789. Depart.TextSize = 17
  3790.  
  3791. Waypoints.Name = "Waypoints"
  3792. Waypoints.Parent = MenuLeftFrame
  3793. Waypoints.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  3794. Waypoints.TextColor3 = Color3.new(1, 1, 1)
  3795. Waypoints.BorderColor3 = Color3.new(0, 1, 0)
  3796. Waypoints.Position = UDim2.new(0, 5, 0, 30)
  3797. Waypoints.Size = UDim2.new(0, 135, 0, 20)
  3798. Waypoints.Font = Enum.Font.Fantasy
  3799. Waypoints.FontSize = Enum.FontSize.Size18
  3800. Waypoints.Text = "Waypoints"
  3801. Waypoints.TextSize = 17
  3802.  
  3803. TPWood.Name = "TPWood"
  3804. TPWood.Parent = MenuLeftFrame
  3805. TPWood.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  3806. TPWood.BorderColor3 = Color3.new(0, 1, 0)
  3807. TPWood.Position = UDim2.new(0, 5, 0, 60)
  3808. TPWood.Size = UDim2.new(0, 135, 0, 20)
  3809. TPWood.Font = Enum.Font.Fantasy
  3810. TPWood.FontSize = Enum.FontSize.Size18
  3811. TPWood.Text = "TP Wood to You"
  3812. TPWood.TextColor3 = Color3.new(1, 1, 1)
  3813. TPWood.TextSize = 17
  3814.  
  3815. TPPlanks.Name = "TPPlanks"
  3816. TPPlanks.Parent = MenuLeftFrame
  3817. TPPlanks.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  3818. TPPlanks.BorderColor3 = Color3.new(0, 1, 0)
  3819. TPPlanks.Position = UDim2.new(0, 5, 0, 90)
  3820. TPPlanks.Size = UDim2.new(0, 135, 0, 20)
  3821. TPPlanks.Font = Enum.Font.Fantasy
  3822. TPPlanks.FontSize = Enum.FontSize.Size18
  3823. TPPlanks.Text = "TP Planks to You"
  3824. TPPlanks.TextColor3 = Color3.new(1, 1, 1)
  3825. TPPlanks.TextSize = 17
  3826.  
  3827. PlankFrame.Name = "PlankFrame"
  3828. PlankFrame.Parent = MenuFrame
  3829. PlankFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  3830. PlankFrame.BackgroundTransparency = 0
  3831. PlankFrame.BorderColor3 = Color3.new(0, 1, 0)
  3832. PlankFrame.Position = UDim2.new(0, 0, 0, 34)
  3833. PlankFrame.Size = UDim2.new(0, 170, 0, 256)
  3834. PlankFrame.Visible = false
  3835.  
  3836. ProcessedWoodList.Name = "ProcessedWoodList"
  3837. ProcessedWoodList.Parent = PlankFrame
  3838. ProcessedWoodList.BackgroundColor3 = Color3.new(0, 0, 0)
  3839. ProcessedWoodList.BackgroundTransparency = 1
  3840. ProcessedWoodList.BorderColor3 = Color3.new(0, 1, 0)
  3841. ProcessedWoodList.Position = UDim2.new(0, 0, 0, 1)
  3842. ProcessedWoodList.Size = UDim2.new(0, 170, 0, 256)
  3843.  
  3844. TpAllPlanks.Name = "TpAllPlanks"
  3845. TpAllPlanks.Parent = PlankFrame
  3846. TpAllPlanks.BackgroundColor3 = Color3.new(0.15, 0.15, 0.15)
  3847. TpAllPlanks.BorderColor3 = Color3.new(0, 1, 0)
  3848. TpAllPlanks.Position = UDim2.new(0, 0, 0, -34)
  3849. TpAllPlanks.Size = UDim2.new(0, 170, 0, 30)
  3850. TpAllPlanks.Font = Enum.Font.Fantasy
  3851. TpAllPlanks.FontSize = Enum.FontSize.Size18
  3852. TpAllPlanks.Text = "TP ALL PLANKS"
  3853. TpAllPlanks.TextColor3 = Color3.new(1, 1, 1)
  3854. TpAllPlanks.TextSize = 18
  3855.  
  3856. TpAllPlanksSpacer.Name = "TpAllPlanksSpacer"
  3857. TpAllPlanksSpacer.Parent = PlankFrame
  3858. TpAllPlanksSpacer.BackgroundTransparency = 0
  3859. TpAllPlanksSpacer.BackgroundColor3 = Color3.new(0, 0, 0)
  3860. TpAllPlanksSpacer.BorderColor3 = Color3.new(0, 1, 0)
  3861. TpAllPlanksSpacer.Position = UDim2.new(0, 0, 0, -4)
  3862. TpAllPlanksSpacer.Size = UDim2.new(0, 170, 0, 4)
  3863. TpAllPlanksSpacer.Font = Enum.Font.Fantasy
  3864. TpAllPlanksSpacer.Text = ""
  3865. TpAllPlanksSpacer.TextColor3 = Color3.new(1, 1, 1)
  3866. TpAllPlanksSpacer.TextSize = 17
  3867.  
  3868. SellWoodPlanks.Name = "SellWoodPlanks"
  3869. SellWoodPlanks.Parent = MenuLeftFrame
  3870. SellWoodPlanks.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  3871. SellWoodPlanks.BorderColor3 = Color3.new(0, 1, 0)
  3872. SellWoodPlanks.Position = UDim2.new(0, 5, 0, 120)
  3873. SellWoodPlanks.Size = UDim2.new(0, 135, 0, 20)
  3874. SellWoodPlanks.Font = Enum.Font.Fantasy
  3875. SellWoodPlanks.FontSize = Enum.FontSize.Size18
  3876. SellWoodPlanks.Text = "Sell Wood/Planks"
  3877. SellWoodPlanks.TextColor3 = Color3.new(1, 1, 1)
  3878. SellWoodPlanks.TextSize = 17
  3879.  
  3880. SellFrame.Name = "SellFrame"
  3881. SellFrame.Parent = MenuFrame
  3882. SellFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  3883. SellFrame.BackgroundTransparency = 0
  3884. SellFrame.BorderColor3 = Color3.new(0, 1, 0)
  3885. SellFrame.Size = UDim2.new(0, 170, 0, 290)
  3886. SellFrame.Visible = false
  3887.  
  3888. SellWood.Name = "SellWood"
  3889. SellWood.Parent = SellFrame
  3890. SellWood.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  3891. SellWood.BorderColor3 = Color3.new(0, 1, 0)
  3892. SellWood.Position = UDim2.new(0, 30, 0, 10)
  3893. SellWood.Size = UDim2.new(0, 110, 0, 20)
  3894. SellWood.Font = Enum.Font.Fantasy
  3895. SellWood.FontSize = Enum.FontSize.Size18
  3896. SellWood.Text = "Sell Cut Wood"
  3897. SellWood.TextColor3 = Color3.new(1, 1, 1)
  3898. SellWood.TextSize = 17
  3899.  
  3900. SellWoodTxt1.Name = "SellWoodTxt1"
  3901. SellWoodTxt1.Parent = SellFrame
  3902. SellWoodTxt1.BackgroundColor3 = Color3.new(0, 0, 0)
  3903. SellWoodTxt1.BackgroundTransparency = 1
  3904. SellWoodTxt1.BorderColor3 = Color3.new(0, 0, 0)
  3905. SellWoodTxt1.Position = UDim2.new(0, 5, 0, 35)
  3906. SellWoodTxt1.Size = UDim2.new(0, 160, 0, 100)
  3907. SellWoodTxt1.Font = Enum.Font.Fantasy
  3908. SellWoodTxt1.FontSize = Enum.FontSize.Size18
  3909. 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"
  3910. SellWoodTxt1.TextColor3 = Color3.new(0, 1, 0)
  3911. SellWoodTxt1.TextSize = 14
  3912. SellWoodTxt1.TextWrapped = true
  3913. SellWoodTxt1.TextYAlignment = Enum.TextYAlignment.Top
  3914.  
  3915. SellPlanks.Name = "SellPlanks"
  3916. SellPlanks.Parent = SellFrame
  3917. SellPlanks.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  3918. SellPlanks.BorderColor3 = Color3.new(0, 1, 0)
  3919. SellPlanks.Position = UDim2.new(0, 6, 0, 135)
  3920. SellPlanks.Size = UDim2.new(0, 158, 0, 20)
  3921. SellPlanks.Font = Enum.Font.Fantasy
  3922. SellPlanks.FontSize = Enum.FontSize.Size18
  3923. SellPlanks.Text = "Sell Processed Planks"
  3924. SellPlanks.TextColor3 = Color3.new(1, 1, 1)
  3925. SellPlanks.TextSize = 17
  3926.  
  3927. SellPlanksTxt1.Name = "SellPlanksTxt1"
  3928. SellPlanksTxt1.Parent = SellFrame
  3929. SellPlanksTxt1.BackgroundColor3 = Color3.new(0, 0, 0)
  3930. SellPlanksTxt1.BackgroundTransparency = 1
  3931. SellPlanksTxt1.BorderColor3 = Color3.new(0, 0, 0)
  3932. SellPlanksTxt1.Position = UDim2.new(0, 5, 0, 160)
  3933. SellPlanksTxt1.Size = UDim2.new(0, 160, 0, 120)
  3934. SellPlanksTxt1.Font = Enum.Font.Fantasy
  3935. SellPlanksTxt1.FontSize = Enum.FontSize.Size18
  3936. 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."
  3937. SellPlanksTxt1.TextColor3 = Color3.new(0, 1, 0)
  3938. SellPlanksTxt1.TextSize = 14
  3939. SellPlanksTxt1.TextWrapped = true
  3940. SellPlanksTxt1.TextYAlignment = Enum.TextYAlignment.Top
  3941.  
  3942. BringTree.Name = "BringTree"
  3943. BringTree.Parent = MenuLeftFrame
  3944. BringTree.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  3945. BringTree.BorderColor3 = Color3.new(0, 1, 0)
  3946. BringTree.Position = UDim2.new(0, 5, 0, 150)
  3947. BringTree.Size = UDim2.new(0, 135, 0, 20)
  3948. BringTree.Font = Enum.Font.Fantasy
  3949. BringTree.FontSize = Enum.FontSize.Size18
  3950. BringTree.Text = "Bring A Tree"
  3951. BringTree.TextColor3 = Color3.new(1, 1, 1)
  3952. BringTree.TextSize = 17
  3953.  
  3954. PlayerTp.Name = "PlayerTp"
  3955. PlayerTp.Parent = MenuLeftFrame
  3956. PlayerTp.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  3957. PlayerTp.TextColor3 = Color3.new(1, 1, 1)
  3958. PlayerTp.BorderColor3 = Color3.new(0, 1, 0)
  3959. PlayerTp.Position = UDim2.new(0, 5, 0, 180)
  3960. PlayerTp.Size = UDim2.new(0, 135, 0, 20)
  3961. PlayerTp.Font = Enum.Font.Fantasy
  3962. PlayerTp.FontSize = Enum.FontSize.Size18
  3963. PlayerTp.Text = "Tp to Players"
  3964. PlayerTp.TextSize = 17
  3965.  
  3966. Duper.Name = "Duper"
  3967. Duper.Parent = MenuLeftFrame
  3968. Duper.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  3969. Duper.TextColor3 = Color3.new(1, 1, 1)
  3970. Duper.BorderColor3 = Color3.new(0, 1, 0)
  3971. Duper.Position = UDim2.new(0, 5, 0, 210)
  3972. Duper.Size = UDim2.new(0, 135, 0, 20)
  3973. Duper.Font = Enum.Font.Fantasy
  3974. Duper.FontSize = Enum.FontSize.Size18
  3975. Duper.Text = "Item Duping"
  3976. Duper.TextSize = 17
  3977.  
  3978. Greywood.Name = "Greywood"
  3979. Greywood.Parent = MenuLeftFrame
  3980. Greywood.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  3981. Greywood.TextColor3 = Color3.new(1, 1, 1)
  3982. Greywood.BorderColor3 = Color3.new(0, 1, 0)
  3983. Greywood.Position = UDim2.new(0, 5, 0, 240)
  3984. Greywood.Size = UDim2.new(0, 135, 0, 20)
  3985. Greywood.Font = Enum.Font.Fantasy
  3986. Greywood.FontSize = Enum.FontSize.Size18
  3987. Greywood.Text = "Grey Structures"
  3988. Greywood.TextSize = 17
  3989.  
  3990. GreywoodFrame.Name = "GreywoodFrame"
  3991. GreywoodFrame.Parent = MenuFrame
  3992. GreywoodFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  3993. GreywoodFrame.BackgroundTransparency = 0
  3994. GreywoodFrame.BorderColor3 = Color3.new(0, 1, 0)
  3995. GreywoodFrame.Size = UDim2.new(0, 170, 0, 290)
  3996. GreywoodFrame.Visible = false
  3997.  
  3998. GreywoodHeader.Name = "GreywoodHeader"
  3999. GreywoodHeader.Parent = GreywoodFrame
  4000. GreywoodHeader.BackgroundColor3 = Color3.new(1, 1, 1)
  4001. GreywoodHeader.BackgroundTransparency = 0.15
  4002. GreywoodHeader.BorderColor3 = Color3.new(0, 1, 0)
  4003. GreywoodHeader.Size = UDim2.new(0, 170, 0, 35)
  4004. GreywoodHeader.Font = Enum.Font.Fantasy
  4005. GreywoodHeader.FontSize = Enum.FontSize.Size18
  4006. GreywoodHeader.Text = "TURN EMPTY BLUEPRINT TO GREYWOOD"
  4007. GreywoodHeader.TextColor3 = Color3.new(0, 0, 0)
  4008. GreywoodHeader.TextScaled = true
  4009. GreywoodHeader.TextSize = 17
  4010. GreywoodHeader.TextWrapped = true
  4011.  
  4012. GreywoodInfo.Name = "GreywoodInfo"
  4013. GreywoodInfo.Parent = GreywoodFrame
  4014. GreywoodInfo.BackgroundColor3 = Color3.new(0, 0, 0)
  4015. GreywoodInfo.BackgroundTransparency = 1
  4016. GreywoodInfo.Position = UDim2.new(0, 5, 0, 40)
  4017. GreywoodInfo.Size = UDim2.new(0, 160, 0, 250)
  4018. GreywoodInfo.Font = Enum.Font.Fantasy
  4019. GreywoodInfo.FontSize = Enum.FontSize.Size14
  4020. 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."
  4021. GreywoodInfo.TextColor3 = Color3.new(0, 1, 0)
  4022. GreywoodInfo.TextSize = 14
  4023. GreywoodInfo.TextYAlignment = Enum.TextYAlignment.Top
  4024. GreywoodInfo.TextWrapped = true
  4025.  
  4026. GreywoodStart.Name = "GreywoodStart"
  4027. GreywoodStart.Parent = GreywoodFrame
  4028. GreywoodStart.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4029. GreywoodStart.BorderColor3 = Color3.new(0, 1, 0)
  4030. GreywoodStart.Position = UDim2.new(0, 25, 0, 255)
  4031. GreywoodStart.Size = UDim2.new(0, 120, 0, 25)
  4032. GreywoodStart.Font = Enum.Font.Fantasy
  4033. GreywoodStart.FontSize = Enum.FontSize.Size18
  4034. GreywoodStart.Text = "Start"
  4035. GreywoodStart.TextColor3 = Color3.new(1, 1, 1)
  4036. GreywoodStart.TextSize = 17
  4037.  
  4038. WaterCollide.Name = "WaterCollide"
  4039. WaterCollide.Parent = MenuLeftFrame
  4040. WaterCollide.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4041. WaterCollide.BorderColor3 = Color3.new(0, 1, 0)
  4042. WaterCollide.Position = UDim2.new(0, 5, 0, 270)
  4043. WaterCollide.Size = UDim2.new(0, 135, 0, 20)
  4044. WaterCollide.Font = Enum.Font.Fantasy
  4045. WaterCollide.FontSize = Enum.FontSize.Size18
  4046. WaterCollide.Text = "Walk on Water"
  4047. WaterCollide.TextColor3 = Color3.new(1, 1, 1)
  4048. WaterCollide.TextSize = 17
  4049.  
  4050. GodMode.Name = "GodMode"
  4051. GodMode.Parent = MenuLeftFrame
  4052. GodMode.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4053. GodMode.TextColor3 = Color3.new(1, 1, 1)
  4054. GodMode.BorderColor3 = Color3.new(0, 1, 0)
  4055. GodMode.Position = UDim2.new(0, 5, 0, 300)
  4056. GodMode.Size = UDim2.new(0, 55, 0, 20)
  4057. GodMode.Font = Enum.Font.Fantasy
  4058. GodMode.FontSize = Enum.FontSize.Size18
  4059. GodMode.Text = "God"
  4060. GodMode.TextScaled = true
  4061. GodMode.TextSize = 17
  4062.  
  4063. GoldAxe.Name = "GoldAxe"
  4064. GoldAxe.Parent = MenuLeftFrame
  4065. GoldAxe.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4066. GoldAxe.TextColor3 = Color3.new(1, 1, 1)
  4067. GoldAxe.BorderColor3 = Color3.new(0, 1, 0)
  4068. GoldAxe.Position = UDim2.new(0, 70, 0, 300)
  4069. GoldAxe.Size = UDim2.new(0, 70, 0, 20)
  4070. GoldAxe.Font = Enum.Font.Fantasy
  4071. GoldAxe.FontSize = Enum.FontSize.Size18
  4072. GoldAxe.Text = "Gold Axe"
  4073. GoldAxe.TextWrapped = true
  4074. GoldAxe.TextSize = 17
  4075.  
  4076. GoldAxeFrame.Name = "GoldAxeFrame"
  4077. GoldAxeFrame.Parent = MenuFrame
  4078. GoldAxeFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  4079. GoldAxeFrame.BackgroundTransparency = 0
  4080. GoldAxeFrame.BorderColor3 = Color3.new(0, 1, 0)
  4081. GoldAxeFrame.Size = UDim2.new(0, 170, 0, 290)
  4082. GoldAxeFrame.Visible = false
  4083.  
  4084. GoldAxeHeader.Name = "GoldAxeHeader"
  4085. GoldAxeHeader.Parent = GoldAxeFrame
  4086. GoldAxeHeader.BackgroundColor3 = Color3.new(1, 1, 1)
  4087. GoldAxeHeader.BackgroundTransparency = 0.15
  4088. GoldAxeHeader.BorderColor3 = Color3.new(0, 1, 0)
  4089. GoldAxeHeader.Size = UDim2.new(0, 170, 0, 35)
  4090. GoldAxeHeader.Font = Enum.Font.Fantasy
  4091. GoldAxeHeader.FontSize = Enum.FontSize.Size18
  4092. GoldAxeHeader.Text = "CHOP WOOD WITH GOLDEN AXE POWER"
  4093. GoldAxeHeader.TextColor3 = Color3.new(0, 0, 0)
  4094. GoldAxeHeader.TextScaled = true
  4095. GoldAxeHeader.TextSize = 17
  4096. GoldAxeHeader.TextWrapped = true
  4097.  
  4098. GoldAxeInfo.Name = "GoldAxeInfo"
  4099. GoldAxeInfo.Parent = GoldAxeFrame
  4100. GoldAxeInfo.BackgroundColor3 = Color3.new(0, 0, 0)
  4101. GoldAxeInfo.BackgroundTransparency = 1
  4102. GoldAxeInfo.Position = UDim2.new(0, 5, 0, 40)
  4103. GoldAxeInfo.Size = UDim2.new(0, 160, 0, 210)
  4104. GoldAxeInfo.Font = Enum.Font.Fantasy
  4105. GoldAxeInfo.FontSize = Enum.FontSize.Size14
  4106. 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."
  4107. GoldAxeInfo.TextColor3 = Color3.new(0, 1, 0)
  4108. GoldAxeInfo.TextSize = 14
  4109. GoldAxeInfo.TextYAlignment = Enum.TextYAlignment.Top
  4110. GoldAxeInfo.TextWrapped = true
  4111.  
  4112. GoldAxeStart.Name = "GoldAxeStart"
  4113. GoldAxeStart.Parent = GoldAxeFrame
  4114. GoldAxeStart.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4115. GoldAxeStart.BorderColor3 = Color3.new(0, 1, 0)
  4116. GoldAxeStart.Position = UDim2.new(0, 25, 0, 255)
  4117. GoldAxeStart.Size = UDim2.new(0, 120, 0, 25)
  4118. GoldAxeStart.Font = Enum.Font.Fantasy
  4119. GoldAxeStart.FontSize = Enum.FontSize.Size18
  4120. GoldAxeStart.Text = "Start"
  4121. GoldAxeStart.TextColor3 = Color3.new(1, 1, 1)
  4122. GoldAxeStart.TextSize = 17
  4123.  
  4124. WaypointFrame.Name = "WaypointFrame"
  4125. WaypointFrame.Parent = MenuFrame
  4126. WaypointFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  4127. WaypointFrame.BackgroundTransparency = 0
  4128. WaypointFrame.BorderColor3 = Color3.new(0, 1, 0)
  4129. WaypointFrame.Size = UDim2.new(0, 170, 0, 290)
  4130. WaypointFrame.Visible = false
  4131.  
  4132. WaypointList.Name = "WaypointList"
  4133. WaypointList.Parent = WaypointFrame
  4134. WaypointList.BackgroundColor3 = Color3.new(0, 0, 0)
  4135. WaypointList.BackgroundTransparency = 0
  4136. WaypointList.BorderColor3 = Color3.new(0, 1, 0)
  4137. WaypointList.Size = UDim2.new(0, 170, 0, 290)
  4138. WaypointList.CanvasSize = UDim2.new(0, 0, 2.15, 0)
  4139.  
  4140. ShowLocation.Name = "ShowLocation"
  4141. ShowLocation.Parent = WaypointList
  4142. ShowLocation.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4143. ShowLocation.TextColor3 = Color3.new(1, 1, 1)
  4144. ShowLocation.BorderColor3 = Color3.new(0, 1, 0)
  4145. ShowLocation.Position = UDim2.new(0, 5, 0, 5)
  4146. ShowLocation.Size = UDim2.new(0, 147, 0, 40)
  4147. ShowLocation.Font = Enum.Font.Fantasy
  4148. ShowLocation.FontSize = Enum.FontSize.Size14
  4149. ShowLocation.Text = "Show Current Coords\nSet Custom Location"
  4150. ShowLocation.TextWrapped = true
  4151. ShowLocation.TextSize = 15
  4152.  
  4153. CustomTPPoint.Name = "CustomTPPoint"
  4154. CustomTPPoint.Parent = WaypointList
  4155. CustomTPPoint.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4156. CustomTPPoint.TextColor3 = Color3.new(1, 1, 1)
  4157. CustomTPPoint.BorderColor3 = Color3.new(0, 1, 0)
  4158. CustomTPPoint.Position = UDim2.new(0, 5, 0, 50)
  4159. CustomTPPoint.Size = UDim2.new(0, 147, 0, 20)
  4160. CustomTPPoint.Font = Enum.Font.Fantasy
  4161. CustomTPPoint.FontSize = Enum.FontSize.Size14
  4162. CustomTPPoint.Text = "TP to Custom Location"
  4163. CustomTPPoint.TextWrapped = true
  4164. CustomTPPoint.TextSize = 15
  4165.  
  4166. PlotTp.Name = "PlotTp"
  4167. PlotTp.Parent = WaypointList
  4168. PlotTp.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4169. PlotTp.TextColor3 = Color3.new(1, 1, 1)
  4170. PlotTp.BorderColor3 = Color3.new(0, 1, 0)
  4171. PlotTp.Position = UDim2.new(0, 5, 0, 75)
  4172. PlotTp.Size = UDim2.new(0, 147, 0, 20)
  4173. PlotTp.Font = Enum.Font.Fantasy
  4174. PlotTp.FontSize = Enum.FontSize.Size14
  4175. PlotTp.Text = "Tp to Your Plot"
  4176. PlotTp.TextSize = 16
  4177.  
  4178. SpawnPoint.Name = "SpawnPoint"
  4179. SpawnPoint.Parent = WaypointList
  4180. SpawnPoint.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4181. SpawnPoint.TextColor3 = Color3.new(1, 1, 1)
  4182. SpawnPoint.BorderColor3 = Color3.new(0, 1, 0)
  4183. SpawnPoint.Position = UDim2.new(0, 5, 0, 100)
  4184. SpawnPoint.Size = UDim2.new(0, 147, 0, 20)
  4185. SpawnPoint.Font = Enum.Font.Fantasy
  4186. SpawnPoint.FontSize = Enum.FontSize.Size14
  4187. SpawnPoint.Text = "Spawn Point"
  4188. SpawnPoint.TextSize = 16
  4189.  
  4190. WoodRUs.Name = "WoodRUs"
  4191. WoodRUs.Parent = WaypointList
  4192. WoodRUs.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4193. WoodRUs.TextColor3 = Color3.new(1, 1, 1)
  4194. WoodRUs.BorderColor3 = Color3.new(0, 1, 0)
  4195. WoodRUs.Position = UDim2.new(0, 5, 0, 125)
  4196. WoodRUs.Size = UDim2.new(0, 147, 0, 20)
  4197. WoodRUs.Font = Enum.Font.Fantasy
  4198. WoodRUs.FontSize = Enum.FontSize.Size14
  4199. WoodRUs.Text = "Wood R Us"
  4200. WoodRUs.TextSize = 16
  4201.  
  4202. LinksLogic.Name = "LinksLogic"
  4203. LinksLogic.Parent = WaypointList
  4204. LinksLogic.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4205. LinksLogic.TextColor3 = Color3.new(1, 1, 1)
  4206. LinksLogic.BorderColor3 = Color3.new(0, 1, 0)
  4207. LinksLogic.Position = UDim2.new(0, 5, 0, 150)
  4208. LinksLogic.Size = UDim2.new(0, 147, 0, 20)
  4209. LinksLogic.Font = Enum.Font.Fantasy
  4210. LinksLogic.FontSize = Enum.FontSize.Size14
  4211. LinksLogic.Text = "Link's Logic"
  4212. LinksLogic.TextSize = 16
  4213.  
  4214. BoxedCars.Name = "BoxedCars"
  4215. BoxedCars.Parent = WaypointList
  4216. BoxedCars.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4217. BoxedCars.TextColor3 = Color3.new(1, 1, 1)
  4218. BoxedCars.BorderColor3 = Color3.new(0, 1, 0)
  4219. BoxedCars.Position = UDim2.new(0, 5, 0, 175)
  4220. BoxedCars.Size = UDim2.new(0, 147, 0, 20)
  4221. BoxedCars.Font = Enum.Font.Fantasy
  4222. BoxedCars.FontSize = Enum.FontSize.Size14
  4223. BoxedCars.Text = "Boxed Cars"
  4224. BoxedCars.TextSize = 16
  4225.  
  4226. FancyFurnishings.Name = "FancyFurnishings"
  4227. FancyFurnishings.Parent = WaypointList
  4228. FancyFurnishings.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4229. FancyFurnishings.TextColor3 = Color3.new(1, 1, 1)
  4230. FancyFurnishings.BorderColor3 = Color3.new(0, 1, 0)
  4231. FancyFurnishings.Position = UDim2.new(0, 5, 0, 200)
  4232. FancyFurnishings.Size = UDim2.new(0, 147, 0, 20)
  4233. FancyFurnishings.Font = Enum.Font.Fantasy
  4234. FancyFurnishings.FontSize = Enum.FontSize.Size14
  4235. FancyFurnishings.Text = "Fancy Furnishings"
  4236. FancyFurnishings.TextSize = 16
  4237.  
  4238. LandStore.Name = "LandStore"
  4239. LandStore.Parent = WaypointList
  4240. LandStore.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4241. LandStore.TextColor3 = Color3.new(1, 1, 1)
  4242. LandStore.BorderColor3 = Color3.new(0, 1, 0)
  4243. LandStore.Position = UDim2.new(0, 5, 0, 225)
  4244. LandStore.Size = UDim2.new(0, 147, 0, 20)
  4245. LandStore.Font = Enum.Font.Fantasy
  4246. LandStore.FontSize = Enum.FontSize.Size14
  4247. LandStore.Text = "Land Store"
  4248. LandStore.TextSize = 16
  4249.  
  4250. FineArtsShop.Name = "FineArtsShop"
  4251. FineArtsShop.Parent = WaypointList
  4252. FineArtsShop.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4253. FineArtsShop.TextColor3 = Color3.new(1, 1, 1)
  4254. FineArtsShop.BorderColor3 = Color3.new(0, 1, 0)
  4255. FineArtsShop.Position = UDim2.new(0, 5, 0, 250)
  4256. FineArtsShop.Size = UDim2.new(0, 147, 0, 20)
  4257. FineArtsShop.Font = Enum.Font.Fantasy
  4258. FineArtsShop.FontSize = Enum.FontSize.Size14
  4259. FineArtsShop.Text = "Fine Arts Shop"
  4260. FineArtsShop.TextSize = 16
  4261.  
  4262. BobsShack.Name = "BobsShack"
  4263. BobsShack.Parent = WaypointList
  4264. BobsShack.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4265. BobsShack.TextColor3 = Color3.new(1, 1, 1)
  4266. BobsShack.BorderColor3 = Color3.new(0, 1, 0)
  4267. BobsShack.Position = UDim2.new(0, 5, 0, 275)
  4268. BobsShack.Size = UDim2.new(0, 147, 0, 20)
  4269. BobsShack.Font = Enum.Font.Fantasy
  4270. BobsShack.FontSize = Enum.FontSize.Size14
  4271. BobsShack.Text = "Bob's Shack"
  4272. BobsShack.TextSize = 16
  4273.  
  4274. Swamp.Name = "Swamp"
  4275. Swamp.Parent = WaypointList
  4276. Swamp.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4277. Swamp.TextColor3 = Color3.new(1, 1, 1)
  4278. Swamp.BorderColor3 = Color3.new(0, 1, 0)
  4279. Swamp.Position = UDim2.new(0, 5, 0, 300)
  4280. Swamp.Size = UDim2.new(0, 147, 0, 20)
  4281. Swamp.Font = Enum.Font.Fantasy
  4282. Swamp.FontSize = Enum.FontSize.Size14
  4283. Swamp.Text = "Swamp"
  4284. Swamp.TextSize = 16
  4285.  
  4286. PalmIsland.Name = "PalmIsland"
  4287. PalmIsland.Parent = WaypointList
  4288. PalmIsland.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4289. PalmIsland.TextColor3 = Color3.new(1, 1, 1)
  4290. PalmIsland.BorderColor3 = Color3.new(0, 1, 0)
  4291. PalmIsland.Position = UDim2.new(0, 5, 0, 325)
  4292. PalmIsland.Size = UDim2.new(0, 147, 0, 20)
  4293. PalmIsland.Font = Enum.Font.Fantasy
  4294. PalmIsland.FontSize = Enum.FontSize.Size14
  4295. PalmIsland.Text = "Palm Island"
  4296. PalmIsland.TextSize = 16
  4297.  
  4298. Cave.Name = "Cave"
  4299. Cave.Parent = WaypointList
  4300. Cave.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4301. Cave.TextColor3 = Color3.new(1, 1, 1)
  4302. Cave.BorderColor3 = Color3.new(0, 1, 0)
  4303. Cave.Position = UDim2.new(0, 5, 0, 350)
  4304. Cave.Size = UDim2.new(0, 147, 0, 20)
  4305. Cave.Font = Enum.Font.Fantasy
  4306. Cave.FontSize = Enum.FontSize.Size14
  4307. Cave.Text = "Cave"
  4308. Cave.TextSize = 16
  4309.  
  4310. Volcano.Name = "Volcano"
  4311. Volcano.Parent = WaypointList
  4312. Volcano.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4313. Volcano.TextColor3 = Color3.new(1, 1, 1)
  4314. Volcano.BorderColor3 = Color3.new(0, 1, 0)
  4315. Volcano.Position = UDim2.new(0, 5, 0, 375)
  4316. Volcano.Size = UDim2.new(0, 147, 0, 20)
  4317. Volcano.Font = Enum.Font.Fantasy
  4318. Volcano.FontSize = Enum.FontSize.Size14
  4319. Volcano.Text = "Volcano"
  4320. Volcano.TextSize = 16
  4321.  
  4322. Dock.Name = "Dock"
  4323. Dock.Parent = WaypointList
  4324. Dock.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4325. Dock.TextColor3 = Color3.new(1, 1, 1)
  4326. Dock.BorderColor3 = Color3.new(0, 1, 0)
  4327. Dock.Position = UDim2.new(0, 5, 0, 400)
  4328. Dock.Size = UDim2.new(0, 147, 0, 20)
  4329. Dock.Font = Enum.Font.Fantasy
  4330. Dock.FontSize = Enum.FontSize.Size14
  4331. Dock.Text = "Dock"
  4332. Dock.TextSize = 16
  4333.  
  4334. Bridge.Name = "Bridge"
  4335. Bridge.Parent = WaypointList
  4336. Bridge.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4337. Bridge.TextColor3 = Color3.new(1, 1, 1)
  4338. Bridge.BorderColor3 = Color3.new(0, 1, 0)
  4339. Bridge.Position = UDim2.new(0, 5, 0, 425)
  4340. Bridge.Size = UDim2.new(0, 147, 0, 20)
  4341. Bridge.Font = Enum.Font.Fantasy
  4342. Bridge.FontSize = Enum.FontSize.Size14
  4343. Bridge.Text = "Bridge"
  4344. Bridge.TextSize = 16
  4345.  
  4346. EndTimes.Name = "EndTimes"
  4347. EndTimes.Parent = WaypointList
  4348. EndTimes.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4349. EndTimes.TextColor3 = Color3.new(1, 1, 1)
  4350. EndTimes.BorderColor3 = Color3.new(0, 1, 0)
  4351. EndTimes.Position = UDim2.new(0, 5, 0, 450)
  4352. EndTimes.Size = UDim2.new(0, 147, 0, 20)
  4353. EndTimes.Font = Enum.Font.Fantasy
  4354. EndTimes.FontSize = Enum.FontSize.Size14
  4355. EndTimes.Text = "End Times"
  4356. EndTimes.TextSize = 16
  4357.  
  4358. ShrineOfSight.Name = "ShrineOfSight"
  4359. ShrineOfSight.Parent = WaypointList
  4360. ShrineOfSight.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4361. ShrineOfSight.TextColor3 = Color3.new(1, 1, 1)
  4362. ShrineOfSight.BorderColor3 = Color3.new(0, 1, 0)
  4363. ShrineOfSight.Position = UDim2.new(0, 5, 0, 475)
  4364. ShrineOfSight.Size = UDim2.new(0, 147, 0, 20)
  4365. ShrineOfSight.Font = Enum.Font.Fantasy
  4366. ShrineOfSight.FontSize = Enum.FontSize.Size14
  4367. ShrineOfSight.Text = "Shrine Of Sight"
  4368. ShrineOfSight.TextSize = 16
  4369.  
  4370. TheDen.Name = "TheDen"
  4371. TheDen.Parent = WaypointList
  4372. TheDen.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4373. TheDen.TextColor3 = Color3.new(1, 1, 1)
  4374. TheDen.BorderColor3 = Color3.new(0, 1, 0)
  4375. TheDen.Position = UDim2.new(0, 5, 0, 500)
  4376. TheDen.Size = UDim2.new(0, 147, 0, 20)
  4377. TheDen.Font = Enum.Font.Fantasy
  4378. TheDen.FontSize = Enum.FontSize.Size14
  4379. TheDen.Text = "The Den"
  4380. TheDen.TextSize = 16
  4381.  
  4382. VolcanoWin.Name = "VolcanoWin"
  4383. VolcanoWin.Parent = WaypointList
  4384. VolcanoWin.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4385. VolcanoWin.TextColor3 = Color3.new(1, 1, 1)
  4386. VolcanoWin.BorderColor3 = Color3.new(0, 1, 0)
  4387. VolcanoWin.Position = UDim2.new(0, 5, 0, 525)
  4388. VolcanoWin.Size = UDim2.new(0, 147, 0, 20)
  4389. VolcanoWin.Font = Enum.Font.Fantasy
  4390. VolcanoWin.FontSize = Enum.FontSize.Size14
  4391. VolcanoWin.Text = "Volcano Win"
  4392. VolcanoWin.TextSize = 16
  4393.  
  4394. SkiLodge.Name = "SkiLodge"
  4395. SkiLodge.Parent = WaypointList
  4396. SkiLodge.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4397. SkiLodge.TextColor3 = Color3.new(1, 1, 1)
  4398. SkiLodge.BorderColor3 = Color3.new(0, 1, 0)
  4399. SkiLodge.Position = UDim2.new(0, 5, 0, 550)
  4400. SkiLodge.Size = UDim2.new(0, 147, 0, 20)
  4401. SkiLodge.Font = Enum.Font.Fantasy
  4402. SkiLodge.FontSize = Enum.FontSize.Size14
  4403. SkiLodge.Text = "Ski Lodge"
  4404. SkiLodge.TextSize = 16
  4405.  
  4406. StrangeMan.Name = "StrangeMan"
  4407. StrangeMan.Parent = WaypointList
  4408. StrangeMan.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4409. StrangeMan.TextColor3 = Color3.new(1, 1, 1)
  4410. StrangeMan.BorderColor3 = Color3.new(0, 1, 0)
  4411. StrangeMan.Position = UDim2.new(0, 5, 0, 575)
  4412. StrangeMan.Size = UDim2.new(0, 147, 0, 20)
  4413. StrangeMan.Font = Enum.Font.Fantasy
  4414. StrangeMan.FontSize = Enum.FontSize.Size14
  4415. StrangeMan.Text = "The Strange Man"
  4416. StrangeMan.TextSize = 16
  4417.  
  4418. BringTreeFrame.Name = "BringTreeFrame"
  4419. BringTreeFrame.Parent = MenuFrame
  4420. BringTreeFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  4421. BringTreeFrame.BackgroundTransparency = 0
  4422. BringTreeFrame.BorderColor3 = Color3.new(0, 1, 0)
  4423. BringTreeFrame.Size = UDim2.new(0, 170, 0, 290)
  4424. BringTreeFrame.Visible = false
  4425.  
  4426. BringTreeHeader.Name = "BringTreeHeader"
  4427. BringTreeHeader.Parent = BringTreeFrame
  4428. BringTreeHeader.BackgroundColor3 = Color3.new(1, 1, 1)
  4429. BringTreeHeader.BackgroundTransparency = 0.15
  4430. BringTreeHeader.BorderColor3 = Color3.new(0, 1, 0)
  4431. BringTreeHeader.Position = UDim2.new(0, 0, 0, 0)
  4432. BringTreeHeader.Size = UDim2.new(0, 170, 0, 35)
  4433. BringTreeHeader.Font = Enum.Font.Fantasy
  4434. BringTreeHeader.FontSize = Enum.FontSize.Size18
  4435. BringTreeHeader.Text = "SELECT A TREE TO SPAWN"
  4436. BringTreeHeader.TextColor3 = Color3.new(0, 0, 0)
  4437. BringTreeHeader.TextScaled = true
  4438. BringTreeHeader.TextSize = 17
  4439. BringTreeHeader.TextWrapped = true
  4440.  
  4441. BringTreeInfo1.Name = "BringTreeInfo1"
  4442. BringTreeInfo1.Parent = BringTreeFrame
  4443. BringTreeInfo1.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4444. BringTreeInfo1.BorderColor3 = Color3.new(0, 1, 0)
  4445. BringTreeInfo1.Position = UDim2.new(0, 30, 0, 255)
  4446. BringTreeInfo1.Size = UDim2.new(0, 110, 0, 25)
  4447. BringTreeInfo1.Font = Enum.Font.SourceSans
  4448. BringTreeInfo1.FontSize = Enum.FontSize.Size18
  4449. BringTreeInfo1.TextColor3 = Color3.new(1, 1, 1)
  4450. BringTreeInfo1.Text = "Info"
  4451. BringTreeInfo1.TextScaled = true
  4452. BringTreeInfo1.TextSize = 18
  4453.  
  4454. BringTreeInfo2.Name = "BringTreeInfo2"
  4455. BringTreeInfo2.Parent = BringTreeFrame
  4456. BringTreeInfo2.BackgroundColor3 = Color3.new(0, 0, 0)
  4457. BringTreeInfo2.BorderColor3 = Color3.new(0, 1, 0)
  4458. BringTreeInfo2.Position = UDim2.new(0, 185, 1, -260)
  4459. BringTreeInfo2.Size = UDim2.new(0, 170, 0, 300)
  4460. BringTreeInfo2.Visible = false
  4461. BringTreeInfo2.Font = Enum.Font.Fantasy
  4462. BringTreeInfo2.FontSize = Enum.FontSize.Size18
  4463. 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."
  4464. BringTreeInfo2.TextColor3 = Color3.new(1, 1, 1)
  4465. BringTreeInfo2.TextSize = 16
  4466. BringTreeInfo2.Active = true
  4467. BringTreeInfo2.Draggable = true
  4468. BringTreeInfo2.ZIndex = 7
  4469. BringTreeInfo2.TextWrapped = true
  4470. BringTreeInfo2.TextYAlignment = Enum.TextYAlignment.Top
  4471.  
  4472. OakTree.Name = "OakTree"
  4473. OakTree.Parent = BringTreeFrame
  4474. OakTree.BackgroundColor3 = Color3.new(0.95256, 0.70952, 0.60368)
  4475. OakTree.BackgroundTransparency = 0.15
  4476. OakTree.BorderColor3 = Color3.new(0, 1, 0)
  4477. OakTree.Position = UDim2.new(0, 5, 0, 45)
  4478. OakTree.Size = UDim2.new(0, 37, 0, 35)
  4479. OakTree.Font = Enum.Font.Fantasy
  4480. OakTree.FontSize = Enum.FontSize.Size18
  4481. OakTree.Text = "OAK\nTREE"
  4482. OakTree.TextColor3 = Color3.new(0, 0, 0)
  4483. OakTree.TextWrapped = true
  4484. OakTree.TextSize = 14
  4485.  
  4486. ElmTree.Name = "ElmTree"
  4487. ElmTree.Parent = BringTreeFrame
  4488. ElmTree.BackgroundColor3 = Color3.new(1, 0.95648, 0.88984)
  4489. ElmTree.BackgroundTransparency = 0.15
  4490. ElmTree.BorderColor3 = Color3.new(0, 1, 0)
  4491. ElmTree.Position = UDim2.new(0, 47, 0, 45)
  4492. ElmTree.Size = UDim2.new(0, 37, 0, 35)
  4493. ElmTree.Font = Enum.Font.Fantasy
  4494. ElmTree.FontSize = Enum.FontSize.Size18
  4495. ElmTree.Text = "ELM\nTREE"
  4496. ElmTree.TextColor3 = Color3.new(0, 0, 0)
  4497. ElmTree.TextWrapped = true
  4498. ElmTree.TextSize = 14
  4499.  
  4500. EndTimesTree.Name = "EndTimesTree"
  4501. EndTimesTree.Parent = BringTreeFrame
  4502. EndTimesTree.BackgroundColor3 = Color3.new(1, 1, 1)
  4503. EndTimesTree.BackgroundTransparency = 0.15
  4504. EndTimesTree.BorderColor3 = Color3.new(0, 1, 0)
  4505. EndTimesTree.Position = UDim2.new(0, 89, 0, 45)
  4506. EndTimesTree.Size = UDim2.new(0, 76, 0, 35)
  4507. EndTimesTree.Font = Enum.Font.Fantasy
  4508. EndTimesTree.FontSize = Enum.FontSize.Size18
  4509. EndTimesTree.Text = "ENDTIMES\nTREE"
  4510. EndTimesTree.TextColor3 = Color3.new(0, 0, 0)
  4511. EndTimesTree.TextWrapped = true
  4512. EndTimesTree.TextSize = 14
  4513.  
  4514. BirchTree.Name = "BirchTree"
  4515. BirchTree.Parent = BringTreeFrame
  4516. BirchTree.BackgroundColor3 = Color3.new(0.9604, 0.9604, 0.9604)
  4517. BirchTree.BackgroundTransparency = 0.15
  4518. BirchTree.BorderColor3 = Color3.new(0, 1, 0)
  4519. BirchTree.Position = UDim2.new(0, 5, 0, 85)
  4520. BirchTree.Size = UDim2.new(0, 45, 0, 35)
  4521. BirchTree.Font = Enum.Font.Fantasy
  4522. BirchTree.FontSize = Enum.FontSize.Size18
  4523. BirchTree.Text = "BIRCH\nTREE"
  4524. BirchTree.TextColor3 = Color3.new(0, 0, 0)
  4525. BirchTree.TextWrapped = true
  4526. BirchTree.TextSize = 14
  4527.  
  4528. VolcanoTree.Name = "VolcanoTree"
  4529. VolcanoTree.Parent = BringTreeFrame
  4530. VolcanoTree.BackgroundColor3 = Color3.new(1, 0, 0)
  4531. VolcanoTree.BackgroundTransparency = 0.15
  4532. VolcanoTree.BorderColor3 = Color3.new(0, 1, 0)
  4533. VolcanoTree.Position = UDim2.new(0, 55, 0, 85)
  4534. VolcanoTree.Size = UDim2.new(0, 65, 0, 35)
  4535. VolcanoTree.Font = Enum.Font.Fantasy
  4536. VolcanoTree.FontSize = Enum.FontSize.Size18
  4537. VolcanoTree.Text = "VOLCANO\nTREE"
  4538. VolcanoTree.TextColor3 = Color3.new(0, 0, 0)
  4539. VolcanoTree.TextWrapped = true
  4540. VolcanoTree.TextSize = 14
  4541.  
  4542. FirTree.Name = "FirTree"
  4543. FirTree.Parent = BringTreeFrame
  4544. FirTree.BackgroundColor3 = Color3.new(1, 0.96824, 0.9212)
  4545. FirTree.BackgroundTransparency = 0.15
  4546. FirTree.BorderColor3 = Color3.new(0, 1, 0)
  4547. FirTree.Position = UDim2.new(0, 125, 0, 85)
  4548. FirTree.Size = UDim2.new(0, 40, 0, 35)
  4549. FirTree.Font = Enum.Font.Fantasy
  4550. FirTree.FontSize = Enum.FontSize.Size18
  4551. FirTree.Text = "FIR\nTREE"
  4552. FirTree.TextColor3 = Color3.new(0, 0, 0)
  4553. FirTree.TextWrapped = true
  4554. FirTree.TextSize = 14
  4555.  
  4556. SpookyTree.Name = "SpookyTree"
  4557. SpookyTree.Parent = BringTreeFrame
  4558. SpookyTree.BackgroundColor3 = Color3.new(0.35672, 0.062736, 0.003921)
  4559. SpookyTree.BackgroundTransparency = 0.15
  4560. SpookyTree.BorderColor3 = Color3.new(0, 1, 0)
  4561. SpookyTree.Position = UDim2.new(0, 5, 0, 125)
  4562. SpookyTree.Size = UDim2.new(0, 60, 0, 35)
  4563. SpookyTree.Font = Enum.Font.Fantasy
  4564. SpookyTree.FontSize = Enum.FontSize.Size18
  4565. SpookyTree.Text = "SPOOKY\nTREE"
  4566. SpookyTree.TextColor3 = Color3.new(1, 1, 1)
  4567. SpookyTree.TextWrapped = true
  4568. SpookyTree.TextSize = 14
  4569.  
  4570. KoaTree.Name = "KoaTree"
  4571. KoaTree.Parent = BringTreeFrame
  4572. KoaTree.BackgroundColor3 = Color3.new(0.72912, 0.125472, 0.003921)
  4573. KoaTree.BackgroundTransparency = 0.15
  4574. KoaTree.BorderColor3 = Color3.new(0, 1, 0)
  4575. KoaTree.Position = UDim2.new(0, 70, 0, 125)
  4576. KoaTree.Size = UDim2.new(0, 45, 0, 35)
  4577. KoaTree.Font = Enum.Font.Fantasy
  4578. KoaTree.FontSize = Enum.FontSize.Size18
  4579. KoaTree.Text = "KOA\nTREE"
  4580. KoaTree.TextColor3 = Color3.new(1, 1, 1)
  4581. KoaTree.TextWrapped = true
  4582. KoaTree.TextSize = 14
  4583.  
  4584. PalmTree.Name = "PalmTree"
  4585. PalmTree.Parent = BringTreeFrame
  4586. PalmTree.BackgroundColor3 = Color3.new(1, 0.96824, 0.9212)
  4587. PalmTree.BackgroundTransparency = 0.15
  4588. PalmTree.BorderColor3 = Color3.new(0, 1, 0)
  4589. PalmTree.Position = UDim2.new(0, 120, 0, 125)
  4590. PalmTree.Size = UDim2.new(0, 45, 0, 35)
  4591. PalmTree.Font = Enum.Font.Fantasy
  4592. PalmTree.FontSize = Enum.FontSize.Size18
  4593. PalmTree.Text = "PALM\nTREE"
  4594. PalmTree.TextColor3 = Color3.new(0, 0, 0)
  4595. PalmTree.TextWrapped = true
  4596. PalmTree.TextSize = 14
  4597.  
  4598. GreenTree.Name = "GreenTree"
  4599. GreenTree.Parent = BringTreeFrame
  4600. GreenTree.BackgroundColor3 = Color3.new(0, 1, 0)
  4601. GreenTree.BackgroundTransparency = 0.15
  4602. GreenTree.BorderColor3 = Color3.new(0, 1, 0)
  4603. GreenTree.Position = UDim2.new(0, 5, 0, 165)
  4604. GreenTree.Size = UDim2.new(0, 51, 0, 35)
  4605. GreenTree.Font = Enum.Font.Fantasy
  4606. GreenTree.FontSize = Enum.FontSize.Size18
  4607. GreenTree.Text = "GREEN\nTREE"
  4608. GreenTree.TextColor3 = Color3.new(0, 0, 0)
  4609. GreenTree.TextWrapped = true
  4610. GreenTree.TextSize = 14
  4611.  
  4612. GoldTree.Name = "GoldTree"
  4613. GoldTree.Parent = BringTreeFrame
  4614. GoldTree.BackgroundColor3 = Color3.new(0.960645, 0.86262, 0.231339)
  4615. GoldTree.BackgroundTransparency = 0.15
  4616. GoldTree.BorderColor3 = Color3.new(0, 1, 0)
  4617. GoldTree.Position = UDim2.new(0, 61, 0, 165)
  4618. GoldTree.Size = UDim2.new(0, 44, 0, 35)
  4619. GoldTree.Font = Enum.Font.Fantasy
  4620. GoldTree.FontSize = Enum.FontSize.Size18
  4621. GoldTree.Text = "GOLD\nTREE"
  4622. GoldTree.TextColor3 = Color3.new(0, 0, 0)
  4623. GoldTree.TextWrapped = true
  4624. GoldTree.TextSize = 14
  4625.  
  4626. CherryTree.Name = "CherryTree"
  4627. CherryTree.Parent = BringTreeFrame
  4628. CherryTree.BackgroundColor3 = Color3.new(0.93296, 0.39984, 0.49)
  4629. CherryTree.BackgroundTransparency = 0.15
  4630. CherryTree.BorderColor3 = Color3.new(0, 1, 0)
  4631. CherryTree.Position = UDim2.new(0, 110, 0, 165)
  4632. CherryTree.Size = UDim2.new(0, 55, 0, 35)
  4633. CherryTree.Font = Enum.Font.Fantasy
  4634. CherryTree.FontSize = Enum.FontSize.Size18
  4635. CherryTree.Text = "CHERRY TREE"
  4636. CherryTree.TextColor3 = Color3.new(0, 0, 0)
  4637. CherryTree.TextWrapped = true
  4638. CherryTree.TextSize = 14
  4639.  
  4640. CaveCrawlerTree.Name = "CaveCrawlerTree"
  4641. CaveCrawlerTree.Parent = BringTreeFrame
  4642. CaveCrawlerTree.BackgroundColor3 = Color3.new(0, 0, 1)
  4643. CaveCrawlerTree.BackgroundTransparency = 0.15
  4644. CaveCrawlerTree.BorderColor3 = Color3.new(0, 1, 0)
  4645. CaveCrawlerTree.Position = UDim2.new(0, 5, 0, 205)
  4646. CaveCrawlerTree.Size = UDim2.new(0, 95, 0, 35)
  4647. CaveCrawlerTree.Font = Enum.Font.Fantasy
  4648. CaveCrawlerTree.FontSize = Enum.FontSize.Size18
  4649. CaveCrawlerTree.Text = "CAVECRAWLER\nTREE"
  4650. CaveCrawlerTree.TextColor3 = Color3.new(1, 1, 1)
  4651. CaveCrawlerTree.TextWrapped = true
  4652. CaveCrawlerTree.TextSize = 14
  4653.  
  4654. WalnutTree.Name = "WalnutTree"
  4655. WalnutTree.Parent = BringTreeFrame
  4656. WalnutTree.BackgroundColor3 = Color3.new(0.360732, 0.176445, 0.137235)
  4657. WalnutTree.BackgroundTransparency = 0.15
  4658. WalnutTree.BorderColor3 = Color3.new(0, 1, 0)
  4659. WalnutTree.Position = UDim2.new(0, 105, 0, 205)
  4660. WalnutTree.Size = UDim2.new(0, 60, 0, 35)
  4661. WalnutTree.Font = Enum.Font.Fantasy
  4662. WalnutTree.FontSize = Enum.FontSize.Size18
  4663. WalnutTree.Text = "WALNUT\nTREE"
  4664. WalnutTree.TextColor3 = Color3.new(1, 1, 1)
  4665. WalnutTree.TextWrapped = true
  4666. WalnutTree.TextSize = 14
  4667.  
  4668. DupeFrame.Name = "DupeFrame"
  4669. DupeFrame.Parent = MenuFrame
  4670. DupeFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  4671. DupeFrame.BackgroundTransparency = 0
  4672. DupeFrame.BorderColor3 = Color3.new(0, 1, 0)
  4673. DupeFrame.Size = UDim2.new(0, 170, 0, 290)
  4674. DupeFrame.Visible = false
  4675.  
  4676. Info.Name = "Info"
  4677. Info.Parent = DupeFrame
  4678. Info.BackgroundColor3 = Color3.new(0, 0, 0)
  4679. Info.BorderColor3 = Color3.new(0, 1, 0)
  4680. Info.Position = UDim2.new(0, 185, 1, -370)
  4681. Info.Size = UDim2.new(0, 170, 0, 410)
  4682. Info.Visible = false
  4683. Info.Font = Enum.Font.Fantasy
  4684. Info.FontSize = Enum.FontSize.Size14
  4685. 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."
  4686. Info.TextColor3 = Color3.new(1, 1, 1)
  4687. Info.TextSize = 14
  4688. Info.Active = true
  4689. Info.Draggable = true
  4690. Info.ZIndex = 7
  4691. Info.TextWrapped = true
  4692. Info.TextYAlignment = Enum.TextYAlignment.Top
  4693.  
  4694. Read.Name = "Read"
  4695. Read.Parent = DupeFrame
  4696. Read.BackgroundColor3 = Color3.new(1, 1, 1)
  4697. Read.BackgroundTransparency = 0.15
  4698. Read.BorderColor3 = Color3.new(0, 1, 0)
  4699. Read.Size = UDim2.new(0, 170, 0, 35)
  4700. Read.Font = Enum.Font.Fantasy
  4701. Read.FontSize = Enum.FontSize.Size18
  4702. Read.Text = "READ INFO BEFORE USING THIS"
  4703. Read.TextColor3 = Color3.new(0, 0, 0)
  4704. Read.TextScaled = true
  4705. Read.TextSize = 17
  4706. Read.TextWrapped = true
  4707.  
  4708. Dupe.Name = "Dupe"
  4709. Dupe.Parent = DupeFrame
  4710. Dupe.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4711. Dupe.BorderColor3 = Color3.new(0, 1, 0)
  4712. Dupe.Position = UDim2.new(0, 50, 0, 65)
  4713. Dupe.Size = UDim2.new(0, 70, 0, 25)
  4714. Dupe.Font = Enum.Font.Fantasy
  4715. Dupe.FontSize = Enum.FontSize.Size18
  4716. Dupe.Text = "Dupe"
  4717. Dupe.TextScaled = true
  4718. Dupe.TextColor3 = Color3.new(1, 1, 1)
  4719. Dupe.TextSize = 17
  4720.  
  4721. DupingText1.Name = "DupingText1"
  4722. DupingText1.Parent = DupeFrame
  4723. DupingText1.BackgroundColor3 = Color3.new(0, 0, 0)
  4724. DupingText1.BackgroundTransparency = 1
  4725. DupingText1.Position = UDim2.new(0, 5, 0, 100)
  4726. DupingText1.Size = UDim2.new(0, 160, 0, 140)
  4727. DupingText1.Font = Enum.Font.Fantasy
  4728. DupingText1.FontSize = Enum.FontSize.Size14
  4729. DupingText1.Text = "Loaded Slot Will Save"
  4730. DupingText1.TextColor3 = Color3.new(0, 1, 0)
  4731. DupingText1.TextSize = 14
  4732. DupingText1.TextYAlignment = Enum.TextYAlignment.Top
  4733. DupingText1.TextWrapped = true
  4734.  
  4735. MoreInfo.Name = "MoreInfo"
  4736. MoreInfo.Parent = DupeFrame
  4737. MoreInfo.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4738. MoreInfo.BorderColor3 = Color3.new(0, 1, 0)
  4739. MoreInfo.Position = UDim2.new(0, 25, 0, 240)
  4740. MoreInfo.Size = UDim2.new(0, 120, 0, 25)
  4741. MoreInfo.Font = Enum.Font.SourceSans
  4742. MoreInfo.FontSize = Enum.FontSize.Size18
  4743. MoreInfo.Text = "Info"
  4744. MoreInfo.TextScaled = true
  4745. MoreInfo.TextColor3 = Color3.new(1, 1, 1)
  4746. MoreInfo.TextSize = 18
  4747.  
  4748. PlayerFrame.Name = "PlayerFrame"
  4749. PlayerFrame.Parent = MenuFrame
  4750. PlayerFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  4751. PlayerFrame.BackgroundTransparency = 0
  4752. PlayerFrame.BorderColor3 = Color3.new(0, 1, 0)
  4753. PlayerFrame.Size = UDim2.new(0, 170, 0, 290)
  4754. PlayerFrame.Visible = false
  4755.  
  4756. PlyrSel.Name = "PlyrSel"
  4757. PlyrSel.Parent = PlayerFrame
  4758. PlyrSel.BackgroundColor3 = Color3.new(1, 1, 1)
  4759. PlyrSel.BackgroundTransparency = 0.15
  4760. PlyrSel.BorderColor3 = Color3.new(0, 1, 0)
  4761. PlyrSel.Position = UDim2.new(0, 5, 0, 5)
  4762. PlyrSel.Size = UDim2.new(0, 160, 0, 20)
  4763. PlyrSel.Font = Enum.Font.SourceSans
  4764. PlyrSel.FontSize = Enum.FontSize.Size18
  4765. PlyrSel.Text = "SELECT A PLAYER"
  4766. PlyrSel.TextColor3 = Color3.new(0, 0, 0)
  4767. PlyrSel.TextScaled = true
  4768. PlyrSel.TextSize = 17
  4769. PlyrSel.TextWrapped = true
  4770.  
  4771. Player1.Name = "Player1"
  4772. Player1.Parent = PlayerFrame
  4773. Player1.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4774. Player1.BorderColor3 = Color3.new(0, 1, 0)
  4775. Player1.Position = UDim2.new(0, 5, 0, 40)
  4776. Player1.Size = UDim2.new(0, 160, 0, 20)
  4777. Player1.Font = Enum.Font.Fantasy
  4778. Player1.FontSize = Enum.FontSize.Size18
  4779. Player1.Text = ""
  4780. Player1.TextColor3 = Color3.new(1, 1, 1)
  4781. Player1.TextSize = 16
  4782. Player1.TextWrapped = true
  4783.  
  4784. Player2.Name = "Player2"
  4785. Player2.Parent = PlayerFrame
  4786. Player2.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4787. Player2.BorderColor3 = Color3.new(0, 1, 0)
  4788. Player2.Position = UDim2.new(0, 5, 0, 65)
  4789. Player2.Size = UDim2.new(0, 160, 0, 20)
  4790. Player2.Font = Enum.Font.Fantasy
  4791. Player2.FontSize = Enum.FontSize.Size18
  4792. Player2.Text = ""
  4793. Player2.TextColor3 = Color3.new(1, 1, 1)
  4794. Player2.TextSize = 16
  4795. Player2.TextWrapped = true
  4796.  
  4797. Player3.Name = "Player3"
  4798. Player3.Parent = PlayerFrame
  4799. Player3.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4800. Player3.BorderColor3 = Color3.new(0, 1, 0)
  4801. Player3.Position = UDim2.new(0, 5, 0, 90)
  4802. Player3.Size = UDim2.new(0, 160, 0, 20)
  4803. Player3.Font = Enum.Font.Fantasy
  4804. Player3.FontSize = Enum.FontSize.Size18
  4805. Player3.Text = ""
  4806. Player3.TextColor3 = Color3.new(1, 1, 1)
  4807. Player3.TextSize = 16
  4808. Player3.TextWrapped = true
  4809.  
  4810. Player4.Name = "Player4"
  4811. Player4.Parent = PlayerFrame
  4812. Player4.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4813. Player4.BorderColor3 = Color3.new(0, 1, 0)
  4814. Player4.Position = UDim2.new(0, 5, 0, 115)
  4815. Player4.Size = UDim2.new(0, 160, 0, 20)
  4816. Player4.Font = Enum.Font.Fantasy
  4817. Player4.FontSize = Enum.FontSize.Size18
  4818. Player4.Text = ""
  4819. Player4.TextColor3 = Color3.new(1, 1, 1)
  4820. Player4.TextSize = 16
  4821. Player4.TextWrapped = true
  4822.  
  4823. Player5.Name = "Player5"
  4824. Player5.Parent = PlayerFrame
  4825. Player5.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4826. Player5.BorderColor3 = Color3.new(0, 1, 0)
  4827. Player5.Position = UDim2.new(0, 5, 0, 140)
  4828. Player5.Size = UDim2.new(0, 160, 0, 20)
  4829. Player5.Font = Enum.Font.Fantasy
  4830. Player5.FontSize = Enum.FontSize.Size18
  4831. Player5.Text = ""
  4832. Player5.TextColor3 = Color3.new(1, 1, 1)
  4833. Player5.TextSize = 16
  4834. Player5.TextWrapped = true
  4835.  
  4836. Player6.Name = "Player6"
  4837. Player6.Parent = PlayerFrame
  4838. Player6.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4839. Player6.BorderColor3 = Color3.new(0, 1, 0)
  4840. Player6.Position = UDim2.new(0, 5, 0, 165)
  4841. Player6.Size = UDim2.new(0, 160, 0, 20)
  4842. Player6.Font = Enum.Font.Fantasy
  4843. Player6.FontSize = Enum.FontSize.Size18
  4844. Player6.Text = ""
  4845. Player6.TextColor3 = Color3.new(1, 1, 1)
  4846. Player6.TextSize = 16
  4847. Player6.TextWrapped = true
  4848.  
  4849. TpPlayer.Name = "TpPlayer"
  4850. TpPlayer.Parent = PlayerFrame
  4851. TpPlayer.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4852. TpPlayer.BackgroundTransparency = 0
  4853. TpPlayer.BorderColor3 = Color3.new(0, 1, 0)
  4854. TpPlayer.Position = UDim2.new(0, 5, 0, 225)
  4855. TpPlayer.Size = UDim2.new(0, 75, 0, 35)
  4856. TpPlayer.Font = Enum.Font.Fantasy
  4857. TpPlayer.FontSize = Enum.FontSize.Size18
  4858. TpPlayer.Text = "Tp to Player"
  4859. TpPlayer.TextColor3 = Color3.new(1, 1, 1)
  4860. TpPlayer.TextScaled = true
  4861. TpPlayer.TextWrapped = true
  4862. TpPlayer.TextSize = 14
  4863.  
  4864. TpBase.Name = "TpBase"
  4865. TpBase.Parent = PlayerFrame
  4866. TpBase.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4867. TpBase.BackgroundTransparency = 0
  4868. TpBase.BorderColor3 = Color3.new(0, 1, 0)
  4869. TpBase.Position = UDim2.new(0, 90, 0, 225)
  4870. TpBase.Size = UDim2.new(0, 75, 0, 35)
  4871. TpBase.Font = Enum.Font.Fantasy
  4872. TpBase.FontSize = Enum.FontSize.Size18
  4873. TpBase.Text = "Tp to\nBase"
  4874. TpBase.TextColor3 = Color3.new(1, 1, 1)
  4875. TpPlayer.TextSize = 22
  4876.  
  4877. WalkSpeed.Name = "WalkSpeed"
  4878. WalkSpeed.Parent = MainFrame
  4879. WalkSpeed.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4880. WalkSpeed.TextColor3 = Color3.new(1, 1, 1)
  4881. WalkSpeed.BorderColor3 = Color3.new(0, 1, 0)
  4882. WalkSpeed.Position = UDim2.new(0, 155, 0, 340)
  4883. WalkSpeed.Size = UDim2.new(0, 45, 0, 20)
  4884. WalkSpeed.Font = Enum.Font.Fantasy
  4885. WalkSpeed.FontSize = Enum.FontSize.Size18
  4886. WalkSpeed.Text = "Walk"
  4887. WalkSpeed.TextSize = 17
  4888.  
  4889. WalkText.Name = "WalkText"
  4890. WalkText.Parent = MainFrame
  4891. WalkText.BackgroundColor3 = Color3.new(0, 0, 0)
  4892. WalkText.BorderColor3 = Color3.new(0, 1, 0)
  4893. WalkText.Position = UDim2.new(0, 205, 0, 340)
  4894. WalkText.Size = UDim2.new(0, 28, 0, 20)
  4895. WalkText.Font = Enum.Font.Fantasy
  4896. WalkText.FontSize = Enum.FontSize.Size18
  4897. WalkText.Text = "16"
  4898. WalkText.TextColor3 = Color3.new(1, 1, 1)
  4899. WalkText.TextSize = 17
  4900. WalkText.TextScaled = true
  4901.  
  4902. JumpPower.Name = "JumpPower"
  4903. JumpPower.Parent = MainFrame
  4904. JumpPower.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4905. JumpPower.TextColor3 = Color3.new(1, 1, 1)
  4906. JumpPower.BorderColor3 = Color3.new(0, 1, 0)
  4907. JumpPower.Position = UDim2.new(0, 243, 0, 340)
  4908. JumpPower.Size = UDim2.new(0, 49, 0, 20)
  4909. JumpPower.Font = Enum.Font.Fantasy
  4910. JumpPower.FontSize = Enum.FontSize.Size18
  4911. JumpPower.Text = "Jump"
  4912. JumpPower.TextSize = 17
  4913.  
  4914. JumpText.Name = "JumpText"
  4915. JumpText.Parent = MainFrame
  4916. JumpText.BackgroundColor3 = Color3.new(0, 0, 0)
  4917. JumpText.BorderColor3 = Color3.new(0, 1, 0)
  4918. JumpText.Position = UDim2.new(0, 297, 0, 340)
  4919. JumpText.Size = UDim2.new(0, 28, 0, 20)
  4920. JumpText.Font = Enum.Font.Fantasy
  4921. JumpText.FontSize = Enum.FontSize.Size18
  4922. JumpText.Text = "50"
  4923. JumpText.TextColor3 = Color3.new(1, 1, 1)
  4924. JumpText.TextSize = 17
  4925. JumpText.TextScaled = true
  4926.  
  4927. game.Lighting.Changed:connect(function()
  4928. game.Lighting.TimeOfDay = "12:00:00"
  4929. game.Lighting.FogEnd = 9999
  4930. game.Lighting.Brightness = 1
  4931. end)
  4932.  
  4933. --- Menus ---
  4934.  
  4935. local Menus = {
  4936. [BringTree] = BringTreeFrame;
  4937. [Waypoints] = WaypointFrame;
  4938. [Duper] = DupeFrame;
  4939. [TPPlanks] = PlankFrame;
  4940. [GoldAxe] = GoldAxeFrame;
  4941. [PlayerTp] = PlayerFrame;
  4942. [Greywood] = GreywoodFrame;
  4943. [GuiLabel] = LT2GUI2Frame;
  4944. [SellWoodPlanks] = SellFrame;
  4945. }
  4946. for button,frame in pairs(Menus) do
  4947. button.MouseButton1Click:connect(function()
  4948. if frame.Visible then
  4949. frame.Visible = false
  4950. return
  4951. end
  4952. for k,v in pairs(Menus) do
  4953. v.Visible = v == frame
  4954. end
  4955. end)
  4956. end
  4957.  
  4958. --- Open/Close ---
  4959.  
  4960. Open.MouseButton1Down:connect(function()
  4961. OpenFrame.Visible = false
  4962. MainFrame.Visible = true
  4963. end)
  4964.  
  4965. Minimize.MouseButton1Down:connect(function()
  4966. MainFrame.Visible = false
  4967. OpenFrame.Visible = true
  4968. end)
  4969.  
  4970. CloseLT2.MouseButton1Down:connect(function()
  4971. LT2CORE:destroy()
  4972. end)
  4973.  
  4974.  
  4975. local service = setmetatable({}, {
  4976. __index = function(t, k)
  4977. return game:GetService(k)
  4978. end
  4979. })
  4980.  
  4981. function Create(cls,props)
  4982. local inst = Instance.new(cls)
  4983. for i,v in pairs(props) do
  4984. inst[i] = v
  4985. end
  4986. return inst
  4987. end
  4988.  
  4989. --- TP Planks to you ---
  4990.  
  4991. checkplanks = false
  4992. local WoodPlanks={}
  4993. local ProcessedWoodList = LT2GUI.MainFrame.MenuFrame.PlankFrame.ProcessedWoodList
  4994.  
  4995. function UpdatePlanks()
  4996. local inc = 0
  4997. WoodPlanks={}
  4998. for i,v in pairs(game.Workspace.PlayerModels:GetChildren()) do
  4999. if v.Name=="Plank" and v.Owner.Value==game.Players.LocalPlayer then
  5000. if v:FindFirstChild("TreeClass") and WoodPlanks[v.TreeClass.Value] then
  5001. WoodPlanks[v.TreeClass.Value]=WoodPlanks[v.TreeClass.Value]
  5002. WoodPlanks[v.TreeClass.Value]["Wood"][v]=v
  5003. elseif v:FindFirstChild("TreeClass") then
  5004. WoodPlanks[v.TreeClass.Value]={Wood={v.WoodSection}}
  5005. end
  5006. end
  5007. end
  5008. end
  5009.  
  5010. function UpdateMovePlanks()
  5011. checkplanks = true
  5012. local inc=0
  5013. UpdatePlanks()
  5014. ProcessedWoodList:ClearAllChildren()
  5015. for i,v in pairs(WoodPlanks) do
  5016. ProcessedWoodList.CanvasSize=UDim2.new(0,0,0,25*inc)
  5017. 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)})
  5018. TPButton.MouseButton1Click:Connect(function()
  5019. sendNotice = game.ReplicatedStorage.Notices.SendUserNotice
  5020. sendNotice:Fire("Click where you want the Planks to TP to")
  5021. local ButtonPress
  5022. ButtonPress = game.Players.LocalPlayer:GetMouse().Button1Down:Connect(function()
  5023. Square = game.Players.LocalPlayer:GetMouse().Target
  5024. if (Square.Name == "OriginSquare" or Square.Name == "Square") then
  5025. ButtonPress:Disconnect()
  5026. for _, Plank in pairs(game.Workspace.PlayerModels:GetChildren()) do
  5027. if Plank.Name=="Plank" and Plank:FindFirstChild("TreeClass") then
  5028. if Plank.TreeClass.Value == i and Plank.Owner.Value == game.Players.LocalPlayer then
  5029. Plank:MoveTo(Square.Position)
  5030. for i=1,100 do
  5031. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Plank)
  5032. end
  5033. end
  5034. end
  5035. end
  5036. end
  5037. end)
  5038. end)
  5039. inc=inc+1
  5040. end
  5041. inc=0
  5042. end
  5043.  
  5044. TpAllPlanks.MouseButton1Click:Connect(function()
  5045. for _, Plank in pairs(game.Workspace.PlayerModels:GetChildren()) do
  5046. if Plank.Name=="Plank" and Plank:findFirstChild("Owner") then
  5047. if Plank.Owner.Value == game.Players.LocalPlayer then
  5048. sendNotice = game.ReplicatedStorage.Notices.SendUserNotice
  5049. sendNotice:Fire("Click where you want ALL the Planks to TP to")
  5050. local ButtonPress
  5051. ButtonPress = game.Players.LocalPlayer:GetMouse().Button1Down:Connect(function()
  5052. Square = game.Players.LocalPlayer:GetMouse().Target
  5053. if (Square.Name == "OriginSquare" or Square.Name == "Square") then
  5054. ButtonPress:Disconnect()
  5055. Plank:MoveTo(Square.Position)
  5056. for i=1,100 do
  5057. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Plank)
  5058. end
  5059. end
  5060. end)
  5061. end
  5062. end
  5063. end
  5064. end)
  5065.  
  5066. if not checkplanks then
  5067. UpdateMovePlanks()
  5068. end
  5069.  
  5070. game.Workspace.PlayerModels.ChildAdded:connect(function(Item)
  5071. if Item:FindFirstChild("Owner") and Item.Owner.Value == game.Players.LocalPlayer and Item:FindFirstChild("TreeClass") then
  5072. UpdateMovePlanks()
  5073. end
  5074. end)
  5075.  
  5076. game.Workspace.PlayerModels.ChildRemoved:connect(function(Item)
  5077. if Item:FindFirstChild("Owner") and Item.Owner.Value == game.Players.LocalPlayer and Item:FindFirstChild("TreeClass") then
  5078. UpdateMovePlanks()
  5079. end
  5080. end)
  5081.  
  5082. --- GuiInfo ---
  5083.  
  5084. GuiLabel.MouseButton1Down:connect(function()
  5085. if Lt2Info == "Info" then
  5086. Lt2Info = "Nothing"
  5087. GuiLabel.TextColor3 = Color3.new(1, 0, 1)
  5088. GuiLabel.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  5089. MenuLeftFrame.Active = true
  5090. MenuLeftFrame.Selectable = true
  5091. else
  5092. Lt2Info = "Info"
  5093. GuiLabel.TextColor3 = Color3.new(0, 1, 0)
  5094. GuiLabel.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  5095. MenuLeftFrame.Active = false
  5096. MenuLeftFrame.Selectable = false
  5097. end
  5098. end)
  5099.  
  5100. --- BringTreeInfo ---
  5101.  
  5102. BringTreeInfo1.MouseButton1Down:connect(function()
  5103. if BringTreeInfo1.Text == "Info" then
  5104. BringTreeInfo1.Text = "Close Info"
  5105. BringTreeInfo2.Visible = true
  5106. else
  5107. BringTreeInfo1.Text = "Info"
  5108. BringTreeInfo2.Visible = false
  5109. end
  5110. end)
  5111.  
  5112. --- Walkspeed/JumpPower ---
  5113.  
  5114. player = game.Players.LocalPlayer
  5115. Walk = 16
  5116. Jump = 50
  5117.  
  5118. WalkSpeed.MouseButton1Down:connect(function()
  5119. Walk = WalkText.Text
  5120. end)
  5121. JumpPower.MouseButton1Down:connect(function()
  5122. Jump = JumpText.Text
  5123. end)
  5124.  
  5125. player.Character.Humanoid.JumpPower = Jump
  5126. player.Character.Humanoid.WalkSpeed = Walk
  5127.  
  5128. player.Character.Humanoid.Changed:connect(function()
  5129. player.Character.Humanoid.JumpPower = Jump
  5130. player.Character.Humanoid.WalkSpeed = Walk
  5131. end)
  5132.  
  5133. --- Gold Axe ---
  5134.  
  5135. GoldAxeStart.MouseButton1Down:Connect(function()
  5136. GoldAxe.BackgroundColor3 = Color3.new(0, 0.5, 0)
  5137. GoldAxeStart.Text = "Active"
  5138. Detect = coroutine.wrap(function()
  5139. Player = game.Players.LocalPlayer
  5140. mouse = Player:GetMouse()
  5141. mouse.Button1Down:connect(function()
  5142. MouseDown = true
  5143. end)
  5144. mouse.Button1Up:connect(function()
  5145. MouseDown = false
  5146. end)
  5147. end)
  5148. Detect()
  5149. Player = game.Players.LocalPlayer
  5150. mouse = Player:GetMouse()
  5151. game:GetService('RunService').RenderStepped:connect(function()
  5152. if Player.Character:FindFirstChild("Tool") then
  5153. if MouseDown == true then
  5154. if mouse.Target.Name == "WoodSection" then
  5155. targetWood = mouse.Target
  5156. Tool=Player.Character.Tool
  5157. ---FaceVector
  5158. Height = targetWood.CFrame:pointToObjectSpace(mouse.Hit.p).Y + targetWood.Size.Y/2
  5159. 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)
  5160. part,_,p = workspace:FindPartOnRay(ray, Player.Character)
  5161. function fixVector(V)
  5162. return Vector3.new(math.floor(V.X + 0.5), math.floor(V.Y + 0.5), math.floor(V.Z + 0.5))
  5163. end
  5164. local faceVector = fixVector(targetWood.CFrame:vectorToObjectSpace(p))
  5165. if faceVector.Y ~= 0 then
  5166. return
  5167. end
  5168. local lookAtCFrame = CFrame.new(Player.Character.Head.Position, mouse.Hit.p)
  5169. local relativeCFrame = lookAtCFrame:toObjectSpace(targetWood.CFrame * CFrame.Angles(math.pi/2, 0, 0))
  5170. local relativeLookVector = relativeCFrame.lookVector
  5171. local m = relativeLookVector.Y >= 0 and 1 or -1
  5172. if faceVector.X == 1 then
  5173. faceVector = Vector3.new(0, 0, -1) * m
  5174. elseif faceVector.X == -1 then
  5175. faceVector = Vector3.new(0, 0, 1) * m
  5176. elseif faceVector.Z == 1 then
  5177. faceVector = Vector3.new(1, 0, 0) * m
  5178. elseif faceVector.Z == -1 then
  5179. faceVector = Vector3.new(-1, 0, 0) * m
  5180. end
  5181. local cutEvent = targetWood.Parent.CutEvent
  5182. 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})
  5183. end
  5184. end
  5185. end
  5186. end)
  5187. end)
  5188.  
  5189. --- Show Current Location
  5190.  
  5191. ShowLocation.MouseButton1Down:connect(function()
  5192.  
  5193. function round(num, numDecimalPlaces)
  5194. local mult = 10^(numDecimalPlaces or 0)
  5195. return math.floor(num * mult + 0.5) / mult
  5196. end
  5197.  
  5198. LocationX = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.x, 1)
  5199. LocationY = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.y, 1)
  5200. LocationZ = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.z, 1)
  5201. ShowLocation.Text = "Current/Set Location\n"..LocationX..", "..LocationY..", "..LocationZ
  5202. CustomTPPoint.Text = "TP to "..LocationX..", "..LocationY..", "..LocationZ
  5203. CustomLocationSet = true
  5204. end)
  5205.  
  5206. --- TP to custom location ---
  5207.  
  5208. CustomTPPoint.MouseButton1Down:connect(function()
  5209. if CustomLocationSet == true then
  5210. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  5211. uTorso.CFrame = CFrame.new(LocationX, LocationY, LocationZ)
  5212. end
  5213. end)
  5214.  
  5215. --- Player Tp ---
  5216.  
  5217. local buttons = {
  5218. Player1,
  5219. Player2,
  5220. Player3,
  5221. Player4,
  5222. Player5,
  5223. Player6
  5224. }
  5225. spawn(function()
  5226. while true do
  5227. Player1.Text = ""
  5228. Player2.Text = ""
  5229. Player3.Text = ""
  5230. Player4.Text = ""
  5231. Player5.Text = ""
  5232. Player6.Text = ""
  5233. for i, v in pairs(game.Players:GetChildren()) do
  5234. buttons[i].Text = v.Name
  5235. buttons[i].Visible = true
  5236. end
  5237. wait(0.5)
  5238. end
  5239. end)
  5240.  
  5241. Player1.MouseButton1Down:connect(function()
  5242. PlyrSel.Text = Player1.Text
  5243. end)
  5244. Player2.MouseButton1Down:connect(function()
  5245. PlyrSel.Text = Player2.Text
  5246. end)
  5247. Player3.MouseButton1Down:connect(function()
  5248. PlyrSel.Text = Player3.Text
  5249. end)
  5250. Player4.MouseButton1Down:connect(function()
  5251. PlyrSel.Text = Player4.Text
  5252. end)
  5253. Player5.MouseButton1Down:connect(function()
  5254. PlyrSel.Text = Player5.Text
  5255. end)
  5256. Player6.MouseButton1Down:connect(function()
  5257. PlyrSel.Text = Player6.Text
  5258. end)
  5259.  
  5260. TpPlayer.MouseButton1Down:connect(function()
  5261. if PlyrSel.Text == "SELECT A PLAYER" then
  5262. warn("No Player Selected")
  5263. else
  5264. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace[PlyrSel.Text].HumanoidRootPart.CFrame
  5265. end
  5266. end)
  5267. TpBase.MouseButton1Down:connect(function()
  5268. for i, v in pairs(game.Workspace.Properties:GetChildren()) do
  5269. if v.Owner.Value == game.Players[PlyrSel.Text] then
  5270. local p= CFrame.new(v.OriginSquare.CFrame.x, v.OriginSquare.CFrame.y +3.5, v.OriginSquare.CFrame.z)
  5271. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = p
  5272. end
  5273. end
  5274. end)
  5275.  
  5276. --- NoClip ---
  5277.  
  5278. noclip = false
  5279. game:GetService('RunService').Stepped:connect(function()
  5280. if noclip then
  5281. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  5282. end
  5283. end)
  5284. NoClip.MouseButton1Down:connect(function()
  5285. noclip = not noclip
  5286. if NoClip.Text == "Enable NoClip" then
  5287. NoClip.Text = "Disable NoClip"
  5288. NoClip.BackgroundColor3 = Color3.new(0, 0.5, 0)
  5289. else
  5290. NoClip.Text = "Enable NoClip"
  5291. NoClip.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  5292. end
  5293. end)
  5294.  
  5295. --- Waypoints ---
  5296.  
  5297. local WayPoints = {
  5298. ["Wood R Us"] = CFrame.new(265, 5, 57),
  5299. ["SpawnPoint"] = CFrame.new(155, 5, 74),
  5300. ["Land Store"] = CFrame.new(258, 5, -99),
  5301. ["Link's Logic"] = CFrame.new(4607, 9, -798),
  5302. ["Cave"] = CFrame.new(3581, -177, 430),
  5303. ["Volcano"] = CFrame.new(-1585, 625, 1140),
  5304. ["Swamp"] = CFrame.new(-1209, 138, -801),
  5305. ["Palm Island"] = CFrame.new(2549, 5, -42),
  5306. ["Fancy Furnishings"] = CFrame.new(491, 13, -1720),
  5307. ["Boxed Cars"] = CFrame.new(509, 5.2, -1463),
  5308. ["Fine Arts Shop"] = CFrame.new(5207, -156, 719),
  5309. ["Bob's Shack"] = CFrame.new(260, 10, -2542),
  5310. ["Dock"] = CFrame.new(1114, 3.2, -197),
  5311. ["Bridge"] = CFrame.new(113, 15, -977),
  5312. ["End Times"] = CFrame.new(113, -204, -951),
  5313. ["Shrine Of Sight"] = CFrame.new(-1600, 205, 919),
  5314. ["The Den"] = CFrame.new(323, 49, 1930),
  5315. ["Volcano Win"] = CFrame.new(-1675, 358, 1476),
  5316. ["Ski Lodge"] = CFrame.new(1244, 66, 2306),
  5317. ["Strange Man"] = CFrame.new(1061, 20, 1131)
  5318. }
  5319.  
  5320. WoodRUs.MouseButton1Down:connect(function()
  5321. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  5322. uTorso.CFrame = WayPoints["Wood R Us"]
  5323. end)
  5324.  
  5325. SpawnPoint.MouseButton1Down:connect(function()
  5326. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  5327. uTorso.CFrame = WayPoints["SpawnPoint"]
  5328. end)
  5329.  
  5330. LandStore.MouseButton1Down:connect(function()
  5331. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  5332. uTorso.CFrame = WayPoints["Land Store"]
  5333. end)
  5334.  
  5335. LinksLogic.MouseButton1Down:connect(function()
  5336. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  5337. uTorso.CFrame = WayPoints["Link's Logic"]
  5338. end)
  5339.  
  5340. Cave.MouseButton1Down:connect(function()
  5341. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  5342. uTorso.CFrame = WayPoints["Cave"]
  5343. end)
  5344.  
  5345. Volcano.MouseButton1Down:connect(function()
  5346. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  5347. uTorso.CFrame = WayPoints["Volcano"]
  5348. end)
  5349.  
  5350. Swamp.MouseButton1Down:connect(function()
  5351. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  5352. uTorso.CFrame = WayPoints["Swamp"]
  5353. end)
  5354.  
  5355. PalmIsland.MouseButton1Down:connect(function()
  5356. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  5357. uTorso.CFrame = WayPoints["Palm Island"]
  5358. end)
  5359.  
  5360. FancyFurnishings.MouseButton1Down:connect(function()
  5361. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  5362. uTorso.CFrame = WayPoints["Fancy Furnishings"]
  5363. end)
  5364.  
  5365. BoxedCars.MouseButton1Down:connect(function()
  5366. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  5367. uTorso.CFrame = WayPoints["Boxed Cars"]
  5368. end)
  5369.  
  5370. FineArtsShop.MouseButton1Down:connect(function()
  5371. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  5372. uTorso.CFrame = WayPoints["Fine Arts Shop"]
  5373. end)
  5374.  
  5375. BobsShack.MouseButton1Down:connect(function()
  5376. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  5377. uTorso.CFrame = WayPoints["Bob's Shack"]
  5378. end)
  5379.  
  5380. Dock.MouseButton1Down:connect(function()
  5381. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  5382. uTorso.CFrame = WayPoints["Dock"]
  5383. end)
  5384.  
  5385. Bridge.MouseButton1Down:connect(function()
  5386. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  5387. uTorso.CFrame = WayPoints["Bridge"]
  5388. end)
  5389.  
  5390. EndTimes.MouseButton1Down:connect(function()
  5391. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  5392. uTorso.CFrame = WayPoints["End Times"]
  5393. end)
  5394.  
  5395. ShrineOfSight.MouseButton1Down:connect(function()
  5396. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  5397. uTorso.CFrame = WayPoints["Shrine Of Sight"]
  5398. end)
  5399.  
  5400. TheDen.MouseButton1Down:connect(function()
  5401. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  5402. uTorso.CFrame = WayPoints["The Den"]
  5403. end)
  5404.  
  5405. VolcanoWin.MouseButton1Down:connect(function()
  5406. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  5407. uTorso.CFrame = WayPoints["Volcano Win"]
  5408. end)
  5409.  
  5410. SkiLodge.MouseButton1Down:connect(function()
  5411. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  5412. uTorso.CFrame = WayPoints["Ski Lodge"]
  5413. end)
  5414.  
  5415. StrangeMan.MouseButton1Down:connect(function()
  5416. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  5417. uTorso.CFrame = WayPoints["Strange Man"]
  5418. end)
  5419.  
  5420. --- Make Greywood ---
  5421.  
  5422. GreywoodStart.MouseButton1Down:Connect(function()
  5423. if GreyStart == "Nothing" then
  5424. GreyStart = "On"
  5425. GreywoodStart.BackgroundColor3 = Color3.new(0, 0.5, 0)
  5426. GreywoodStart.Text = "Stop"
  5427. for i,v in next,workspace.PlayerModels:GetChildren() do
  5428. if v:FindFirstChild("Type") then
  5429. if v.Type.Value == "Blueprint" then
  5430. v.Type.Value = "Structure"
  5431. end
  5432. end
  5433. end
  5434. else
  5435. GreyStart = "Nothing"
  5436. GreywoodStart.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  5437. GreywoodStart.Text = "Start"
  5438. for i,v in next,workspace.PlayerModels:GetChildren() do
  5439. if v:FindFirstChild("Type") then
  5440. if v.Type.Value == "Structure" then
  5441. v.Type.Value = "Blueprint"
  5442. end
  5443. end
  5444. end
  5445. end
  5446. end)
  5447.  
  5448. --- Anti AFK ---
  5449.  
  5450. AntiAFK.MouseButton1Down:Connect(function()
  5451. if afkactive == true then
  5452. afkactive = false
  5453. AntiAFK.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  5454. AntiAFK.Text = "Start Anti-AFK Mode"
  5455. elseif afkactive == false then
  5456. afkactive = true
  5457. AntiAFK.BackgroundColor3 = Color3.new(0, 0.5, 0)
  5458. AntiAFK.Text = "Stop Anti-AFK Mode"
  5459.  
  5460. logtime = coroutine.wrap(function()
  5461. afktotaltime=0
  5462. while afkactive == true do
  5463. wait(1)
  5464. afktotaltime=afktotaltime+1
  5465. AntiAFKtime.Text = "AFK for: "..afktotaltime.." Seconds"
  5466. end
  5467. end)
  5468.  
  5469. messageBot = coroutine.wrap(function()
  5470. while afkactive == true do
  5471. wait(300)
  5472. possiblechats = {"afk", "Away from keyboard", "I'm AFK"}
  5473. decide=math.random(1,#possiblechats)
  5474. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(possiblechats[decide], "All")
  5475. game.Players:Chat("/e point")
  5476. end
  5477. end)
  5478.  
  5479. moveChar = coroutine.wrap(function()
  5480. plr = game:service'Players'.LocalPlayer
  5481. char = plr.Character
  5482. hum = char:FindFirstChildOfClass'Humanoid'
  5483. while afkactive==true do
  5484. wait(1)
  5485. hum:Move(Vector3.new(1, 0, 0), false)
  5486. wait(1)
  5487. hum:Move(Vector3.new(-1, 0, 0), false)
  5488. wait(1)
  5489. hum:Move(Vector3.new(1, 0, 0), false)
  5490. wait(1)
  5491. hum:Move(Vector3.new(-1, 0, 0), false)
  5492. wait(1)
  5493. hum:Move(Vector3.new(0, 1, 0), false)
  5494. wait(1)
  5495. hum:Move(Vector3.new(0, 1, 0), false)
  5496. wait(60)
  5497. end
  5498. end)
  5499.  
  5500. logtime()
  5501. moveChar()
  5502. messageBot()
  5503. end
  5504. end)
  5505.  
  5506. --- Plot Tp ---
  5507.  
  5508. PlotTp.MouseButton1Down:connect(function()
  5509. for i,v in pairs(game.Workspace.Properties:GetChildren()) do
  5510. if v.Owner.Value == game.Players.LocalPlayer then
  5511. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.OriginSquare.CFrame + Vector3.new(0,10,0)
  5512. end
  5513. end
  5514. end)
  5515.  
  5516. ---TP Wood ---
  5517.  
  5518. TPWood.MouseButton1Click:Connect(function()
  5519. for _, Log in pairs(service.Workspace.LogModels:GetChildren()) do
  5520. if Log.Name:sub(1, 6) == "Loose_" and Log:findFirstChild("Owner") then
  5521. if Log.Owner.Value == service.Players.LocalPlayer then
  5522. Log:MoveTo(service.Players.LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0, 20, 0))
  5523. for i=1,100 do
  5524. service.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Log)
  5525. end
  5526. end
  5527. end
  5528. end
  5529. end)
  5530.  
  5531. --- Sell Wood ---
  5532.  
  5533. SellWood.MouseButton1Click:Connect(function()
  5534. for _, Log in pairs(service.Workspace.LogModels:GetChildren()) do
  5535. if Log.Name:sub(1, 6) == "Loose_" and Log:findFirstChild("Owner") then
  5536. if Log.Owner.Value == service.Players.LocalPlayer then
  5537. for i,v in pairs(Log:GetChildren()) do
  5538. if v.Name=="WoodSection" then
  5539. spawn(function()
  5540. for i=1,10 do
  5541. wait()
  5542. v.CFrame=CFrame.new(Vector3.new(315, -0.296, 85.791))*CFrame.Angles(math.rad(90),0,0)
  5543. end
  5544. end)
  5545. end
  5546. end
  5547. spawn(function()
  5548. for i=1,20 do
  5549. wait()
  5550. service.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Log)
  5551. end
  5552. end)
  5553. end
  5554. end
  5555. end
  5556. end)
  5557.  
  5558. --- Sell Planks ---
  5559.  
  5560. SellPlanks.MouseButton1Click:Connect(function()
  5561. for _, Plank in pairs(service.Workspace.PlayerModels:GetChildren()) do
  5562. if Plank.Name=="Plank" and Plank:findFirstChild("Owner") then
  5563. if Plank.Owner.Value == service.Players.LocalPlayer then
  5564. for i,v in pairs(Plank:GetChildren()) do
  5565. if v.Name=="WoodSection" then
  5566. spawn(function()
  5567. for i=1,10 do
  5568. wait()
  5569. v.CFrame=CFrame.new(Vector3.new(315, -0.296, 85.791))*CFrame.Angles(math.rad(90),0,0)
  5570. end
  5571. end)
  5572. end
  5573. end
  5574. spawn(function()
  5575. for i=1,20 do
  5576. wait()
  5577. service.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Plank)
  5578. end
  5579. end)
  5580. end
  5581. end
  5582. end
  5583. end)
  5584.  
  5585. --- God Mode ---
  5586.  
  5587. GodMode.MouseButton1Click:Connect(function()
  5588. GodMode.BackgroundColor3 = Color3.new(0, 0.5, 0)
  5589. game.Players.LocalPlayer.Character.Humanoid.Name = "1"
  5590. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  5591. l.Parent = game.Players.LocalPlayer.Character
  5592. l.Name = "Humanoid"
  5593. wait(0.1)
  5594. game.Players.LocalPlayer.Character["1"]:Destroy()
  5595. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  5596. game.Players.LocalPlayer.Character.Animate.Disabled = true
  5597. l.Changed:Connect(function()
  5598. if l then
  5599. l.WalkSpeed=Walk
  5600. l.JumpPower=Jump
  5601. end
  5602. end)
  5603. end)
  5604.  
  5605. --- Dupe ---
  5606.  
  5607. MoreInfo.MouseButton1Down:connect(function()
  5608. if MoreInfo.Text == "Info" then
  5609. MoreInfo.Text = "Close Info"
  5610. Info.Visible = true
  5611. else
  5612. MoreInfo.Text = "Info"
  5613. Info.Visible = false
  5614. end
  5615. end)
  5616.  
  5617. Option = false
  5618.  
  5619. Dupe.MouseButton1Down:connect(function()
  5620. plr = game:GetService("Players").LocalPlayer
  5621. slot = plr.CurrentSaveSlot
  5622. if Option == false then
  5623. if slot.Value == -1 then
  5624. Option = true
  5625. slot.RobloxLocked = true
  5626. Duper.Text = "Duping Active"
  5627. Duper.BackgroundColor3 = Color3.new(0, 0.5, 0)
  5628. Duper.TextColor3 = Color3.new(1, 1, 1)
  5629. Dupe.BackgroundColor3 = Color3.new(0, 0.5, 0)
  5630. Dupe.TextColor3 = Color3.new(1, 1, 1)
  5631. Dupe.Text = "Duping"
  5632. 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)."
  5633. end
  5634. else
  5635. Option = false
  5636. slot.RobloxLocked = false
  5637. Duper.Text = "Item Duping"
  5638. Duper.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  5639. Duper.TextColor3 = Color3.new(1, 1, 1)
  5640. Dupe.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  5641. Dupe.TextColor3 = Color3.new(1, 1, 1)
  5642. Dupe.Text = "Dupe"
  5643. DupingText1.Text = "Loaded Slot Will Save"
  5644. end
  5645. end)
  5646.  
  5647. --- Water Walk ---
  5648.  
  5649. WaterCollide.MouseButton1Down:connect(function()
  5650. if WCollide == "Nothing" then
  5651. WCollide = "On"
  5652. WaterCollide.BackgroundColor3 = Color3.new(0, 0.5, 0)
  5653. WaterCollide.Text = "Water is Solid"
  5654. for i,v in pairs(game.Workspace.Water:GetChildren()) do
  5655. if v:IsA("Part") then
  5656. v.CanCollide = true
  5657. end
  5658. end
  5659. else
  5660. WCollide = "Nothing"
  5661. WaterCollide.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  5662. WaterCollide.Text = "Walk on Water"
  5663. for i,v in pairs(game.Workspace.Water:GetChildren()) do
  5664. if v:IsA("Part") then
  5665. v.CanCollide = false
  5666. end
  5667. end
  5668. end
  5669. end)
  5670.  
  5671. --- BTools ---
  5672.  
  5673. CopyTool.MouseButton1Down:connect(function()
  5674. if BTool == "Copy" then
  5675. BTool = "Nothing"
  5676. CopyTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  5677. else
  5678. BTool = "Copy"
  5679. CopyTool.BackgroundColor3 = Color3.new(0, 0.5, 0)
  5680. DeleteTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  5681. MoveTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  5682. end
  5683. end)
  5684.  
  5685. DeleteTool.MouseButton1Down:connect(function()
  5686. if BTool == "Delete" then
  5687. BTool = "Nothing"
  5688. DeleteTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  5689. else
  5690. BTool = "Delete"
  5691. DeleteTool.BackgroundColor3 = Color3.new(0, 0.5, 0)
  5692. CopyTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  5693. MoveTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  5694. end
  5695. end)
  5696.  
  5697. MoveTool.MouseButton1Down:connect(function()
  5698. if BTool == "Move" then
  5699. BTool = "Nothing"
  5700. MoveTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  5701. else
  5702. BTool = "Move"
  5703. MoveTool.BackgroundColor3 = Color3.new(0, 0.5, 0)
  5704. CopyTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  5705. DeleteTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  5706. end
  5707. end)
  5708.  
  5709. Mouse.Button1Up:connect(function()
  5710. MDown = false
  5711. end)
  5712.  
  5713. Mouse.Button1Down:connect(function()
  5714. MDown = true
  5715. if BTool == "Copy" then
  5716. if Mouse.Target ~= nil then
  5717. Clone = Mouse.Target:clone()
  5718. Clone.Parent = game.Workspace
  5719. end
  5720. end
  5721.  
  5722. if BTool == "Delete" then
  5723. if Mouse.Target ~= nil then
  5724. Mouse.Target:remove()
  5725. end
  5726. end
  5727.  
  5728. if BTool == "Move" then
  5729. if Mouse.Target ~= nil then
  5730. MoveObject = Mouse.Target
  5731. end
  5732. end
  5733.  
  5734. wait()
  5735. if Clone ~= nil then
  5736. Clone.CanCollide = false
  5737. repeat
  5738. wait()
  5739. SubX = Clone.Size.X/2
  5740. SubY = Clone.Size.Y/2
  5741. SubZ = Clone.Size.Z/2
  5742. Clone.Position = Vector3.new(Mouse.Hit.X - SubX, Mouse.Hit.Y - SubY, Mouse.Hit.Z - SubZ)
  5743. until MDown == false
  5744. Clone.CanCollide = true
  5745. Clone.Position = Clone.Position + Vector3.new(SubX, SubY, SubZ)
  5746. Clone = nil
  5747. end
  5748.  
  5749. if MoveObject ~= nil then
  5750. MoveObject.CanCollide = false
  5751. repeat
  5752. wait()
  5753. SubX = MoveObject.Size.X/2
  5754. SubY = MoveObject.Size.Y/2
  5755. SubZ = MoveObject.Size.Z/2
  5756. MoveObject.Position = Vector3.new(Mouse.Hit.X - SubX, Mouse.Hit.Y - SubY, Mouse.Hit.Z - SubZ)
  5757. until MDown == false
  5758. MoveObject.CanCollide = true
  5759. MoveObject.Position = MoveObject.Position + Vector3.new(SubX, SubY, SubZ)
  5760. MoveObject= nil
  5761. end
  5762. end)
  5763.  
  5764. --- TP Tool ---
  5765.  
  5766. TPTool.MouseButton1Down:connect(function()
  5767. local Tele = Instance.new("Tool", game.Players.LocalPlayer.Backpack)
  5768. Tele.RequiresHandle = false
  5769. Tele.RobloxLocked = true
  5770. Tele.Name = "TPTool"
  5771. Tele.ToolTip = "Teleport Tool"
  5772. Tele.Equipped:connect(function(Mouse)
  5773. Mouse.Button1Down:connect(function()
  5774. if Mouse.Target then
  5775. game.Workspace:FindFirstChild(game.Players.LocalPlayer.Name).HumanoidRootPart.CFrame = (CFrame.new(Mouse.Hit.x, Mouse.Hit.y + 5, Mouse.Hit.z))
  5776. end
  5777. end)
  5778. end)
  5779. end)
  5780.  
  5781. --- Departure ---
  5782.  
  5783. game.Workspace.Ferry.TimeToDeparture.Changed:connect(function()
  5784. Depart.Text = "Ferry Departs: ".. game.Workspace.Ferry.TimeToDeparture.Value
  5785. if Depart.Text == "Ferry Departs: 0" then
  5786. wait(6)
  5787. Depart.Text = "Ferry has Departed"
  5788. else
  5789. Depart.Text = "Ferry Departs: ".. game.Workspace.Ferry.TimeToDeparture.Value
  5790. end
  5791. end)
  5792.  
  5793. --- Spawn Tree ---
  5794.  
  5795. function bringtree(telewoodtype)
  5796. local Wood = {
  5797. "Cherry",
  5798. "Palm",
  5799. "CaveCrawler",
  5800. "Generic",
  5801. "Spooky",
  5802. "Fir",
  5803. "GreenSwampy",
  5804. "Oak",
  5805. "Birch",
  5806. "Volcano",
  5807. "LoneCave",
  5808. "GoldSwampy",
  5809. "Koa",
  5810. "Walnut"
  5811. }
  5812.  
  5813. local NewRegionNames = {}
  5814.  
  5815. --Name Changer For Seperating What Is What
  5816.  
  5817. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  5818. if l.Name == "TreeRegion" then
  5819. if l ~= nil then
  5820. for i, b in pairs(l:GetChildren()) do
  5821. if b:IsA("Model") then
  5822. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[1] then
  5823. l.Name = Wood[1]
  5824. warn("TreeRegion #1 Has Been Changed To: "..Wood[1])
  5825. table.insert(NewRegionNames, l.Name)
  5826. end
  5827. end
  5828. end
  5829. end
  5830. end
  5831. end
  5832.  
  5833. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  5834. if l.Name == "TreeRegion" then
  5835. if l ~= nil then
  5836. for i, b in pairs(l:GetChildren()) do
  5837. if b:IsA("Model") then
  5838. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[2] then
  5839. l.Name = Wood[2]
  5840. warn("TreeRegion #2 Has Been Changed To: "..Wood[2])
  5841. table.insert(NewRegionNames, l.Name)
  5842. end
  5843. end
  5844. end
  5845. end
  5846. end
  5847. end
  5848.  
  5849. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  5850. if l.Name == "TreeRegion" then
  5851. if l ~= nil then
  5852. for i, b in pairs(l:GetChildren()) do
  5853. if b:IsA("Model") then
  5854. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[3] then
  5855. l.Name = Wood[3]
  5856. warn("TreeRegion #3 Has Been Changed To: "..Wood[3])
  5857. table.insert(NewRegionNames, l.Name)
  5858. end
  5859. end
  5860. end
  5861. end
  5862. end
  5863. end
  5864.  
  5865. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  5866. if l.Name == "TreeRegion" then
  5867. if l ~= nil then
  5868. for i, b in pairs(l:GetChildren()) do
  5869. if b:IsA("Model") then
  5870. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[4] then
  5871. l.Name = Wood[4]
  5872. warn("TreeRegion #4 Has Been Changed To: "..Wood[4])
  5873. table.insert(NewRegionNames, l.Name)
  5874. end
  5875. end
  5876. end
  5877. end
  5878. end
  5879. end
  5880.  
  5881. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  5882. if l.Name == "TreeRegion" then
  5883. if l ~= nil then
  5884. for i, b in pairs(l:GetChildren()) do
  5885. if b:IsA("Model") then
  5886. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[5] then
  5887. l.Name = Wood[5]
  5888. warn("TreeRegion #5 Has Been Changed To: "..Wood[5])
  5889. table.insert(NewRegionNames, l.Name)
  5890. end
  5891. end
  5892. end
  5893. end
  5894. end
  5895. end
  5896.  
  5897. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  5898. if l.Name == "TreeRegion" then
  5899. if l ~= nil then
  5900. for i, b in pairs(l:GetChildren()) do
  5901. if b:IsA("Model") then
  5902. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[6] then
  5903. l.Name = Wood[6]
  5904. warn("TreeRegion #6 Has Been Changed To: "..Wood[6])
  5905. table.insert(NewRegionNames, l.Name)
  5906. end
  5907. end
  5908. end
  5909. end
  5910. end
  5911. end
  5912.  
  5913. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  5914. if l.Name == "TreeRegion" then
  5915. if l ~= nil then
  5916. for i, b in pairs(l:GetChildren()) do
  5917. if b:IsA("Model") then
  5918. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[7] then
  5919. l.Name = Wood[7]
  5920. warn("TreeRegion #7 Has Been Changed To: "..Wood[7])
  5921. table.insert(NewRegionNames, l.Name)
  5922. end
  5923. end
  5924. end
  5925. end
  5926. end
  5927. end
  5928.  
  5929. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  5930. if l.Name == "TreeRegion" then
  5931. if l ~= nil then
  5932. for i, b in pairs(l:GetChildren()) do
  5933. if b:IsA("Model") then
  5934. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[8] then
  5935. l.Name = Wood[8]
  5936. warn("TreeRegion #8 Has Been Changed To: "..Wood[8])
  5937. table.insert(NewRegionNames, l.Name)
  5938. end
  5939. end
  5940. end
  5941. end
  5942. end
  5943. end
  5944.  
  5945. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  5946. if l.Name == "TreeRegion" then
  5947. if l ~= nil then
  5948. for i, b in pairs(l:GetChildren()) do
  5949. if b:IsA("Model") then
  5950. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[9] then
  5951. l.Name = Wood[9]
  5952. warn("TreeRegion #9 Has Been Changed To: "..Wood[9])
  5953. table.insert(NewRegionNames, l.Name)
  5954. end
  5955. end
  5956. end
  5957. end
  5958. end
  5959. end
  5960.  
  5961. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  5962. if l.Name == "TreeRegion" then
  5963. if l ~= nil then
  5964. for i, b in pairs(l:GetChildren()) do
  5965. if b:IsA("Model") then
  5966. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[10] then
  5967. l.Name = Wood[10]
  5968. warn("TreeRegion #10 Has Been Changed To: "..Wood[10])
  5969. table.insert(NewRegionNames, l.Name)
  5970. end
  5971. end
  5972. end
  5973. end
  5974. end
  5975. end
  5976.  
  5977. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  5978. if l.Name == "TreeRegion" then
  5979. if l ~= nil then
  5980. for i, b in pairs(l:GetChildren()) do
  5981. if b:IsA("Model") then
  5982. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[11] then
  5983. l.Name = Wood[11]
  5984. warn("TreeRegion #11 Has Been Changed To: "..Wood[11])
  5985. table.insert(NewRegionNames, l.Name)
  5986. end
  5987. end
  5988. end
  5989. end
  5990. end
  5991. end
  5992.  
  5993. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  5994. if l.Name == "TreeRegion" then
  5995. if l ~= nil then
  5996. for i, b in pairs(l:GetChildren()) do
  5997. if b:IsA("Model") then
  5998. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[12] then
  5999. l.Name = Wood[12]
  6000. warn("TreeRegion #12 Has Been Changed To: "..Wood[12])
  6001. table.insert(NewRegionNames, l.Name)
  6002. end
  6003. end
  6004. end
  6005. end
  6006. end
  6007. end
  6008.  
  6009. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  6010. if l.Name == "TreeRegion" then
  6011. if l ~= nil then
  6012. for i, b in pairs(l:GetChildren()) do
  6013. if b:IsA("Model") then
  6014. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[13] then
  6015. l.Name = Wood[13]
  6016. warn("TreeRegion #13 Has Been Changed To: "..Wood[13])
  6017. table.insert(NewRegionNames, l.Name)
  6018. end
  6019. end
  6020. end
  6021. end
  6022. end
  6023. end
  6024.  
  6025. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  6026. if l.Name == "TreeRegion" then
  6027. if l ~= nil then
  6028. for i, b in pairs(l:GetChildren()) do
  6029. if b:IsA("Model") then
  6030. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[14] then
  6031. l.Name = Wood[14]
  6032. warn("TreeRegion #14 Has Been Changed To: "..Wood[14])
  6033. table.insert(NewRegionNames, l.Name)
  6034. end
  6035. end
  6036. end
  6037. end
  6038. end
  6039. end
  6040.  
  6041. --Names Checker
  6042.  
  6043. for i, v in pairs(game:GetService("Workspace"):GetChildren()) do
  6044. print(v.Name)
  6045. end
  6046.  
  6047. --Teleporter
  6048.  
  6049. if telewoodtype == Wood[1] then
  6050. for i, v in pairs(game:GetService("Workspace")[Wood[1]]:GetChildren()) do
  6051. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[1] then
  6052. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  6053. end
  6054. end
  6055. end
  6056.  
  6057. if telewoodtype == Wood[2] then
  6058. for i, v in pairs(game:GetService("Workspace")[Wood[2]]:GetChildren()) do
  6059. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[2] then
  6060. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  6061. end
  6062. end
  6063. end
  6064.  
  6065. if telewoodtype == Wood[3] then
  6066. for i, v in pairs(game:GetService("Workspace")[Wood[3]]:GetChildren()) do
  6067. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[3] then
  6068. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  6069. end
  6070. end
  6071. end
  6072.  
  6073. if telewoodtype == Wood[4] then
  6074. for i, v in pairs(game:GetService("Workspace")[Wood[4]]:GetChildren()) do
  6075. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[4] then
  6076. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  6077. end
  6078. end
  6079. end
  6080.  
  6081. if telewoodtype == Wood[5] then
  6082. for i, v in pairs(game:GetService("Workspace")[Wood[5]]:GetChildren()) do
  6083. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[5] then
  6084. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  6085. end
  6086. end
  6087. end
  6088.  
  6089. if telewoodtype == Wood[6] then
  6090. for i, v in pairs(game:GetService("Workspace")[Wood[6]]:GetChildren()) do
  6091. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[6] then
  6092. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  6093. end
  6094. end
  6095. end
  6096.  
  6097. if telewoodtype == Wood[7] then
  6098. for i, v in pairs(game:GetService("Workspace")[Wood[7]]:GetChildren()) do
  6099. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[7] then
  6100. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  6101. end
  6102. end
  6103. end
  6104.  
  6105. if telewoodtype == Wood[8] then
  6106. for i, v in pairs(game:GetService("Workspace")[Wood[8]]:GetChildren()) do
  6107. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[8] then
  6108. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  6109. end
  6110. end
  6111. end
  6112.  
  6113. if telewoodtype == Wood[9] then
  6114. for i, v in pairs(game:GetService("Workspace")[Wood[9]]:GetChildren()) do
  6115. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[9] then
  6116. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  6117. end
  6118. end
  6119. end
  6120.  
  6121. if telewoodtype == Wood[10] then
  6122. for i, v in pairs(game:GetService("Workspace")[Wood[10]]:GetChildren()) do
  6123. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[10] then
  6124. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  6125. end
  6126. end
  6127. end
  6128.  
  6129. if telewoodtype == Wood[11] then
  6130. for i, v in pairs(game:GetService("Workspace")[Wood[11]]:GetChildren()) do
  6131. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[11] then
  6132. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  6133. end
  6134. end
  6135. end
  6136.  
  6137. if telewoodtype == Wood[12] then
  6138. for i, v in pairs(game:GetService("Workspace")[Wood[12]]:GetChildren()) do
  6139. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[12] then
  6140. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  6141. end
  6142. end
  6143. end
  6144.  
  6145. if telewoodtype == Wood[13] then
  6146. for i, v in pairs(game:GetService("Workspace")[Wood[13]]:GetChildren()) do
  6147. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[13] then
  6148. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  6149. end
  6150. end
  6151. end
  6152.  
  6153. if telewoodtype == Wood[14] then
  6154. for i, v in pairs(game:GetService("Workspace")[Wood[14]]:GetChildren()) do
  6155. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[14] then
  6156. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  6157. end
  6158. end
  6159. end
  6160. end
  6161.  
  6162. OakTree.MouseButton1Down:Connect(function()
  6163. bringtree('Generic')
  6164. end)
  6165.  
  6166. CherryTree.MouseButton1Down:Connect(function()
  6167. bringtree('Cherry')
  6168. end)
  6169.  
  6170. PalmTree.MouseButton1Down:Connect(function()
  6171. bringtree('Palm')
  6172. end)
  6173.  
  6174. CaveCrawlerTree.MouseButton1Down:Connect(function()
  6175. bringtree('CaveCrawler')
  6176. end)
  6177.  
  6178. SpookyTree.MouseButton1Down:Connect(function()
  6179. bringtree('Spooky')
  6180. end)
  6181.  
  6182. FirTree.MouseButton1Down:Connect(function()
  6183. bringtree('Fir')
  6184. end)
  6185.  
  6186. GreenTree.MouseButton1Down:Connect(function()
  6187. bringtree('GreenSwampy')
  6188. end)
  6189.  
  6190. BirchTree.MouseButton1Down:Connect(function()
  6191. bringtree('Birch')
  6192. end)
  6193.  
  6194. VolcanoTree.MouseButton1Down:Connect(function()
  6195. bringtree('Volcano')
  6196. end)
  6197.  
  6198. EndTimesTree.MouseButton1Down:Connect(function()
  6199. bringtree('LoneCave')
  6200. end)
  6201.  
  6202. ElmTree.MouseButton1Down:Connect(function()
  6203. bringtree('Oak')
  6204. end)
  6205.  
  6206. KoaTree.MouseButton1Down:Connect(function()
  6207. bringtree('Koa')
  6208. end)
  6209.  
  6210. GoldTree.MouseButton1Down:Connect(function()
  6211. bringtree('GoldSwampy')
  6212. end)
  6213.  
  6214. WalnutTree.MouseButton1Down:Connect(function()
  6215. bringtree('Walnut')
  6216. end)
  6217.  
  6218. --- ReJoin Server ---
  6219.  
  6220. ReJoinServer.MouseButton1Down:connect(function()
  6221. local placeId = "13822889"
  6222. game:GetService("TeleportService"):Teleport(placeId)
  6223. end)
  6224.  
  6225. --- End ---
Add Comment
Please, Sign In to add comment