Advertisement
Guest User

Paperclip ET

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