Advertisement
Guest User

Copy Paste

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