Advertisement
Guest User

LT2 GUI

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