thang28602

Untitled

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