AanWarbhe

Lumber Tycoon 2 Teleport By:AanWarbhe

Feb 23rd, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 104.87 KB | None | 0 0
  1. -- Lumber Tycoon 2 Gui Created by AanWarbhe @ AanDimyati
  2. -- Discord https://discord.gg/xzXgW9Y
  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 ---
Add Comment
Please, Sign In to add comment