FilterYT

Untitled

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