Guest User

Untitled

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