xShadowExploits

Untitled

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