Advertisement
tntmyles

LumberTycoon2

Jul 23rd, 2018
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 106.94 KB | None | 0 0
  1. Mouse = game.Players.LocalPlayer:GetMouse()
  2.  
  3. Client = game.ReplicatedStorage.Interaction.ClientSetListPlayer
  4. players = game.Players
  5. for i, v in pairs(players:GetPlayers()) do
  6. if v.Name ~= players.LocalPlayer.Name then
  7. Client:InvokeServer(players.LocalPlayer.BlacklistFolder, v, true)
  8. end
  9. end
  10. players.PlayerAdded:connect(function(plr)
  11. Client:InvokeServer(players.LocalPlayer.BlacklistFolder, plr, true)
  12. end)
  13.  
  14. --- Fly ---
  15.  
  16. function fly()
  17. for i,v in pairs(script:GetChildren()) do
  18. pcall(function() v.Value = "" end)
  19. game:GetService("Debris"):AddItem(v,.1)
  20. end
  21.  
  22. function weld(p0,p1,c0,c1,par)
  23. local w = Instance.new("Weld",p0 or par)
  24. w.Part0 = p0
  25. w.Part1 = p1
  26. w.C0 = c0 or CFrame.new()
  27. w.C1 = c1 or CFrame.new()
  28. return w
  29. end
  30.  
  31. local motors = {}
  32.  
  33. function motor(p0,p1,c0,c1,des,vel,par)
  34. local w = Instance.new("Motor6D",p0 or par)
  35. w.Part0 = p0
  36. w.Part1 = p1
  37. w.C0 = c0 or CFrame.new()
  38. w.C1 = c1 or CFrame.new()
  39. w.MaxVelocity = tonumber(vel) or .05
  40. w.DesiredAngle = tonumber(des) or 0
  41. return w
  42. end
  43.  
  44. function lerp(a,b,c)
  45. return a+(b-a)*c
  46. end
  47.  
  48. function clerp(c1,c2,al)
  49. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  50. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  51. for i,v in pairs(com1) do
  52. com1[i] = lerp(v,com2[i],al)
  53. end
  54. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  55. end
  56.  
  57. function ccomplerp(c1,c2,al)
  58. local com1 = {c1:components()}
  59. local com2 = {c2:components()}
  60. for i,v in pairs(com1) do
  61. com1[i] = lerp(v,com2[i],al)
  62. end
  63. return CFrame.new(unpack(com1))
  64. end
  65.  
  66. function tickwave(time,length,offset)
  67. return (math.abs((tick()+(offset or 0))%time-time/2)*2-time/2)/time/2*length
  68. end
  69.  
  70. function invcol(c)
  71. c = c.Color
  72. return BrickColor.new(Color3.new(1-c.b,1-c.g,1-c.r))
  73. end
  74. local oc = oc or function(...) return ... end
  75. local plr = game.Players.LocalPlayer
  76. local char = plr.Character
  77. local tor = char.Torso
  78. local hum = char.Humanoid
  79. hum.PlatformStand = false
  80. pcall(function()
  81. char.Wings:Destroy()
  82. end)
  83. pcall(function()
  84. char.Angel:Destroy() -- hat
  85. end)
  86. local mod = Instance.new("Model",char)
  87. mod.Name = "Wings"
  88. local special = {
  89. [game.Players.LocalPlayer.Name] = {"Black","Bright red",.5,0,false,Color3.new(1,0,0),Color3.new(0,0,0)},
  90. }
  91. local topcolor = BrickColor.new("Really black")
  92. local feacolor = BrickColor.new("Black")
  93. local ptrans = 0
  94. local pref = 0
  95. local fire = true
  96. local fmcol = Color3.new()
  97. local fscol = Color3.new()
  98. local spec = special[plr.Name:lower()]
  99. if spec then
  100. 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]
  101. end
  102. local part = Instance.new("Part")
  103. part.FormFactor = "Custom"
  104. part.Size = Vector3.new(.2,.2,.2)
  105. part.TopSurface,part.BottomSurface = 0,0
  106. part.CanCollide = false
  107. part.BrickColor = BrickColor.new("Black")
  108. part.Transparency = ptrans
  109. part.Reflectance = pref
  110. local ef = Instance.new("Fire",fire and part or nil)
  111. ef.Size = .15
  112. ef.Color = BrickColor.new("Black").Color
  113. ef.SecondaryColor = BrickColor.new("Bright red").Color
  114. part:BreakJoints()
  115. function newpart()
  116. local clone = part:Clone()
  117. clone.Parent = mod
  118. clone:BreakJoints()
  119. return clone
  120. end
  121. local feath = newpart()
  122. feath.BrickColor = feacolor
  123. feath.Transparency = 0
  124. Instance.new("SpecialMesh",feath).MeshType = "Sphere"
  125. function newfeather()
  126. local clone = feath:Clone()
  127. clone.Parent = mod
  128. clone:BreakJoints()
  129. return clone
  130. end
  131. flying = false
  132. moving = false
  133. for i,v in pairs(tor:GetChildren()) do
  134. if v.ClassName:lower():match("body") then
  135. v:Destroy()
  136. end
  137. end
  138. local ctor = tor:Clone()
  139. ctor:ClearAllChildren()
  140. ctor.Name = "cTorso"
  141. ctor.Transparency = 1
  142. ctor.CanCollide = false
  143. ctor.FormFactor = "Custom"
  144. ctor.Size = Vector3.new(.2,.2,.2)
  145. ctor.Parent = mod
  146. weld(tor,ctor)
  147. local bg = Instance.new("BodyGyro",ctor)
  148. bg.maxTorque = Vector3.new()
  149. bg.P = 15000
  150. bg.D = 1000
  151. local bv = Instance.new("BodyVelocity",ctor)
  152. bv.maxForce = Vector3.new()
  153. bv.P = 15000
  154. vel = Vector3.new()
  155. cf = CFrame.new()
  156. flspd = 0
  157. keysdown = {}
  158. keypressed = {}
  159. ktime = {}
  160. descendtimer = 0
  161. jumptime = tick()
  162. hum.Jumping:connect(function()
  163. jumptime = tick()
  164. end)
  165. cam = workspace.CurrentCamera
  166. kd = plr:GetMouse().KeyDown:connect(oc(function(key)
  167. keysdown[key] = true
  168. keypressed[key] = true
  169. if key == "q" then
  170. descendtimer = tick()
  171. elseif key == " " and not hum.Jump then
  172. jumptime = tick()
  173. elseif (key == "a" or key == "d") and ktime[key] and tick()-ktime[key] < .3 and math.abs(reqrotx) < .3 then
  174. reqrotx = key == "a" and math.pi*2 or -math.pi*2
  175. end
  176. ktime[key] = tick()
  177. end))
  178.  
  179. ku = plr:GetMouse().KeyUp:connect(function(key)
  180. keysdown[key] = false
  181. if key == " " then
  182. descendtimer = tick()
  183. end
  184. end)
  185. function mid(a,b,c)
  186. return math.max(a,math.min(b,c or -a))
  187. end
  188. function bn(a)
  189. return a and 1 or 0
  190. end
  191. function gm(tar)
  192. local m = 0
  193. for i,v in pairs(tar:GetChildren()) do
  194. if v:IsA("BasePart") then
  195. m = m + v:GetMass()
  196. end
  197. m = m + gm(v)
  198. end
  199. return m
  200. end
  201. reqrotx = 0
  202. local grav = 196.2
  203. local con
  204. con = game:GetService("RunService").Stepped:connect(oc(function()
  205. local obvel = tor.CFrame:vectorToObjectSpace(tor.Velocity)
  206. local sspd, uspd,fspd = obvel.X,obvel.Y,obvel.Z
  207. if flying then
  208. local lfldir = fldir
  209. fldir = cam.CoordinateFrame:vectorToWorldSpace(Vector3.new(bn(keysdown.d)-bn(keysdown.a),0,bn(keysdown.s)-bn(keysdown.w))).unit
  210. local lmoving = moving
  211. moving = fldir.magnitude > .1
  212. if lmoving and not moving then
  213. idledir = lfldir*Vector3.new(1,0,1)
  214. descendtimer = tick()
  215. end
  216. local dbomb = fldir.Y < -.6 or (moving and keysdown["1"])
  217. if moving and keysdown["0"] and lmoving then
  218. fldir = (Vector3.new(lfldir.X,math.min(fldir.Y,lfldir.Y+.01)-.1,lfldir.Z)+(fldir*Vector3.new(1,0,1))*.05).unit
  219. end
  220. local down = tor.CFrame:vectorToWorldSpace(Vector3.new(0,-1,0))
  221. local descending = (not moving and keysdown["q"] and not keysdown[" "])
  222. cf = ccomplerp(cf,CFrame.new(tor.Position,tor.Position+(not moving and idledir or fldir)),keysdown["0"] and .02 or .07)
  223. local gdown = not dbomb and cf.lookVector.Y < -.2 and tor.Velocity.unit.Y < .05
  224. hum.PlatformStand = true
  225. bg.maxTorque = Vector3.new(1,1,1)*9e5
  226. local rotvel = CFrame.new(Vector3.new(),tor.Velocity):toObjectSpace(CFrame.new(Vector3.new(),fldir)).lookVector
  227. 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)
  228. reqrotx = reqrotx - reqrotx/10
  229. bv.maxForce = Vector3.new(1,1,1)*9e4*.5
  230. local anioff =(bn(keysdown[" "])-bn(keysdown["q"]))/2
  231. local ani = tickwave(1.5-anioff,1)
  232. 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)
  233. vel = moving and cf.lookVector*flspd or Vector3.new()
  234. 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))
  235. local hit,ray = workspace:FindPartOnRayWithIgnoreList(Ray.new(tor.Position,Vector3.new(0,-3.5+math.min(0,bv.velocity.y)/30,0)),{char})
  236. if hit and down.Y < -.85 and tick()-flystart > 1 then
  237. flying = false
  238. hum.PlatformStand = false
  239. tor.Velocity = Vector3.new()
  240. end
  241. else
  242. bg.maxTorque = Vector3.new()
  243. bv.maxForce = Vector3.new()
  244. local x,y,z = fspd/160,uspd/700,sspd/900
  245. if keypressed[" "] and not flying and (tick()-jumptime > .05 and (tick()-jumptime < 3 or hum.Jump)) then
  246. vel = Vector3.new(0,50,0)
  247. bv.velocity = vel
  248. idledir = cam.CoordinateFrame.lookVector*Vector3.new(1,0,1)
  249. cf = tor.CFrame * CFrame.Angles(-.01,0,0)
  250. tor.CFrame = cf
  251. bg.cframe = cf
  252. flystart = tick()
  253. flying = true
  254. end
  255. end
  256. keypressed = {}
  257. end))
  258. end
  259. fly()
  260.  
  261. ---
  262.  
  263. Option = false
  264. BTool = "Nothing"
  265. WCollide = "Nothing"
  266. LT2Info = "Nothing"
  267. GreyStart = "Nothing"
  268. MDown = false
  269. afkactive = false
  270. CustomLocationSet = false
  271.  
  272. -- Objects
  273.  
  274. local LT2GUI = Instance.new("ScreenGui")
  275. local MainFrame = Instance.new("Frame")
  276. local MenuLeftFrame = Instance.new("Frame")
  277. local LT2GUI2Frame = Instance.new("Frame")
  278. local BringTree = Instance.new("TextButton")
  279. local Waypoints = Instance.new("TextButton")
  280. local SellFrame = Instance.new("Frame")
  281. local SellWoodPlanks = Instance.new("TextButton")
  282. local SellWood = Instance.new("TextButton")
  283. local SellPlanks = Instance.new("TextButton")
  284. local SellWoodTxt1 = Instance.new("TextLabel")
  285. local SellPlanksTxt1 = Instance.new("TextLabel")
  286. local Greywood = Instance.new("TextButton")
  287. local GreywoodFrame = Instance.new("Frame")
  288. local GreywoodHeader = Instance.new("TextLabel")
  289. local GreywoodInfo = Instance.new("TextLabel")
  290. local GreywoodStart = Instance.new("TextButton")
  291. local StartFrameInfo = Instance.new("TextLabel")
  292. local TPWood = Instance.new("TextButton")
  293. local TPPlanks = Instance.new("TextButton")
  294. local PlankFrame = Instance.new("Frame")
  295. local ProcessedWoodList = Instance.new("ScrollingFrame")
  296. local TpAllPlanks = Instance.new("TextButton")
  297. local TpAllPlanksSpacer = Instance.new("TextLabel")
  298. local TpAllPlanksTxt1 = Instance.new("TextLabel")
  299. local GodMode = Instance.new("TextButton")
  300. local GoldAxe = Instance.new("TextButton")
  301. local GoldAxeInfo = Instance.new("TextLabel")
  302. local GoldAxeFrame = Instance.new("Frame")
  303. local GoldAxeHeader = Instance.new("TextLabel")
  304. local GoldAxeStart = Instance.new("TextButton")
  305. local Duper = Instance.new("TextButton")
  306. local Depart = Instance.new("TextLabel")
  307. local CopyTool = Instance.new("TextButton")
  308. local DeleteTool = Instance.new("TextButton")
  309. local MoveTool = Instance.new("TextButton")
  310. local WaterCollide = Instance.new("TextButton")
  311. local Minimize = Instance.new("TextButton")
  312. local MenuFrame = Instance.new("Frame")
  313. local WaypointFrame = Instance.new("Frame")
  314. local WaypointList = Instance.new("ScrollingFrame")
  315. local BoxedCars = Instance.new("TextButton")
  316. local Cave = Instance.new("TextButton")
  317. local LinksLogic = Instance.new("TextButton")
  318. local Volcano = Instance.new("TextButton")
  319. local BobsShack = Instance.new("TextButton")
  320. local FancyFurnishings = Instance.new("TextButton")
  321. local LandStore = Instance.new("TextButton")
  322. local Dock = Instance.new("TextButton")
  323. local FineArtsShop = Instance.new("TextButton")
  324. local PalmIsland = Instance.new("TextButton")
  325. local FrostTreeArea = Instance.new("TextButton")
  326. local Bridge = Instance.new("TextButton")
  327. local Swamp = Instance.new("TextButton")
  328. local SpawnPoint = Instance.new("TextButton")
  329. local WoodRUs = Instance.new("TextButton")
  330. local EndTimes = Instance.new("TextButton")
  331. local ShrineOfSight = Instance.new("TextButton")
  332. local TheDen = Instance.new("TextButton")
  333. local VolcanoWin = Instance.new("TextButton")
  334. local SkiLodge = Instance.new("TextButton")
  335. local StrangeMan = Instance.new("TextButton")
  336. local ShowLocation = Instance.new("TextButton")
  337. local CustomTPPoint = Instance.new("TextButton")
  338. local PlotTp = Instance.new("TextButton")
  339. local BringTreeFrame = Instance.new("Frame")
  340. local BringTreeHeader = Instance.new("TextLabel")
  341. local BringTreeInfo1 = Instance.new("TextButton")
  342. local BringTreeInfo2 = Instance.new("TextLabel")
  343. local ElmTree = Instance.new("TextButton")
  344. local CherryTree = Instance.new("TextButton")
  345. local OakTree = Instance.new("TextButton")
  346. local BirchTree = Instance.new("TextButton")
  347. local CaveCrawlerTree = Instance.new("TextButton")
  348. local GoldTree = Instance.new("TextButton")
  349. local GreenTree = Instance.new("TextButton")
  350. local SpookyTree = Instance.new("TextButton")
  351. local FirTree = Instance.new("TextButton")
  352. local VolcanoTree = Instance.new("TextButton")
  353. local KoaTree = Instance.new("TextButton")
  354. local PalmTree = Instance.new("TextButton")
  355. local EndTimesTree = Instance.new("TextButton")
  356. local WalnutTree = Instance.new("TextButton")
  357. local FrostyTree = 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.20, 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. FrostTreeArea.Name = "FrostTreeArea"
  1304. FrostTreeArea.Parent = WaypointList
  1305. FrostTreeArea.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1306. FrostTreeArea.TextColor3 = Color3.new(1, 1, 1)
  1307. FrostTreeArea.BorderColor3 = Color3.new(0, 1, 0)
  1308. FrostTreeArea.Position = UDim2.new(0, 5, 0, 600)
  1309. FrostTreeArea.Size = UDim2.new(0, 147, 0, 20)
  1310. FrostTreeArea.Font = Enum.Font.Fantasy
  1311. FrostTreeArea.FontSize = Enum.FontSize.Size14
  1312. FrostTreeArea.Text = "Frost Tree Area"
  1313. FrostTreeArea.TextSize = 16
  1314.  
  1315. BringTreeFrame.Name = "BringTreeFrame"
  1316. BringTreeFrame.Parent = MenuFrame
  1317. BringTreeFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  1318. BringTreeFrame.BackgroundTransparency = 0
  1319. BringTreeFrame.BorderColor3 = Color3.new(0, 1, 0)
  1320. BringTreeFrame.Size = UDim2.new(0, 170, 0, 290)
  1321. BringTreeFrame.Visible = false
  1322.  
  1323. BringTreeHeader.Name = "BringTreeHeader"
  1324. BringTreeHeader.Parent = BringTreeFrame
  1325. BringTreeHeader.BackgroundColor3 = Color3.new(1, 1, 1)
  1326. BringTreeHeader.BackgroundTransparency = 0.15
  1327. BringTreeHeader.BorderColor3 = Color3.new(0, 1, 0)
  1328. BringTreeHeader.Position = UDim2.new(0, 0, 0, 0)
  1329. BringTreeHeader.Size = UDim2.new(0, 170, 0, 35)
  1330. BringTreeHeader.Font = Enum.Font.Fantasy
  1331. BringTreeHeader.FontSize = Enum.FontSize.Size18
  1332. BringTreeHeader.Text = "SELECT A TREE TO SPAWN"
  1333. BringTreeHeader.TextColor3 = Color3.new(0, 0, 0)
  1334. BringTreeHeader.TextScaled = true
  1335. BringTreeHeader.TextSize = 17
  1336. BringTreeHeader.TextWrapped = true
  1337.  
  1338. BringTreeInfo1.Name = "BringTreeInfo1"
  1339. BringTreeInfo1.Parent = BringTreeFrame
  1340. BringTreeInfo1.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1341. BringTreeInfo1.BorderColor3 = Color3.new(0, 1, 0)
  1342. BringTreeInfo1.Position = UDim2.new(0, 30, 0, 255)
  1343. BringTreeInfo1.Size = UDim2.new(0, 110, 0, 25)
  1344. BringTreeInfo1.Font = Enum.Font.SourceSans
  1345. BringTreeInfo1.FontSize = Enum.FontSize.Size18
  1346. BringTreeInfo1.TextColor3 = Color3.new(1, 1, 1)
  1347. BringTreeInfo1.Text = "Info"
  1348. BringTreeInfo1.TextScaled = true
  1349. BringTreeInfo1.TextSize = 18
  1350.  
  1351. BringTreeInfo2.Name = "BringTreeInfo2"
  1352. BringTreeInfo2.Parent = BringTreeFrame
  1353. BringTreeInfo2.BackgroundColor3 = Color3.new(0, 0, 0)
  1354. BringTreeInfo2.BorderColor3 = Color3.new(0, 1, 0)
  1355. BringTreeInfo2.Position = UDim2.new(0, 185, 1, -260)
  1356. BringTreeInfo2.Size = UDim2.new(0, 170, 0, 300)
  1357. BringTreeInfo2.Visible = false
  1358. BringTreeInfo2.Font = Enum.Font.Fantasy
  1359. BringTreeInfo2.FontSize = Enum.FontSize.Size18
  1360. 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."
  1361. BringTreeInfo2.TextColor3 = Color3.new(1, 1, 1)
  1362. BringTreeInfo2.TextSize = 16
  1363. BringTreeInfo2.Active = true
  1364. BringTreeInfo2.Draggable = true
  1365. BringTreeInfo2.ZIndex = 7
  1366. BringTreeInfo2.TextWrapped = true
  1367. BringTreeInfo2.TextYAlignment = Enum.TextYAlignment.Top
  1368.  
  1369. OakTree.Name = "OakTree"
  1370. OakTree.Parent = BringTreeFrame
  1371. OakTree.BackgroundColor3 = Color3.new(0.95256, 0.70952, 0.60368)
  1372. OakTree.BackgroundTransparency = 0.15
  1373. OakTree.BorderColor3 = Color3.new(0, 1, 0)
  1374. OakTree.Position = UDim2.new(0, 5, 0, 45)
  1375. OakTree.Size = UDim2.new(0, 37, 0, 35)
  1376. OakTree.Font = Enum.Font.Fantasy
  1377. OakTree.FontSize = Enum.FontSize.Size18
  1378. OakTree.Text = "OAK\nTREE"
  1379. OakTree.TextColor3 = Color3.new(0, 0, 0)
  1380. OakTree.TextWrapped = true
  1381. OakTree.TextSize = 14
  1382.  
  1383. ElmTree.Name = "ElmTree"
  1384. ElmTree.Parent = BringTreeFrame
  1385. ElmTree.BackgroundColor3 = Color3.new(1, 0.95648, 0.88984)
  1386. ElmTree.BackgroundTransparency = 0.15
  1387. ElmTree.BorderColor3 = Color3.new(0, 1, 0)
  1388. ElmTree.Position = UDim2.new(0, 47, 0, 45)
  1389. ElmTree.Size = UDim2.new(0, 37, 0, 35)
  1390. ElmTree.Font = Enum.Font.Fantasy
  1391. ElmTree.FontSize = Enum.FontSize.Size18
  1392. ElmTree.Text = "ELM\nTREE"
  1393. ElmTree.TextColor3 = Color3.new(0, 0, 0)
  1394. ElmTree.TextWrapped = true
  1395. ElmTree.TextSize = 14
  1396.  
  1397. EndTimesTree.Name = "EndTimesTree"
  1398. EndTimesTree.Parent = BringTreeFrame
  1399. EndTimesTree.BackgroundColor3 = Color3.new(1, 1, 1)
  1400. EndTimesTree.BackgroundTransparency = 0.15
  1401. EndTimesTree.BorderColor3 = Color3.new(0, 1, 0)
  1402. EndTimesTree.Position = UDim2.new(0, 89, 0, 45)
  1403. EndTimesTree.Size = UDim2.new(0, 76, 0, 35)
  1404. EndTimesTree.Font = Enum.Font.Fantasy
  1405. EndTimesTree.FontSize = Enum.FontSize.Size18
  1406. EndTimesTree.Text = "ENDTIMES\nTREE"
  1407. EndTimesTree.TextColor3 = Color3.new(0, 0, 0)
  1408. EndTimesTree.TextWrapped = true
  1409. EndTimesTree.TextSize = 14
  1410.  
  1411. BirchTree.Name = "BirchTree"
  1412. BirchTree.Parent = BringTreeFrame
  1413. BirchTree.BackgroundColor3 = Color3.new(0.9604, 0.9604, 0.9604)
  1414. BirchTree.BackgroundTransparency = 0.15
  1415. BirchTree.BorderColor3 = Color3.new(0, 1, 0)
  1416. BirchTree.Position = UDim2.new(0, 5, 0, 85)
  1417. BirchTree.Size = UDim2.new(0, 45, 0, 35)
  1418. BirchTree.Font = Enum.Font.Fantasy
  1419. BirchTree.FontSize = Enum.FontSize.Size18
  1420. BirchTree.Text = "BIRCH\nTREE"
  1421. BirchTree.TextColor3 = Color3.new(0, 0, 0)
  1422. BirchTree.TextWrapped = true
  1423. BirchTree.TextSize = 14
  1424.  
  1425. VolcanoTree.Name = "VolcanoTree"
  1426. VolcanoTree.Parent = BringTreeFrame
  1427. VolcanoTree.BackgroundColor3 = Color3.new(1, 0, 0)
  1428. VolcanoTree.BackgroundTransparency = 0.15
  1429. VolcanoTree.BorderColor3 = Color3.new(0, 1, 0)
  1430. VolcanoTree.Position = UDim2.new(0, 55, 0, 85)
  1431. VolcanoTree.Size = UDim2.new(0, 65, 0, 35)
  1432. VolcanoTree.Font = Enum.Font.Fantasy
  1433. VolcanoTree.FontSize = Enum.FontSize.Size18
  1434. VolcanoTree.Text = "VOLCANO\nTREE"
  1435. VolcanoTree.TextColor3 = Color3.new(0, 0, 0)
  1436. VolcanoTree.TextWrapped = true
  1437. VolcanoTree.TextSize = 14
  1438.  
  1439. FirTree.Name = "FirTree"
  1440. FirTree.Parent = BringTreeFrame
  1441. FirTree.BackgroundColor3 = Color3.new(1, 0.96824, 0.9212)
  1442. FirTree.BackgroundTransparency = 0.15
  1443. FirTree.BorderColor3 = Color3.new(0, 1, 0)
  1444. FirTree.Position = UDim2.new(0, 125, 0, 85)
  1445. FirTree.Size = UDim2.new(0, 40, 0, 35)
  1446. FirTree.Font = Enum.Font.Fantasy
  1447. FirTree.FontSize = Enum.FontSize.Size18
  1448. FirTree.Text = "FIR\nTREE"
  1449. FirTree.TextColor3 = Color3.new(0, 0, 0)
  1450. FirTree.TextWrapped = true
  1451. FirTree.TextSize = 14
  1452.  
  1453. SpookyTree.Name = "SpookyTree"
  1454. SpookyTree.Parent = BringTreeFrame
  1455. SpookyTree.BackgroundColor3 = Color3.new(0.35672, 0.062736, 0.003921)
  1456. SpookyTree.BackgroundTransparency = 0.15
  1457. SpookyTree.BorderColor3 = Color3.new(0, 1, 0)
  1458. SpookyTree.Position = UDim2.new(0, 5, 0, 125)
  1459. SpookyTree.Size = UDim2.new(0, 60, 0, 35)
  1460. SpookyTree.Font = Enum.Font.Fantasy
  1461. SpookyTree.FontSize = Enum.FontSize.Size18
  1462. SpookyTree.Text = "SPOOKY\nTREE"
  1463. SpookyTree.TextColor3 = Color3.new(1, 1, 1)
  1464. SpookyTree.TextWrapped = true
  1465. SpookyTree.TextSize = 14
  1466.  
  1467. KoaTree.Name = "KoaTree"
  1468. KoaTree.Parent = BringTreeFrame
  1469. KoaTree.BackgroundColor3 = Color3.new(0.72912, 0.125472, 0.003921)
  1470. KoaTree.BackgroundTransparency = 0.15
  1471. KoaTree.BorderColor3 = Color3.new(0, 1, 0)
  1472. KoaTree.Position = UDim2.new(0, 70, 0, 125)
  1473. KoaTree.Size = UDim2.new(0, 45, 0, 35)
  1474. KoaTree.Font = Enum.Font.Fantasy
  1475. KoaTree.FontSize = Enum.FontSize.Size18
  1476. KoaTree.Text = "KOA\nTREE"
  1477. KoaTree.TextColor3 = Color3.new(1, 1, 1)
  1478. KoaTree.TextWrapped = true
  1479. KoaTree.TextSize = 14
  1480.  
  1481. PalmTree.Name = "PalmTree"
  1482. PalmTree.Parent = BringTreeFrame
  1483. PalmTree.BackgroundColor3 = Color3.new(1, 0.96824, 0.9212)
  1484. PalmTree.BackgroundTransparency = 0.15
  1485. PalmTree.BorderColor3 = Color3.new(0, 1, 0)
  1486. PalmTree.Position = UDim2.new(0, 120, 0, 125)
  1487. PalmTree.Size = UDim2.new(0, 45, 0, 35)
  1488. PalmTree.Font = Enum.Font.Fantasy
  1489. PalmTree.FontSize = Enum.FontSize.Size18
  1490. PalmTree.Text = "PALM\nTREE"
  1491. PalmTree.TextColor3 = Color3.new(0, 0, 0)
  1492. PalmTree.TextWrapped = true
  1493. PalmTree.TextSize = 14
  1494.  
  1495. GreenTree.Name = "GreenTree"
  1496. GreenTree.Parent = BringTreeFrame
  1497. GreenTree.BackgroundColor3 = Color3.new(0, 1, 0)
  1498. GreenTree.BackgroundTransparency = 0.15
  1499. GreenTree.BorderColor3 = Color3.new(0, 1, 0)
  1500. GreenTree.Position = UDim2.new(0, 5, 0, 165)
  1501. GreenTree.Size = UDim2.new(0, 51, 0, 35)
  1502. GreenTree.Font = Enum.Font.Fantasy
  1503. GreenTree.FontSize = Enum.FontSize.Size18
  1504. GreenTree.Text = "GREEN\nTREE"
  1505. GreenTree.TextColor3 = Color3.new(0, 0, 0)
  1506. GreenTree.TextWrapped = true
  1507. GreenTree.TextSize = 14
  1508.  
  1509. GoldTree.Name = "GoldTree"
  1510. GoldTree.Parent = BringTreeFrame
  1511. GoldTree.BackgroundColor3 = Color3.new(0.960645, 0.86262, 0.231339)
  1512. GoldTree.BackgroundTransparency = 0.15
  1513. GoldTree.BorderColor3 = Color3.new(0, 1, 0)
  1514. GoldTree.Position = UDim2.new(0, 61, 0, 165)
  1515. GoldTree.Size = UDim2.new(0, 44, 0, 35)
  1516. GoldTree.Font = Enum.Font.Fantasy
  1517. GoldTree.FontSize = Enum.FontSize.Size18
  1518. GoldTree.Text = "GOLD\nTREE"
  1519. GoldTree.TextColor3 = Color3.new(0, 0, 0)
  1520. GoldTree.TextWrapped = true
  1521. GoldTree.TextSize = 14
  1522.  
  1523. CherryTree.Name = "CherryTree"
  1524. CherryTree.Parent = BringTreeFrame
  1525. CherryTree.BackgroundColor3 = Color3.new(0.93296, 0.39984, 0.49)
  1526. CherryTree.BackgroundTransparency = 0.15
  1527. CherryTree.BorderColor3 = Color3.new(0, 1, 0)
  1528. CherryTree.Position = UDim2.new(0, 110, 0, 165)
  1529. CherryTree.Size = UDim2.new(0, 55, 0, 35)
  1530. CherryTree.Font = Enum.Font.Fantasy
  1531. CherryTree.FontSize = Enum.FontSize.Size18
  1532. CherryTree.Text = "CHERRY TREE"
  1533. CherryTree.TextColor3 = Color3.new(0, 0, 0)
  1534. CherryTree.TextWrapped = true
  1535. CherryTree.TextSize = 14
  1536.  
  1537. CaveCrawlerTree.Name = "CaveCrawlerTree"
  1538. CaveCrawlerTree.Parent = BringTreeFrame
  1539. CaveCrawlerTree.BackgroundColor3 = Color3.new(0, 0, 1)
  1540. CaveCrawlerTree.BackgroundTransparency = 0.15
  1541. CaveCrawlerTree.BorderColor3 = Color3.new(0, 1, 0)
  1542. CaveCrawlerTree.Position = UDim2.new(0, 5, 0, 205)
  1543. CaveCrawlerTree.Size = UDim2.new(0, 45, 0, 35)
  1544. CaveCrawlerTree.Font = Enum.Font.Fantasy
  1545. CaveCrawlerTree.FontSize = Enum.FontSize.Size18
  1546. CaveCrawlerTree.Text = "CAVE\nTREE"
  1547. CaveCrawlerTree.TextColor3 = Color3.new(1, 1, 1)
  1548. CaveCrawlerTree.TextWrapped = true
  1549. CaveCrawlerTree.TextSize = 14
  1550.  
  1551. FrostyTree.Name = "FrostyTree"
  1552. FrostyTree.Parent = BringTreeFrame
  1553. FrostyTree.BackgroundColor3 = Color3.new(154/255, 255/255, 243/255)
  1554. FrostyTree.BackgroundTransparency = 0.15
  1555. FrostyTree.BorderColor3 = Color3.new(0, 1, 0)
  1556. FrostyTree.Position = UDim2.new(0, 55, 0, 205)
  1557. FrostyTree.Size = UDim2.new(0, 50, 0, 35)
  1558. FrostyTree.Font = Enum.Font.Fantasy
  1559. FrostyTree.FontSize = Enum.FontSize.Size18
  1560. FrostyTree.Text = "FROST\nTREE"
  1561. FrostyTree.TextColor3 = Color3.new(0, 0, 0)
  1562. FrostyTree.TextWrapped = true
  1563. FrostyTree.TextSize = 14
  1564.  
  1565. WalnutTree.Name = "WalnutTree"
  1566. WalnutTree.Parent = BringTreeFrame
  1567. WalnutTree.BackgroundColor3 = Color3.new(0.360732, 0.176445, 0.137235)
  1568. WalnutTree.BackgroundTransparency = 0.15
  1569. WalnutTree.BorderColor3 = Color3.new(0, 1, 0)
  1570. WalnutTree.Position = UDim2.new(0, 110, 0, 205)
  1571. WalnutTree.Size = UDim2.new(0, 55, 0, 35)
  1572. WalnutTree.Font = Enum.Font.Fantasy
  1573. WalnutTree.FontSize = Enum.FontSize.Size18
  1574. WalnutTree.Text = "WALNUT\nTREE"
  1575. WalnutTree.TextColor3 = Color3.new(1, 1, 1)
  1576. WalnutTree.TextWrapped = true
  1577. WalnutTree.TextSize = 13
  1578.  
  1579. DupeFrame.Name = "DupeFrame"
  1580. DupeFrame.Parent = MenuFrame
  1581. DupeFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  1582. DupeFrame.BackgroundTransparency = 0
  1583. DupeFrame.BorderColor3 = Color3.new(0, 1, 0)
  1584. DupeFrame.Size = UDim2.new(0, 170, 0, 290)
  1585. DupeFrame.Visible = false
  1586.  
  1587. Info.Name = "Info"
  1588. Info.Parent = DupeFrame
  1589. Info.BackgroundColor3 = Color3.new(0, 0, 0)
  1590. Info.BorderColor3 = Color3.new(0, 1, 0)
  1591. Info.Position = UDim2.new(0, 185, 1, -370)
  1592. Info.Size = UDim2.new(0, 170, 0, 410)
  1593. Info.Visible = false
  1594. Info.Font = Enum.Font.Fantasy
  1595. Info.FontSize = Enum.FontSize.Size14
  1596. 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."
  1597. Info.TextColor3 = Color3.new(1, 1, 1)
  1598. Info.TextSize = 14
  1599. Info.Active = true
  1600. Info.Draggable = true
  1601. Info.ZIndex = 7
  1602. Info.TextWrapped = true
  1603. Info.TextYAlignment = Enum.TextYAlignment.Top
  1604.  
  1605. Read.Name = "Read"
  1606. Read.Parent = DupeFrame
  1607. Read.BackgroundColor3 = Color3.new(1, 1, 1)
  1608. Read.BackgroundTransparency = 0.15
  1609. Read.BorderColor3 = Color3.new(0, 1, 0)
  1610. Read.Size = UDim2.new(0, 170, 0, 35)
  1611. Read.Font = Enum.Font.Fantasy
  1612. Read.FontSize = Enum.FontSize.Size18
  1613. Read.Text = "READ INFO BEFORE USING THIS"
  1614. Read.TextColor3 = Color3.new(0, 0, 0)
  1615. Read.TextScaled = true
  1616. Read.TextSize = 17
  1617. Read.TextWrapped = true
  1618.  
  1619. Dupe.Name = "Dupe"
  1620. Dupe.Parent = DupeFrame
  1621. Dupe.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1622. Dupe.BorderColor3 = Color3.new(0, 1, 0)
  1623. Dupe.Position = UDim2.new(0, 50, 0, 65)
  1624. Dupe.Size = UDim2.new(0, 70, 0, 25)
  1625. Dupe.Font = Enum.Font.Fantasy
  1626. Dupe.FontSize = Enum.FontSize.Size18
  1627. Dupe.Text = "Dupe"
  1628. Dupe.TextScaled = true
  1629. Dupe.TextColor3 = Color3.new(1, 1, 1)
  1630. Dupe.TextSize = 17
  1631.  
  1632. DupingText1.Name = "DupingText1"
  1633. DupingText1.Parent = DupeFrame
  1634. DupingText1.BackgroundColor3 = Color3.new(0, 0, 0)
  1635. DupingText1.BackgroundTransparency = 1
  1636. DupingText1.Position = UDim2.new(0, 5, 0, 100)
  1637. DupingText1.Size = UDim2.new(0, 160, 0, 140)
  1638. DupingText1.Font = Enum.Font.Fantasy
  1639. DupingText1.FontSize = Enum.FontSize.Size14
  1640. DupingText1.Text = "Loaded Slot Will Save"
  1641. DupingText1.TextColor3 = Color3.new(0, 1, 0)
  1642. DupingText1.TextSize = 14
  1643. DupingText1.TextYAlignment = Enum.TextYAlignment.Top
  1644. DupingText1.TextWrapped = true
  1645.  
  1646. MoreInfo.Name = "MoreInfo"
  1647. MoreInfo.Parent = DupeFrame
  1648. MoreInfo.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1649. MoreInfo.BorderColor3 = Color3.new(0, 1, 0)
  1650. MoreInfo.Position = UDim2.new(0, 25, 0, 240)
  1651. MoreInfo.Size = UDim2.new(0, 120, 0, 25)
  1652. MoreInfo.Font = Enum.Font.SourceSans
  1653. MoreInfo.FontSize = Enum.FontSize.Size18
  1654. MoreInfo.Text = "Info"
  1655. MoreInfo.TextScaled = true
  1656. MoreInfo.TextColor3 = Color3.new(1, 1, 1)
  1657. MoreInfo.TextSize = 18
  1658.  
  1659. PlayerFrame.Name = "PlayerFrame"
  1660. PlayerFrame.Parent = MenuFrame
  1661. PlayerFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  1662. PlayerFrame.BackgroundTransparency = 0
  1663. PlayerFrame.BorderColor3 = Color3.new(0, 1, 0)
  1664. PlayerFrame.Size = UDim2.new(0, 170, 0, 290)
  1665. PlayerFrame.Visible = false
  1666.  
  1667. PlyrSel.Name = "PlyrSel"
  1668. PlyrSel.Parent = PlayerFrame
  1669. PlyrSel.BackgroundColor3 = Color3.new(1, 1, 1)
  1670. PlyrSel.BackgroundTransparency = 0.15
  1671. PlyrSel.BorderColor3 = Color3.new(0, 1, 0)
  1672. PlyrSel.Position = UDim2.new(0, 5, 0, 5)
  1673. PlyrSel.Size = UDim2.new(0, 160, 0, 20)
  1674. PlyrSel.Font = Enum.Font.SourceSans
  1675. PlyrSel.FontSize = Enum.FontSize.Size18
  1676. PlyrSel.Text = "SELECT A PLAYER"
  1677. PlyrSel.TextColor3 = Color3.new(0, 0, 0)
  1678. PlyrSel.TextScaled = true
  1679. PlyrSel.TextSize = 17
  1680. PlyrSel.TextWrapped = true
  1681.  
  1682. Player1.Name = "Player1"
  1683. Player1.Parent = PlayerFrame
  1684. Player1.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1685. Player1.BorderColor3 = Color3.new(0, 1, 0)
  1686. Player1.Position = UDim2.new(0, 5, 0, 40)
  1687. Player1.Size = UDim2.new(0, 160, 0, 20)
  1688. Player1.Font = Enum.Font.Fantasy
  1689. Player1.FontSize = Enum.FontSize.Size18
  1690. Player1.Text = ""
  1691. Player1.TextColor3 = Color3.new(1, 1, 1)
  1692. Player1.TextSize = 16
  1693. Player1.TextWrapped = true
  1694.  
  1695. Player2.Name = "Player2"
  1696. Player2.Parent = PlayerFrame
  1697. Player2.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1698. Player2.BorderColor3 = Color3.new(0, 1, 0)
  1699. Player2.Position = UDim2.new(0, 5, 0, 65)
  1700. Player2.Size = UDim2.new(0, 160, 0, 20)
  1701. Player2.Font = Enum.Font.Fantasy
  1702. Player2.FontSize = Enum.FontSize.Size18
  1703. Player2.Text = ""
  1704. Player2.TextColor3 = Color3.new(1, 1, 1)
  1705. Player2.TextSize = 16
  1706. Player2.TextWrapped = true
  1707.  
  1708. Player3.Name = "Player3"
  1709. Player3.Parent = PlayerFrame
  1710. Player3.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1711. Player3.BorderColor3 = Color3.new(0, 1, 0)
  1712. Player3.Position = UDim2.new(0, 5, 0, 90)
  1713. Player3.Size = UDim2.new(0, 160, 0, 20)
  1714. Player3.Font = Enum.Font.Fantasy
  1715. Player3.FontSize = Enum.FontSize.Size18
  1716. Player3.Text = ""
  1717. Player3.TextColor3 = Color3.new(1, 1, 1)
  1718. Player3.TextSize = 16
  1719. Player3.TextWrapped = true
  1720.  
  1721. Player4.Name = "Player4"
  1722. Player4.Parent = PlayerFrame
  1723. Player4.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1724. Player4.BorderColor3 = Color3.new(0, 1, 0)
  1725. Player4.Position = UDim2.new(0, 5, 0, 115)
  1726. Player4.Size = UDim2.new(0, 160, 0, 20)
  1727. Player4.Font = Enum.Font.Fantasy
  1728. Player4.FontSize = Enum.FontSize.Size18
  1729. Player4.Text = ""
  1730. Player4.TextColor3 = Color3.new(1, 1, 1)
  1731. Player4.TextSize = 16
  1732. Player4.TextWrapped = true
  1733.  
  1734. Player5.Name = "Player5"
  1735. Player5.Parent = PlayerFrame
  1736. Player5.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1737. Player5.BorderColor3 = Color3.new(0, 1, 0)
  1738. Player5.Position = UDim2.new(0, 5, 0, 140)
  1739. Player5.Size = UDim2.new(0, 160, 0, 20)
  1740. Player5.Font = Enum.Font.Fantasy
  1741. Player5.FontSize = Enum.FontSize.Size18
  1742. Player5.Text = ""
  1743. Player5.TextColor3 = Color3.new(1, 1, 1)
  1744. Player5.TextSize = 16
  1745. Player5.TextWrapped = true
  1746.  
  1747. Player6.Name = "Player6"
  1748. Player6.Parent = PlayerFrame
  1749. Player6.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1750. Player6.BorderColor3 = Color3.new(0, 1, 0)
  1751. Player6.Position = UDim2.new(0, 5, 0, 165)
  1752. Player6.Size = UDim2.new(0, 160, 0, 20)
  1753. Player6.Font = Enum.Font.Fantasy
  1754. Player6.FontSize = Enum.FontSize.Size18
  1755. Player6.Text = ""
  1756. Player6.TextColor3 = Color3.new(1, 1, 1)
  1757. Player6.TextSize = 16
  1758. Player6.TextWrapped = true
  1759.  
  1760. TpPlayer.Name = "TpPlayer"
  1761. TpPlayer.Parent = PlayerFrame
  1762. TpPlayer.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1763. TpPlayer.BackgroundTransparency = 0
  1764. TpPlayer.BorderColor3 = Color3.new(0, 1, 0)
  1765. TpPlayer.Position = UDim2.new(0, 5, 0, 225)
  1766. TpPlayer.Size = UDim2.new(0, 75, 0, 35)
  1767. TpPlayer.Font = Enum.Font.Fantasy
  1768. TpPlayer.FontSize = Enum.FontSize.Size18
  1769. TpPlayer.Text = "Tp to Player"
  1770. TpPlayer.TextColor3 = Color3.new(1, 1, 1)
  1771. TpPlayer.TextScaled = true
  1772. TpPlayer.TextWrapped = true
  1773. TpPlayer.TextSize = 14
  1774.  
  1775. TpBase.Name = "TpBase"
  1776. TpBase.Parent = PlayerFrame
  1777. TpBase.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1778. TpBase.BackgroundTransparency = 0
  1779. TpBase.BorderColor3 = Color3.new(0, 1, 0)
  1780. TpBase.Position = UDim2.new(0, 90, 0, 225)
  1781. TpBase.Size = UDim2.new(0, 75, 0, 35)
  1782. TpBase.Font = Enum.Font.Fantasy
  1783. TpBase.FontSize = Enum.FontSize.Size18
  1784. TpBase.Text = "Tp to\nBase"
  1785. TpBase.TextColor3 = Color3.new(1, 1, 1)
  1786. TpPlayer.TextSize = 22
  1787.  
  1788. WalkSpeed.Name = "WalkSpeed"
  1789. WalkSpeed.Parent = MainFrame
  1790. WalkSpeed.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1791. WalkSpeed.TextColor3 = Color3.new(1, 1, 1)
  1792. WalkSpeed.BorderColor3 = Color3.new(0, 1, 0)
  1793. WalkSpeed.Position = UDim2.new(0, 155, 0, 340)
  1794. WalkSpeed.Size = UDim2.new(0, 45, 0, 20)
  1795. WalkSpeed.Font = Enum.Font.Fantasy
  1796. WalkSpeed.FontSize = Enum.FontSize.Size18
  1797. WalkSpeed.Text = "Walk"
  1798. WalkSpeed.TextSize = 17
  1799.  
  1800. WalkText.Name = "WalkText"
  1801. WalkText.Parent = MainFrame
  1802. WalkText.BackgroundColor3 = Color3.new(0, 0, 0)
  1803. WalkText.BorderColor3 = Color3.new(0, 1, 0)
  1804. WalkText.Position = UDim2.new(0, 205, 0, 340)
  1805. WalkText.Size = UDim2.new(0, 28, 0, 20)
  1806. WalkText.Font = Enum.Font.Fantasy
  1807. WalkText.FontSize = Enum.FontSize.Size18
  1808. WalkText.Text = "16"
  1809. WalkText.TextColor3 = Color3.new(1, 1, 1)
  1810. WalkText.TextSize = 17
  1811. WalkText.TextScaled = true
  1812.  
  1813. JumpPower.Name = "JumpPower"
  1814. JumpPower.Parent = MainFrame
  1815. JumpPower.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1816. JumpPower.TextColor3 = Color3.new(1, 1, 1)
  1817. JumpPower.BorderColor3 = Color3.new(0, 1, 0)
  1818. JumpPower.Position = UDim2.new(0, 243, 0, 340)
  1819. JumpPower.Size = UDim2.new(0, 49, 0, 20)
  1820. JumpPower.Font = Enum.Font.Fantasy
  1821. JumpPower.FontSize = Enum.FontSize.Size18
  1822. JumpPower.Text = "Jump"
  1823. JumpPower.TextSize = 17
  1824.  
  1825. JumpText.Name = "JumpText"
  1826. JumpText.Parent = MainFrame
  1827. JumpText.BackgroundColor3 = Color3.new(0, 0, 0)
  1828. JumpText.BorderColor3 = Color3.new(0, 1, 0)
  1829. JumpText.Position = UDim2.new(0, 297, 0, 340)
  1830. JumpText.Size = UDim2.new(0, 28, 0, 20)
  1831. JumpText.Font = Enum.Font.Fantasy
  1832. JumpText.FontSize = Enum.FontSize.Size18
  1833. JumpText.Text = "50"
  1834. JumpText.TextColor3 = Color3.new(1, 1, 1)
  1835. JumpText.TextSize = 17
  1836. JumpText.TextScaled = true
  1837.  
  1838. game.Lighting.Changed:connect(function()
  1839. game.Lighting.TimeOfDay = "12:00:00"
  1840. game.Lighting.FogEnd = 9999
  1841. game.Lighting.Brightness = 1
  1842. end)
  1843.  
  1844. --- Menus ---
  1845.  
  1846. local Menus = {
  1847. [BringTree] = BringTreeFrame;
  1848. [Waypoints] = WaypointFrame;
  1849. [Duper] = DupeFrame;
  1850. [TPPlanks] = PlankFrame;
  1851. [GoldAxe] = GoldAxeFrame;
  1852. [PlayerTp] = PlayerFrame;
  1853. [Greywood] = GreywoodFrame;
  1854. [GuiLabel] = LT2GUI2Frame;
  1855. [SellWoodPlanks] = SellFrame;
  1856. }
  1857. for button,frame in pairs(Menus) do
  1858. button.MouseButton1Click:connect(function()
  1859. if frame.Visible then
  1860. frame.Visible = false
  1861. return
  1862. end
  1863. for k,v in pairs(Menus) do
  1864. v.Visible = v == frame
  1865. end
  1866. end)
  1867. end
  1868.  
  1869. --- Open/Close ---
  1870.  
  1871. Open.MouseButton1Down:connect(function()
  1872. OpenFrame.Visible = false
  1873. MainFrame.Visible = true
  1874. end)
  1875.  
  1876. Minimize.MouseButton1Down:connect(function()
  1877. MainFrame.Visible = false
  1878. OpenFrame.Visible = true
  1879. end)
  1880.  
  1881. CloseLT2.MouseButton1Down:connect(function()
  1882. LT2CORE:destroy()
  1883. end)
  1884.  
  1885.  
  1886. local service = setmetatable({}, {
  1887. __index = function(t, k)
  1888. return game:GetService(k)
  1889. end
  1890. })
  1891.  
  1892. function Create(cls,props)
  1893. local inst = Instance.new(cls)
  1894. for i,v in pairs(props) do
  1895. inst[i] = v
  1896. end
  1897. return inst
  1898. end
  1899.  
  1900. --- TP Planks to you ---
  1901.  
  1902. checkplanks = false
  1903. local WoodPlanks={}
  1904. local ProcessedWoodList = LT2GUI.MainFrame.MenuFrame.PlankFrame.ProcessedWoodList
  1905.  
  1906. function UpdatePlanks()
  1907. local inc = 0
  1908. WoodPlanks={}
  1909. for i,v in pairs(game.Workspace.PlayerModels:GetChildren()) do
  1910. if v.Name=="Plank" and v.Owner.Value==game.Players.LocalPlayer then
  1911. if v:FindFirstChild("TreeClass") and WoodPlanks[v.TreeClass.Value] then
  1912. WoodPlanks[v.TreeClass.Value]=WoodPlanks[v.TreeClass.Value]
  1913. WoodPlanks[v.TreeClass.Value]["Wood"][v]=v
  1914. elseif v:FindFirstChild("TreeClass") then
  1915. WoodPlanks[v.TreeClass.Value]={Wood={v.WoodSection}}
  1916. end
  1917. end
  1918. end
  1919. end
  1920.  
  1921. function UpdateMovePlanks()
  1922. checkplanks = true
  1923. local inc=0
  1924. UpdatePlanks()
  1925. ProcessedWoodList:ClearAllChildren()
  1926. for i,v in pairs(WoodPlanks) do
  1927. ProcessedWoodList.CanvasSize=UDim2.new(0,0,0,25*inc)
  1928. 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)})
  1929. TPButton.MouseButton1Click:Connect(function()
  1930. sendNotice = game.ReplicatedStorage.Notices.SendUserNotice
  1931. sendNotice:Fire("Click where you want the Planks to TP to")
  1932. local ButtonPress
  1933. ButtonPress = game.Players.LocalPlayer:GetMouse().Button1Down:Connect(function()
  1934. Square = game.Players.LocalPlayer:GetMouse().Target
  1935. if (Square.Name == "OriginSquare" or Square.Name == "Square") then
  1936. ButtonPress:Disconnect()
  1937. for _, Plank in pairs(game.Workspace.PlayerModels:GetChildren()) do
  1938. if Plank.Name=="Plank" and Plank:FindFirstChild("TreeClass") then
  1939. if Plank.TreeClass.Value == i and Plank.Owner.Value == game.Players.LocalPlayer then
  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. inc=inc+1
  1951. end
  1952. inc=0
  1953. end
  1954.  
  1955. TpAllPlanks.MouseButton1Click:Connect(function()
  1956. for _, Plank in pairs(game.Workspace.PlayerModels:GetChildren()) do
  1957. if Plank.Name=="Plank" and Plank:findFirstChild("Owner") then
  1958. if Plank.Owner.Value == game.Players.LocalPlayer then
  1959. sendNotice = game.ReplicatedStorage.Notices.SendUserNotice
  1960. sendNotice:Fire("Click where you want ALL the Planks to TP to")
  1961. local ButtonPress
  1962. ButtonPress = game.Players.LocalPlayer:GetMouse().Button1Down:Connect(function()
  1963. Square = game.Players.LocalPlayer:GetMouse().Target
  1964. if (Square.Name == "OriginSquare" or Square.Name == "Square") then
  1965. ButtonPress:Disconnect()
  1966. Plank:MoveTo(Square.Position)
  1967. for i=1,100 do
  1968. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Plank)
  1969. end
  1970. end
  1971. end)
  1972. end
  1973. end
  1974. end
  1975. end)
  1976.  
  1977. if not checkplanks then
  1978. UpdateMovePlanks()
  1979. end
  1980.  
  1981. game.Workspace.PlayerModels.ChildAdded:connect(function(Item)
  1982. if Item:FindFirstChild("Owner") and Item.Owner.Value == game.Players.LocalPlayer and Item:FindFirstChild("TreeClass") then
  1983. UpdateMovePlanks()
  1984. end
  1985. end)
  1986.  
  1987. game.Workspace.PlayerModels.ChildRemoved:connect(function(Item)
  1988. if Item:FindFirstChild("Owner") and Item.Owner.Value == game.Players.LocalPlayer and Item:FindFirstChild("TreeClass") then
  1989. UpdateMovePlanks()
  1990. end
  1991. end)
  1992.  
  1993. --- GuiInfo ---
  1994.  
  1995. GuiLabel.MouseButton1Down:connect(function()
  1996. if Lt2Info == "Info" then
  1997. Lt2Info = "Nothing"
  1998. GuiLabel.TextColor3 = Color3.new(1, 0, 1)
  1999. GuiLabel.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  2000. MenuLeftFrame.Active = true
  2001. MenuLeftFrame.Selectable = true
  2002. else
  2003. Lt2Info = "Info"
  2004. GuiLabel.TextColor3 = Color3.new(0, 1, 0)
  2005. GuiLabel.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  2006. MenuLeftFrame.Active = false
  2007. MenuLeftFrame.Selectable = false
  2008. end
  2009. end)
  2010.  
  2011. --- BringTreeInfo ---
  2012.  
  2013. BringTreeInfo1.MouseButton1Down:connect(function()
  2014. if BringTreeInfo1.Text == "Info" then
  2015. BringTreeInfo1.Text = "Close Info"
  2016. BringTreeInfo2.Visible = true
  2017. else
  2018. BringTreeInfo1.Text = "Info"
  2019. BringTreeInfo2.Visible = false
  2020. end
  2021. end)
  2022.  
  2023. --- Walkspeed/JumpPower ---
  2024.  
  2025. player = game.Players.LocalPlayer
  2026. Walk = 16
  2027. Jump = 50
  2028.  
  2029. WalkSpeed.MouseButton1Down:connect(function()
  2030. Walk = WalkText.Text
  2031. end)
  2032. JumpPower.MouseButton1Down:connect(function()
  2033. Jump = JumpText.Text
  2034. end)
  2035.  
  2036. player.Character.Humanoid.JumpPower = Jump
  2037. player.Character.Humanoid.WalkSpeed = Walk
  2038.  
  2039. player.Character.Humanoid.Changed:connect(function()
  2040. player.Character.Humanoid.JumpPower = Jump
  2041. player.Character.Humanoid.WalkSpeed = Walk
  2042. end)
  2043.  
  2044. --- Gold Axe ---
  2045.  
  2046. GoldAxeStart.MouseButton1Down:Connect(function()
  2047. GoldAxe.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2048. GoldAxeStart.Text = "Active"
  2049. Detect = coroutine.wrap(function()
  2050. Player = game.Players.LocalPlayer
  2051. mouse = Player:GetMouse()
  2052. mouse.Button1Down:connect(function()
  2053. MouseDown = true
  2054. end)
  2055. mouse.Button1Up:connect(function()
  2056. MouseDown = false
  2057. end)
  2058. end)
  2059. Detect()
  2060. Player = game.Players.LocalPlayer
  2061. mouse = Player:GetMouse()
  2062. game:GetService('RunService').RenderStepped:connect(function()
  2063. if Player.Character:FindFirstChild("Tool") then
  2064. if MouseDown == true then
  2065. if mouse.Target.Name == "WoodSection" then
  2066. targetWood = mouse.Target
  2067. Tool=Player.Character.Tool
  2068. ---FaceVector
  2069. Height = targetWood.CFrame:pointToObjectSpace(mouse.Hit.p).Y + targetWood.Size.Y/2
  2070. 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)
  2071. part,_,p = workspace:FindPartOnRay(ray, Player.Character)
  2072. function fixVector(V)
  2073. return Vector3.new(math.floor(V.X + 0.5), math.floor(V.Y + 0.5), math.floor(V.Z + 0.5))
  2074. end
  2075. local faceVector = fixVector(targetWood.CFrame:vectorToObjectSpace(p))
  2076. if faceVector.Y ~= 0 then
  2077. return
  2078. end
  2079. local lookAtCFrame = CFrame.new(Player.Character.Head.Position, mouse.Hit.p)
  2080. local relativeCFrame = lookAtCFrame:toObjectSpace(targetWood.CFrame * CFrame.Angles(math.pi/2, 0, 0))
  2081. local relativeLookVector = relativeCFrame.lookVector
  2082. local m = relativeLookVector.Y >= 0 and 1 or -1
  2083. if faceVector.X == 1 then
  2084. faceVector = Vector3.new(0, 0, -1) * m
  2085. elseif faceVector.X == -1 then
  2086. faceVector = Vector3.new(0, 0, 1) * m
  2087. elseif faceVector.Z == 1 then
  2088. faceVector = Vector3.new(1, 0, 0) * m
  2089. elseif faceVector.Z == -1 then
  2090. faceVector = Vector3.new(-1, 0, 0) * m
  2091. end
  2092. local cutEvent = targetWood.Parent.CutEvent
  2093. 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})
  2094. end
  2095. end
  2096. end
  2097. end)
  2098. end)
  2099.  
  2100. --- Show Current Location
  2101.  
  2102. ShowLocation.MouseButton1Down:connect(function()
  2103.  
  2104. function round(num, numDecimalPlaces)
  2105. local mult = 10^(numDecimalPlaces or 0)
  2106. return math.floor(num * mult + 0.5) / mult
  2107. end
  2108.  
  2109. LocationX = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.x, 1)
  2110. LocationY = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.y, 1)
  2111. LocationZ = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.z, 1)
  2112. ShowLocation.Text = "Current/Set Location\n"..LocationX..", "..LocationY..", "..LocationZ
  2113. CustomTPPoint.Text = "TP to "..LocationX..", "..LocationY..", "..LocationZ
  2114. CustomLocationSet = true
  2115. end)
  2116.  
  2117. --- TP to custom location ---
  2118.  
  2119. CustomTPPoint.MouseButton1Down:connect(function()
  2120. if CustomLocationSet == true then
  2121. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2122. uTorso.CFrame = CFrame.new(LocationX, LocationY, LocationZ)
  2123. end
  2124. end)
  2125.  
  2126. --- Player Tp ---
  2127.  
  2128. local buttons = {
  2129. Player1,
  2130. Player2,
  2131. Player3,
  2132. Player4,
  2133. Player5,
  2134. Player6
  2135. }
  2136. spawn(function()
  2137. while true do
  2138. Player1.Text = ""
  2139. Player2.Text = ""
  2140. Player3.Text = ""
  2141. Player4.Text = ""
  2142. Player5.Text = ""
  2143. Player6.Text = ""
  2144. for i, v in pairs(game.Players:GetChildren()) do
  2145. buttons[i].Text = v.Name
  2146. buttons[i].Visible = true
  2147. end
  2148. wait(0.5)
  2149. end
  2150. end)
  2151.  
  2152. Player1.MouseButton1Down:connect(function()
  2153. PlyrSel.Text = Player1.Text
  2154. end)
  2155. Player2.MouseButton1Down:connect(function()
  2156. PlyrSel.Text = Player2.Text
  2157. end)
  2158. Player3.MouseButton1Down:connect(function()
  2159. PlyrSel.Text = Player3.Text
  2160. end)
  2161. Player4.MouseButton1Down:connect(function()
  2162. PlyrSel.Text = Player4.Text
  2163. end)
  2164. Player5.MouseButton1Down:connect(function()
  2165. PlyrSel.Text = Player5.Text
  2166. end)
  2167. Player6.MouseButton1Down:connect(function()
  2168. PlyrSel.Text = Player6.Text
  2169. end)
  2170.  
  2171. TpPlayer.MouseButton1Down:connect(function()
  2172. if PlyrSel.Text == "SELECT A PLAYER" then
  2173. warn("No Player Selected")
  2174. else
  2175. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace[PlyrSel.Text].HumanoidRootPart.CFrame
  2176. end
  2177. end)
  2178. TpBase.MouseButton1Down:connect(function()
  2179. for i, v in pairs(game.Workspace.Properties:GetChildren()) do
  2180. if v.Owner.Value == game.Players[PlyrSel.Text] then
  2181. local p= CFrame.new(v.OriginSquare.CFrame.x, v.OriginSquare.CFrame.y +3.5, v.OriginSquare.CFrame.z)
  2182. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = p
  2183. end
  2184. end
  2185. end)
  2186.  
  2187. --- NoClip ---
  2188.  
  2189. noclip = false
  2190. game:GetService('RunService').Stepped:connect(function()
  2191. if noclip then
  2192. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  2193. end
  2194. end)
  2195. NoClip.MouseButton1Down:connect(function()
  2196. noclip = not noclip
  2197. if NoClip.Text == "Enable NoClip" then
  2198. NoClip.Text = "Disable NoClip"
  2199. NoClip.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2200. else
  2201. NoClip.Text = "Enable NoClip"
  2202. NoClip.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2203. end
  2204. end)
  2205.  
  2206. --- Waypoints ---
  2207.  
  2208. local WayPoints = {
  2209. ["Wood R Us"] = CFrame.new(265, 5, 57),
  2210. ["SpawnPoint"] = CFrame.new(155, 5, 74),
  2211. ["Land Store"] = CFrame.new(258, 5, -99),
  2212. ["Link's Logic"] = CFrame.new(4607, 9, -798),
  2213. ["Cave"] = CFrame.new(3581, -177, 430),
  2214. ["Volcano"] = CFrame.new(-1585, 625, 1140),
  2215. ["Swamp"] = CFrame.new(-1209, 138, -801),
  2216. ["Palm Island"] = CFrame.new(2549, 5, -42),
  2217. ["Fancy Furnishings"] = CFrame.new(491, 13, -1720),
  2218. ["Boxed Cars"] = CFrame.new(509, 5.2, -1463),
  2219. ["Fine Arts Shop"] = CFrame.new(5207, -156, 719),
  2220. ["Bob's Shack"] = CFrame.new(260, 10, -2542),
  2221. ["Dock"] = CFrame.new(1114, 3.2, -197),
  2222. ["Bridge"] = CFrame.new(113, 15, -977),
  2223. ["End Times"] = CFrame.new(113, -204, -951),
  2224. ["Shrine Of Sight"] = CFrame.new(-1600, 205, 919),
  2225. ["The Den"] = CFrame.new(323, 49, 1930),
  2226. ["Volcano Win"] = CFrame.new(-1675, 358, 1476),
  2227. ["Ski Lodge"] = CFrame.new(1244, 66, 2306),
  2228. ["Strange Man"] = CFrame.new(1061, 20, 1131),
  2229. ["Frost Tree"] = CFrame.new(1448.3, 413, 3185.2)
  2230. }
  2231.  
  2232. WoodRUs.MouseButton1Down:connect(function()
  2233. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2234. uTorso.CFrame = WayPoints["Wood R Us"]
  2235. end)
  2236.  
  2237. SpawnPoint.MouseButton1Down:connect(function()
  2238. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2239. uTorso.CFrame = WayPoints["SpawnPoint"]
  2240. end)
  2241.  
  2242. LandStore.MouseButton1Down:connect(function()
  2243. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2244. uTorso.CFrame = WayPoints["Land Store"]
  2245. end)
  2246.  
  2247. LinksLogic.MouseButton1Down:connect(function()
  2248. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2249. uTorso.CFrame = WayPoints["Link's Logic"]
  2250. end)
  2251.  
  2252. Cave.MouseButton1Down:connect(function()
  2253. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2254. uTorso.CFrame = WayPoints["Cave"]
  2255. end)
  2256.  
  2257. Volcano.MouseButton1Down:connect(function()
  2258. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2259. uTorso.CFrame = WayPoints["Volcano"]
  2260. end)
  2261.  
  2262. Swamp.MouseButton1Down:connect(function()
  2263. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2264. uTorso.CFrame = WayPoints["Swamp"]
  2265. end)
  2266.  
  2267. PalmIsland.MouseButton1Down:connect(function()
  2268. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2269. uTorso.CFrame = WayPoints["Palm Island"]
  2270. end)
  2271.  
  2272. FancyFurnishings.MouseButton1Down:connect(function()
  2273. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2274. uTorso.CFrame = WayPoints["Fancy Furnishings"]
  2275. end)
  2276.  
  2277. BoxedCars.MouseButton1Down:connect(function()
  2278. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2279. uTorso.CFrame = WayPoints["Boxed Cars"]
  2280. end)
  2281.  
  2282. FineArtsShop.MouseButton1Down:connect(function()
  2283. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2284. uTorso.CFrame = WayPoints["Fine Arts Shop"]
  2285. end)
  2286.  
  2287. BobsShack.MouseButton1Down:connect(function()
  2288. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2289. uTorso.CFrame = WayPoints["Bob's Shack"]
  2290. end)
  2291.  
  2292. Dock.MouseButton1Down:connect(function()
  2293. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2294. uTorso.CFrame = WayPoints["Dock"]
  2295. end)
  2296.  
  2297. Bridge.MouseButton1Down:connect(function()
  2298. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2299. uTorso.CFrame = WayPoints["Bridge"]
  2300. end)
  2301.  
  2302. EndTimes.MouseButton1Down:connect(function()
  2303. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2304. uTorso.CFrame = WayPoints["End Times"]
  2305. end)
  2306.  
  2307. ShrineOfSight.MouseButton1Down:connect(function()
  2308. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2309. uTorso.CFrame = WayPoints["Shrine Of Sight"]
  2310. end)
  2311.  
  2312. TheDen.MouseButton1Down:connect(function()
  2313. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2314. uTorso.CFrame = WayPoints["The Den"]
  2315. end)
  2316.  
  2317. VolcanoWin.MouseButton1Down:connect(function()
  2318. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2319. uTorso.CFrame = WayPoints["Volcano Win"]
  2320. end)
  2321.  
  2322. SkiLodge.MouseButton1Down:connect(function()
  2323. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2324. uTorso.CFrame = WayPoints["Ski Lodge"]
  2325. end)
  2326.  
  2327. StrangeMan.MouseButton1Down:connect(function()
  2328. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2329. uTorso.CFrame = WayPoints["Strange Man"]
  2330. end)
  2331.  
  2332. FrostTreeArea.MouseButton1Down:connect(function()
  2333. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2334. uTorso.CFrame = WayPoints["Frost Tree"]
  2335. end)
  2336.  
  2337. --- Make Greywood ---
  2338.  
  2339. GreywoodStart.MouseButton1Down:Connect(function()
  2340. if GreyStart == "Nothing" then
  2341. GreyStart = "On"
  2342. GreywoodStart.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2343. GreywoodStart.Text = "Stop"
  2344. for i,v in next,workspace.PlayerModels:GetChildren() do
  2345. if v:FindFirstChild("Type") then
  2346. if v.Type.Value == "Blueprint" then
  2347. v.Type.Value = "Structure"
  2348. end
  2349. end
  2350. end
  2351. else
  2352. GreyStart = "Nothing"
  2353. GreywoodStart.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2354. GreywoodStart.Text = "Start"
  2355. for i,v in next,workspace.PlayerModels:GetChildren() do
  2356. if v:FindFirstChild("Type") then
  2357. if v.Type.Value == "Structure" then
  2358. v.Type.Value = "Blueprint"
  2359. end
  2360. end
  2361. end
  2362. end
  2363. end)
  2364.  
  2365. --- Anti AFK ---
  2366.  
  2367. AntiAFK.MouseButton1Down:Connect(function()
  2368. if afkactive == true then
  2369. afkactive = false
  2370. AntiAFK.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2371. AntiAFK.Text = "Start Anti-AFK Mode"
  2372. elseif afkactive == false then
  2373. afkactive = true
  2374. AntiAFK.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2375. AntiAFK.Text = "Stop Anti-AFK Mode"
  2376.  
  2377. logtime = coroutine.wrap(function()
  2378. afktotaltime=0
  2379. while afkactive == true do
  2380. wait(1)
  2381. afktotaltime=afktotaltime+1
  2382. AntiAFKtime.Text = "AFK for: "..afktotaltime.." Seconds"
  2383. end
  2384. end)
  2385.  
  2386. messageBot = coroutine.wrap(function()
  2387. while afkactive == true do
  2388. wait(300)
  2389. possiblechats = {"afk", "Away from keyboard", "I'm AFK"}
  2390. decide=math.random(1,#possiblechats)
  2391. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(possiblechats[decide], "All")
  2392. game.Players:Chat("/e point")
  2393. end
  2394. end)
  2395.  
  2396. moveChar = coroutine.wrap(function()
  2397. plr = game:service'Players'.LocalPlayer
  2398. char = plr.Character
  2399. hum = char:FindFirstChildOfClass'Humanoid'
  2400. while afkactive==true do
  2401. wait(1)
  2402. hum:Move(Vector3.new(1, 0, 0), false)
  2403. wait(1)
  2404. hum:Move(Vector3.new(-1, 0, 0), false)
  2405. wait(1)
  2406. hum:Move(Vector3.new(1, 0, 0), false)
  2407. wait(1)
  2408. hum:Move(Vector3.new(-1, 0, 0), false)
  2409. wait(1)
  2410. hum:Move(Vector3.new(0, 1, 0), false)
  2411. wait(1)
  2412. hum:Move(Vector3.new(0, 1, 0), false)
  2413. wait(60)
  2414. end
  2415. end)
  2416.  
  2417. logtime()
  2418. moveChar()
  2419. messageBot()
  2420. end
  2421. end)
  2422.  
  2423. --- Plot Tp ---
  2424.  
  2425. PlotTp.MouseButton1Down:connect(function()
  2426. for i,v in pairs(game.Workspace.Properties:GetChildren()) do
  2427. if v.Owner.Value == game.Players.LocalPlayer then
  2428. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.OriginSquare.CFrame + Vector3.new(0,10,0)
  2429. end
  2430. end
  2431. end)
  2432.  
  2433. ---TP Wood ---
  2434.  
  2435. TPWood.MouseButton1Click:Connect(function()
  2436. for _, Log in pairs(service.Workspace.LogModels:GetChildren()) do
  2437. if Log.Name:sub(1, 6) == "Loose_" and Log:findFirstChild("Owner") then
  2438. if Log.Owner.Value == service.Players.LocalPlayer then
  2439. Log:MoveTo(service.Players.LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0, 20, 0))
  2440. for i=1,100 do
  2441. service.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Log)
  2442. end
  2443. end
  2444. end
  2445. end
  2446. end)
  2447.  
  2448. --- Sell Wood ---
  2449.  
  2450. SellWood.MouseButton1Click:Connect(function()
  2451. for _, Log in pairs(service.Workspace.LogModels:GetChildren()) do
  2452. if Log.Name:sub(1, 6) == "Loose_" and Log:findFirstChild("Owner") then
  2453. if Log.Owner.Value == service.Players.LocalPlayer then
  2454. for i,v in pairs(Log:GetChildren()) do
  2455. if v.Name=="WoodSection" then
  2456. spawn(function()
  2457. for i=1,10 do
  2458. wait()
  2459. v.CFrame=CFrame.new(Vector3.new(315, -0.296, 85.791))*CFrame.Angles(math.rad(90),0,0)
  2460. end
  2461. end)
  2462. end
  2463. end
  2464. spawn(function()
  2465. for i=1,20 do
  2466. wait()
  2467. service.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Log)
  2468. end
  2469. end)
  2470. end
  2471. end
  2472. end
  2473. end)
  2474.  
  2475. --- Sell Planks ---
  2476.  
  2477. SellPlanks.MouseButton1Click:Connect(function()
  2478. for _, Plank in pairs(service.Workspace.PlayerModels:GetChildren()) do
  2479. if Plank.Name=="Plank" and Plank:findFirstChild("Owner") then
  2480. if Plank.Owner.Value == service.Players.LocalPlayer then
  2481. for i,v in pairs(Plank:GetChildren()) do
  2482. if v.Name=="WoodSection" then
  2483. spawn(function()
  2484. for i=1,10 do
  2485. wait()
  2486. v.CFrame=CFrame.new(Vector3.new(315, -0.296, 85.791))*CFrame.Angles(math.rad(90),0,0)
  2487. end
  2488. end)
  2489. end
  2490. end
  2491. spawn(function()
  2492. for i=1,20 do
  2493. wait()
  2494. service.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Plank)
  2495. end
  2496. end)
  2497. end
  2498. end
  2499. end
  2500. end)
  2501.  
  2502. --- God Mode ---
  2503.  
  2504. GodMode.MouseButton1Click:Connect(function()
  2505. GodMode.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2506. game.Players.LocalPlayer.Character.Humanoid.Name = "1"
  2507. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  2508. l.Parent = game.Players.LocalPlayer.Character
  2509. l.Name = "Humanoid"
  2510. wait(0.1)
  2511. game.Players.LocalPlayer.Character["1"]:Destroy()
  2512. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  2513. game.Players.LocalPlayer.Character.Animate.Disabled = true
  2514. l.Changed:Connect(function()
  2515. if l then
  2516. l.WalkSpeed=Walk
  2517. l.JumpPower=Jump
  2518. end
  2519. end)
  2520. end)
  2521.  
  2522. --- Dupe ---
  2523.  
  2524. MoreInfo.MouseButton1Down:connect(function()
  2525. if MoreInfo.Text == "Info" then
  2526. MoreInfo.Text = "Close Info"
  2527. Info.Visible = true
  2528. else
  2529. MoreInfo.Text = "Info"
  2530. Info.Visible = false
  2531. end
  2532. end)
  2533.  
  2534. Option = false
  2535.  
  2536. Dupe.MouseButton1Down:connect(function()
  2537. plr = game:GetService("Players").LocalPlayer
  2538. slot = plr.CurrentSaveSlot
  2539. if Option == false then
  2540. if slot.Value == -1 then
  2541. Option = true
  2542. slot.RobloxLocked = true
  2543. Duper.Text = "Duping Active"
  2544. Duper.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2545. Duper.TextColor3 = Color3.new(1, 1, 1)
  2546. Dupe.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2547. Dupe.TextColor3 = Color3.new(1, 1, 1)
  2548. Dupe.Text = "Duping"
  2549. 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)."
  2550. end
  2551. else
  2552. Option = false
  2553. slot.RobloxLocked = false
  2554. Duper.Text = "Item Duping"
  2555. Duper.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2556. Duper.TextColor3 = Color3.new(1, 1, 1)
  2557. Dupe.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2558. Dupe.TextColor3 = Color3.new(1, 1, 1)
  2559. Dupe.Text = "Dupe"
  2560. DupingText1.Text = "Loaded Slot Will Save"
  2561. end
  2562. end)
  2563.  
  2564. --- Water Walk ---
  2565.  
  2566. WaterCollide.MouseButton1Down:connect(function()
  2567. if WCollide == "Nothing" then
  2568. WCollide = "On"
  2569. WaterCollide.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2570. WaterCollide.Text = "Water is Solid"
  2571. for i,v in pairs(game.Workspace.Water:GetChildren()) do
  2572. if v:IsA("Part") then
  2573. v.CanCollide = true
  2574. end
  2575. end
  2576. else
  2577. WCollide = "Nothing"
  2578. WaterCollide.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2579. WaterCollide.Text = "Walk on Water"
  2580. for i,v in pairs(game.Workspace.Water:GetChildren()) do
  2581. if v:IsA("Part") then
  2582. v.CanCollide = false
  2583. end
  2584. end
  2585. end
  2586. end)
  2587.  
  2588. --- BTools ---
  2589.  
  2590. CopyTool.MouseButton1Down:connect(function()
  2591. if BTool == "Copy" then
  2592. BTool = "Nothing"
  2593. CopyTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2594. else
  2595. BTool = "Copy"
  2596. CopyTool.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2597. DeleteTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2598. MoveTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2599. end
  2600. end)
  2601.  
  2602. DeleteTool.MouseButton1Down:connect(function()
  2603. if BTool == "Delete" then
  2604. BTool = "Nothing"
  2605. DeleteTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2606. else
  2607. BTool = "Delete"
  2608. DeleteTool.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2609. CopyTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2610. MoveTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2611. end
  2612. end)
  2613.  
  2614. MoveTool.MouseButton1Down:connect(function()
  2615. if BTool == "Move" then
  2616. BTool = "Nothing"
  2617. MoveTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2618. else
  2619. BTool = "Move"
  2620. MoveTool.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2621. CopyTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2622. DeleteTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2623. end
  2624. end)
  2625.  
  2626. Mouse.Button1Up:connect(function()
  2627. MDown = false
  2628. end)
  2629.  
  2630. Mouse.Button1Down:connect(function()
  2631. MDown = true
  2632. if BTool == "Copy" then
  2633. if Mouse.Target ~= nil then
  2634. Clone = Mouse.Target:clone()
  2635. Clone.Parent = game.Workspace
  2636. end
  2637. end
  2638.  
  2639. if BTool == "Delete" then
  2640. if Mouse.Target ~= nil then
  2641. Mouse.Target:remove()
  2642. end
  2643. end
  2644.  
  2645. if BTool == "Move" then
  2646. if Mouse.Target ~= nil then
  2647. MoveObject = Mouse.Target
  2648. end
  2649. end
  2650.  
  2651. wait()
  2652. if Clone ~= nil then
  2653. Clone.CanCollide = false
  2654. repeat
  2655. wait()
  2656. SubX = Clone.Size.X/2
  2657. SubY = Clone.Size.Y/2
  2658. SubZ = Clone.Size.Z/2
  2659. Clone.Position = Vector3.new(Mouse.Hit.X - SubX, Mouse.Hit.Y - SubY, Mouse.Hit.Z - SubZ)
  2660. until MDown == false
  2661. Clone.CanCollide = true
  2662. Clone.Position = Clone.Position + Vector3.new(SubX, SubY, SubZ)
  2663. Clone = nil
  2664. end
  2665.  
  2666. if MoveObject ~= nil then
  2667. MoveObject.CanCollide = false
  2668. repeat
  2669. wait()
  2670. SubX = MoveObject.Size.X/2
  2671. SubY = MoveObject.Size.Y/2
  2672. SubZ = MoveObject.Size.Z/2
  2673. MoveObject.Position = Vector3.new(Mouse.Hit.X - SubX, Mouse.Hit.Y - SubY, Mouse.Hit.Z - SubZ)
  2674. until MDown == false
  2675. MoveObject.CanCollide = true
  2676. MoveObject.Position = MoveObject.Position + Vector3.new(SubX, SubY, SubZ)
  2677. MoveObject= nil
  2678. end
  2679. end)
  2680.  
  2681. --- TP Tool ---
  2682.  
  2683. TPTool.MouseButton1Down:connect(function()
  2684. local Tele = Instance.new("Tool", game.Players.LocalPlayer.Backpack)
  2685. Tele.RequiresHandle = false
  2686. Tele.RobloxLocked = true
  2687. Tele.Name = "TPTool"
  2688. Tele.ToolTip = "Teleport Tool"
  2689. Tele.Equipped:connect(function(Mouse)
  2690. Mouse.Button1Down:connect(function()
  2691. if Mouse.Target then
  2692. game.Workspace:FindFirstChild(game.Players.LocalPlayer.Name).HumanoidRootPart.CFrame = (CFrame.new(Mouse.Hit.x, Mouse.Hit.y + 5, Mouse.Hit.z))
  2693. end
  2694. end)
  2695. end)
  2696. end)
  2697.  
  2698. --- Departure ---
  2699.  
  2700. game.Workspace.Ferry.TimeToDeparture.Changed:connect(function()
  2701. Depart.Text = "Ferry Departs: ".. game.Workspace.Ferry.TimeToDeparture.Value
  2702. if Depart.Text == "Ferry Departs: 0" then
  2703. wait(6)
  2704. Depart.Text = "Ferry has Departed"
  2705. else
  2706. Depart.Text = "Ferry Departs: ".. game.Workspace.Ferry.TimeToDeparture.Value
  2707. end
  2708. end)
  2709.  
  2710. --- Spawn Tree ---
  2711.  
  2712. function bringtree(telewoodtype)
  2713. local Wood = {
  2714. "Cherry",
  2715. "Palm",
  2716. "CaveCrawler",
  2717. "Generic",
  2718. "Spooky",
  2719. "Fir",
  2720. "GreenSwampy",
  2721. "Oak",
  2722. "Birch",
  2723. "Volcano",
  2724. "LoneCave",
  2725. "GoldSwampy",
  2726. "Koa",
  2727. "Walnut",
  2728. "Frost"
  2729. }
  2730.  
  2731. local NewRegionNames = {}
  2732.  
  2733. --Name Changer For Seperating What Is What
  2734.  
  2735. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2736. if l.Name == "TreeRegion" then
  2737. if l ~= nil then
  2738. for i, b in pairs(l:GetChildren()) do
  2739. if b:IsA("Model") then
  2740. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[1] then
  2741. l.Name = Wood[1]
  2742. warn("TreeRegion #1 Has Been Changed To: "..Wood[1])
  2743. table.insert(NewRegionNames, l.Name)
  2744. end
  2745. end
  2746. end
  2747. end
  2748. end
  2749. end
  2750.  
  2751. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2752. if l.Name == "TreeRegion" then
  2753. if l ~= nil then
  2754. for i, b in pairs(l:GetChildren()) do
  2755. if b:IsA("Model") then
  2756. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[2] then
  2757. l.Name = Wood[2]
  2758. warn("TreeRegion #2 Has Been Changed To: "..Wood[2])
  2759. table.insert(NewRegionNames, l.Name)
  2760. end
  2761. end
  2762. end
  2763. end
  2764. end
  2765. end
  2766.  
  2767. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2768. if l.Name == "TreeRegion" then
  2769. if l ~= nil then
  2770. for i, b in pairs(l:GetChildren()) do
  2771. if b:IsA("Model") then
  2772. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[3] then
  2773. l.Name = Wood[3]
  2774. warn("TreeRegion #3 Has Been Changed To: "..Wood[3])
  2775. table.insert(NewRegionNames, l.Name)
  2776. end
  2777. end
  2778. end
  2779. end
  2780. end
  2781. end
  2782.  
  2783. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2784. if l.Name == "TreeRegion" then
  2785. if l ~= nil then
  2786. for i, b in pairs(l:GetChildren()) do
  2787. if b:IsA("Model") then
  2788. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[4] then
  2789. l.Name = Wood[4]
  2790. warn("TreeRegion #4 Has Been Changed To: "..Wood[4])
  2791. table.insert(NewRegionNames, l.Name)
  2792. end
  2793. end
  2794. end
  2795. end
  2796. end
  2797. end
  2798.  
  2799. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2800. if l.Name == "TreeRegion" then
  2801. if l ~= nil then
  2802. for i, b in pairs(l:GetChildren()) do
  2803. if b:IsA("Model") then
  2804. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[5] then
  2805. l.Name = Wood[5]
  2806. warn("TreeRegion #5 Has Been Changed To: "..Wood[5])
  2807. table.insert(NewRegionNames, l.Name)
  2808. end
  2809. end
  2810. end
  2811. end
  2812. end
  2813. end
  2814.  
  2815. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2816. if l.Name == "TreeRegion" then
  2817. if l ~= nil then
  2818. for i, b in pairs(l:GetChildren()) do
  2819. if b:IsA("Model") then
  2820. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[6] then
  2821. l.Name = Wood[6]
  2822. warn("TreeRegion #6 Has Been Changed To: "..Wood[6])
  2823. table.insert(NewRegionNames, l.Name)
  2824. end
  2825. end
  2826. end
  2827. end
  2828. end
  2829. end
  2830.  
  2831. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2832. if l.Name == "TreeRegion" then
  2833. if l ~= nil then
  2834. for i, b in pairs(l:GetChildren()) do
  2835. if b:IsA("Model") then
  2836. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[7] then
  2837. l.Name = Wood[7]
  2838. warn("TreeRegion #7 Has Been Changed To: "..Wood[7])
  2839. table.insert(NewRegionNames, l.Name)
  2840. end
  2841. end
  2842. end
  2843. end
  2844. end
  2845. end
  2846.  
  2847. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2848. if l.Name == "TreeRegion" then
  2849. if l ~= nil then
  2850. for i, b in pairs(l:GetChildren()) do
  2851. if b:IsA("Model") then
  2852. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[8] then
  2853. l.Name = Wood[8]
  2854. warn("TreeRegion #8 Has Been Changed To: "..Wood[8])
  2855. table.insert(NewRegionNames, l.Name)
  2856. end
  2857. end
  2858. end
  2859. end
  2860. end
  2861. end
  2862.  
  2863. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2864. if l.Name == "TreeRegion" then
  2865. if l ~= nil then
  2866. for i, b in pairs(l:GetChildren()) do
  2867. if b:IsA("Model") then
  2868. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[9] then
  2869. l.Name = Wood[9]
  2870. warn("TreeRegion #9 Has Been Changed To: "..Wood[9])
  2871. table.insert(NewRegionNames, l.Name)
  2872. end
  2873. end
  2874. end
  2875. end
  2876. end
  2877. end
  2878.  
  2879. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2880. if l.Name == "TreeRegion" then
  2881. if l ~= nil then
  2882. for i, b in pairs(l:GetChildren()) do
  2883. if b:IsA("Model") then
  2884. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[10] then
  2885. l.Name = Wood[10]
  2886. warn("TreeRegion #10 Has Been Changed To: "..Wood[10])
  2887. table.insert(NewRegionNames, l.Name)
  2888. end
  2889. end
  2890. end
  2891. end
  2892. end
  2893. end
  2894.  
  2895. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2896. if l.Name == "TreeRegion" then
  2897. if l ~= nil then
  2898. for i, b in pairs(l:GetChildren()) do
  2899. if b:IsA("Model") then
  2900. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[11] then
  2901. l.Name = Wood[11]
  2902. warn("TreeRegion #11 Has Been Changed To: "..Wood[11])
  2903. table.insert(NewRegionNames, l.Name)
  2904. end
  2905. end
  2906. end
  2907. end
  2908. end
  2909. end
  2910.  
  2911. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2912. if l.Name == "TreeRegion" then
  2913. if l ~= nil then
  2914. for i, b in pairs(l:GetChildren()) do
  2915. if b:IsA("Model") then
  2916. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[12] then
  2917. l.Name = Wood[12]
  2918. warn("TreeRegion #12 Has Been Changed To: "..Wood[12])
  2919. table.insert(NewRegionNames, l.Name)
  2920. end
  2921. end
  2922. end
  2923. end
  2924. end
  2925. end
  2926.  
  2927. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2928. if l.Name == "TreeRegion" then
  2929. if l ~= nil then
  2930. for i, b in pairs(l:GetChildren()) do
  2931. if b:IsA("Model") then
  2932. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[13] then
  2933. l.Name = Wood[13]
  2934. warn("TreeRegion #13 Has Been Changed To: "..Wood[13])
  2935. table.insert(NewRegionNames, l.Name)
  2936. end
  2937. end
  2938. end
  2939. end
  2940. end
  2941. end
  2942.  
  2943. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2944. if l.Name == "TreeRegion" then
  2945. if l ~= nil then
  2946. for i, b in pairs(l:GetChildren()) do
  2947. if b:IsA("Model") then
  2948. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[14] then
  2949. l.Name = Wood[14]
  2950. warn("TreeRegion #14 Has Been Changed To: "..Wood[14])
  2951. table.insert(NewRegionNames, l.Name)
  2952. end
  2953. end
  2954. end
  2955. end
  2956. end
  2957. end
  2958.  
  2959. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2960. if l.Name == "TreeRegion" then
  2961. if l ~= nil then
  2962. for i, b in pairs(l:GetChildren()) do
  2963. if b:IsA("Model") then
  2964. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[15] then
  2965. l.Name = Wood[15]
  2966. warn("TreeRegion #15 Has Been Changed To: "..Wood[15])
  2967. table.insert(NewRegionNames, l.Name)
  2968. end
  2969. end
  2970. end
  2971. end
  2972. end
  2973. end
  2974.  
  2975. --Names Checker
  2976.  
  2977. for i, v in pairs(game:GetService("Workspace"):GetChildren()) do
  2978. print(v.Name)
  2979. end
  2980.  
  2981. --Teleporter
  2982.  
  2983. if telewoodtype == Wood[1] then
  2984. for i, v in pairs(game:GetService("Workspace")[Wood[1]]:GetChildren()) do
  2985. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[1] then
  2986. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  2987. end
  2988. end
  2989. end
  2990.  
  2991. if telewoodtype == Wood[2] then
  2992. for i, v in pairs(game:GetService("Workspace")[Wood[2]]:GetChildren()) do
  2993. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[2] then
  2994. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  2995. end
  2996. end
  2997. end
  2998.  
  2999. if telewoodtype == Wood[3] then
  3000. for i, v in pairs(game:GetService("Workspace")[Wood[3]]:GetChildren()) do
  3001. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[3] then
  3002. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3003. end
  3004. end
  3005. end
  3006.  
  3007. if telewoodtype == Wood[4] then
  3008. for i, v in pairs(game:GetService("Workspace")[Wood[4]]:GetChildren()) do
  3009. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[4] then
  3010. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3011. end
  3012. end
  3013. end
  3014.  
  3015. if telewoodtype == Wood[5] then
  3016. for i, v in pairs(game:GetService("Workspace")[Wood[5]]:GetChildren()) do
  3017. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[5] then
  3018. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3019. end
  3020. end
  3021. end
  3022.  
  3023. if telewoodtype == Wood[6] then
  3024. for i, v in pairs(game:GetService("Workspace")[Wood[6]]:GetChildren()) do
  3025. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[6] then
  3026. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3027. end
  3028. end
  3029. end
  3030.  
  3031. if telewoodtype == Wood[7] then
  3032. for i, v in pairs(game:GetService("Workspace")[Wood[7]]:GetChildren()) do
  3033. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[7] then
  3034. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3035. end
  3036. end
  3037. end
  3038.  
  3039. if telewoodtype == Wood[8] then
  3040. for i, v in pairs(game:GetService("Workspace")[Wood[8]]:GetChildren()) do
  3041. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[8] then
  3042. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3043. end
  3044. end
  3045. end
  3046.  
  3047. if telewoodtype == Wood[9] then
  3048. for i, v in pairs(game:GetService("Workspace")[Wood[9]]:GetChildren()) do
  3049. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[9] then
  3050. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3051. end
  3052. end
  3053. end
  3054.  
  3055. if telewoodtype == Wood[10] then
  3056. for i, v in pairs(game:GetService("Workspace")[Wood[10]]:GetChildren()) do
  3057. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[10] then
  3058. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3059. end
  3060. end
  3061. end
  3062.  
  3063. if telewoodtype == Wood[11] then
  3064. for i, v in pairs(game:GetService("Workspace")[Wood[11]]:GetChildren()) do
  3065. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[11] then
  3066. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3067. end
  3068. end
  3069. end
  3070.  
  3071. if telewoodtype == Wood[12] then
  3072. for i, v in pairs(game:GetService("Workspace")[Wood[12]]:GetChildren()) do
  3073. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[12] then
  3074. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3075. end
  3076. end
  3077. end
  3078.  
  3079. if telewoodtype == Wood[13] then
  3080. for i, v in pairs(game:GetService("Workspace")[Wood[13]]:GetChildren()) do
  3081. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[13] then
  3082. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3083. end
  3084. end
  3085. end
  3086.  
  3087. if telewoodtype == Wood[14] then
  3088. for i, v in pairs(game:GetService("Workspace")[Wood[14]]:GetChildren()) do
  3089. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[14] then
  3090. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3091. end
  3092. end
  3093. end
  3094. if telewoodtype == Wood[15] then
  3095. for i, v in pairs(game:GetService("Workspace")[Wood[15]]:GetChildren()) do
  3096. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[15] then
  3097. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3098. end
  3099. end
  3100. end
  3101. end
  3102.  
  3103. OakTree.MouseButton1Down:Connect(function()
  3104. bringtree('Generic')
  3105. end)
  3106.  
  3107. CherryTree.MouseButton1Down:Connect(function()
  3108. bringtree('Cherry')
  3109. end)
  3110.  
  3111. PalmTree.MouseButton1Down:Connect(function()
  3112. bringtree('Palm')
  3113. end)
  3114.  
  3115. CaveCrawlerTree.MouseButton1Down:Connect(function()
  3116. bringtree('CaveCrawler')
  3117. end)
  3118.  
  3119. SpookyTree.MouseButton1Down:Connect(function()
  3120. bringtree('Spooky')
  3121. end)
  3122.  
  3123. FirTree.MouseButton1Down:Connect(function()
  3124. bringtree('Fir')
  3125. end)
  3126.  
  3127. GreenTree.MouseButton1Down:Connect(function()
  3128. bringtree('GreenSwampy')
  3129. end)
  3130.  
  3131. BirchTree.MouseButton1Down:Connect(function()
  3132. bringtree('Birch')
  3133. end)
  3134.  
  3135. VolcanoTree.MouseButton1Down:Connect(function()
  3136. bringtree('Volcano')
  3137. end)
  3138.  
  3139. EndTimesTree.MouseButton1Down:Connect(function()
  3140. bringtree('LoneCave')
  3141. end)
  3142.  
  3143. ElmTree.MouseButton1Down:Connect(function()
  3144. bringtree('Oak')
  3145. end)
  3146.  
  3147. KoaTree.MouseButton1Down:Connect(function()
  3148. bringtree('Koa')
  3149. end)
  3150.  
  3151. GoldTree.MouseButton1Down:Connect(function()
  3152. bringtree('GoldSwampy')
  3153. end)
  3154.  
  3155. WalnutTree.MouseButton1Down:Connect(function()
  3156. bringtree('Walnut')
  3157. end)
  3158.  
  3159. FrostyTree.MouseButton1Down:Connect(function()
  3160. bringtree('Frost')
  3161. end)
  3162.  
  3163. --- ReJoin Server ---
  3164.  
  3165. ReJoinServer.MouseButton1Down:connect(function()
  3166. local placeId = "13822889"
  3167. game:GetService("TeleportService"):Teleport(placeId)
  3168. end)
  3169.  
  3170. --- End ---
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement