Guest User

Untitled

a guest
Mar 30th, 2019
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 455.67 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local LumberTycoon2 = Instance.new("TextLabel")
  7. local te = Instance.new("TextLabel")
  8. local Gui = Instance.new("TextButton")
  9. local Gui_2 = Instance.new("TextButton")
  10. local Admin = Instance.new("TextButton")
  11. local Gui_3 = Instance.new("TextButton")
  12. local Gui_4 = Instance.new("TextButton")
  13. local Gui_5 = Instance.new("TextButton")
  14. local Gui_6 = Instance.new("TextButton")
  15. local TpClick = Instance.new("TextButton")
  16. local Close = Instance.new("TextButton")
  17. local Open = Instance.new("TextButton")
  18. --Properties:
  19. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  20.  
  21. Frame.Parent = ScreenGui
  22. Frame.BackgroundColor3 = Color3.new(0.666667, 0, 1)
  23. Frame.Position = UDim2.new(0.0993590057, 0, 0.0630258322, 0)
  24. Frame.Size = UDim2.new(0, 414, 0, 237)
  25. Frame.Visible = false
  26.  
  27. LumberTycoon2.Name = "👽LumberTycoon2👽"
  28. LumberTycoon2.Parent = Frame
  29. LumberTycoon2.BackgroundColor3 = Color3.new(0, 0, 0)
  30. LumberTycoon2.Size = UDim2.new(0, 414, 0, 29)
  31. LumberTycoon2.Font = Enum.Font.SourceSans
  32. LumberTycoon2.Text = "👽LumberTycoon2👽"
  33. LumberTycoon2.TextColor3 = Color3.new(0, 0, 1)
  34. LumberTycoon2.TextScaled = true
  35. LumberTycoon2.TextSize = 14
  36. LumberTycoon2.TextStrokeColor3 = Color3.new(0, 0, 1)
  37. LumberTycoon2.TextWrapped = true
  38.  
  39. te.Name = "te"
  40. te.Parent = Frame
  41. te.BackgroundColor3 = Color3.new(0, 0, 0)
  42. te.Position = UDim2.new(0, 0, 0.877637148, 0)
  43. te.Size = UDim2.new(0, 414, 0, 29)
  44. te.Font = Enum.Font.SourceSans
  45. te.Text = "😍By CanROblox😍"
  46. te.TextColor3 = Color3.new(0, 0, 1)
  47. te.TextScaled = true
  48. te.TextSize = 14
  49. te.TextStrokeColor3 = Color3.new(0, 0, 1)
  50. te.TextWrapped = true
  51.  
  52. Gui.Name = "Gui"
  53. Gui.Parent = Frame
  54. Gui.BackgroundColor3 = Color3.new(0, 0, 0)
  55. Gui.Position = UDim2.new(0.794686019, 0, 0.632911384, 0)
  56. Gui.Size = UDim2.new(0, 85, 0, 43)
  57. Gui.Font = Enum.Font.SourceSans
  58. Gui.Text = "Gui"
  59. Gui.TextColor3 = Color3.new(0, 0, 1)
  60. Gui.TextScaled = true
  61. Gui.TextSize = 14
  62. Gui.TextWrapped = true
  63. Gui.MouseButton1Click:Connect(function()
  64. -- Lumber Tycoon 2 Gui Created by LuckyMMB @ V3rmillion.net
  65. -- Discord https://discord.gg/GKzJnUC
  66. -- Credits to you if you made a script in this gui --
  67. -- Version 1.3a Last updated 13th Oct 2018 --
  68.  
  69. -- Automatically Add players to Blacklist --
  70.  
  71. Mouse = game.Players.LocalPlayer:GetMouse()
  72.  
  73. game:service'ReplicatedStorage'.Interaction.Ban:Destroy()
  74. Instance.new('RemoteEvent', game:service'ReplicatedStorage'.Interaction).Name = "Ban"
  75.  
  76. Client = game.ReplicatedStorage.Interaction.ClientSetListPlayer
  77. players = game.Players
  78. for i, v in pairs(players:GetPlayers()) do
  79. if v.Name ~= players.LocalPlayer.Name then
  80. Client:InvokeServer(players.LocalPlayer.BlacklistFolder, v, true)
  81. end
  82. end
  83. players.PlayerAdded:connect(function(plr)
  84. Client:InvokeServer(players.LocalPlayer.BlacklistFolder, plr, true)
  85. end)
  86.  
  87. -- Anti Idle --
  88. local vu = game:GetService("VirtualUser")
  89. game:GetService("Players").LocalPlayer.Idled:connect(function()
  90. vu:Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  91. wait(1)
  92. vu:Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  93. end)
  94.  
  95. --- Fly ---
  96.  
  97. function fly()
  98. for i,v in pairs(script:GetChildren()) do
  99. pcall(function() v.Value = "" end)
  100. game:GetService("Debris"):AddItem(v,.1)
  101. end
  102.  
  103. function weld(p0,p1,c0,c1,par)
  104. local w = Instance.new("Weld",p0 or par)
  105. w.Part0 = p0
  106. w.Part1 = p1
  107. w.C0 = c0 or CFrame.new()
  108. w.C1 = c1 or CFrame.new()
  109. return w
  110. end
  111.  
  112. local motors = {}
  113.  
  114. function motor(p0,p1,c0,c1,des,vel,par)
  115. local w = Instance.new("Motor6D",p0 or par)
  116. w.Part0 = p0
  117. w.Part1 = p1
  118. w.C0 = c0 or CFrame.new()
  119. w.C1 = c1 or CFrame.new()
  120. w.MaxVelocity = tonumber(vel) or .05
  121. w.DesiredAngle = tonumber(des) or 0
  122. return w
  123. end
  124.  
  125. function lerp(a,b,c)
  126. return a+(b-a)*c
  127. end
  128.  
  129. function clerp(c1,c2,al)
  130. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  131. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  132. for i,v in pairs(com1) do
  133. com1[i] = lerp(v,com2[i],al)
  134. end
  135. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  136. end
  137.  
  138. function ccomplerp(c1,c2,al)
  139. local com1 = {c1:components()}
  140. local com2 = {c2:components()}
  141. for i,v in pairs(com1) do
  142. com1[i] = lerp(v,com2[i],al)
  143. end
  144. return CFrame.new(unpack(com1))
  145. end
  146.  
  147. function tickwave(time,length,offset)
  148. return (math.abs((tick()+(offset or 0))%time-time/2)*2-time/2)/time/2*length
  149. end
  150.  
  151. function invcol(c)
  152. c = c.Color
  153. return BrickColor.new(Color3.new(1-c.b,1-c.g,1-c.r))
  154. end
  155. local oc = oc or function(...) return ... end
  156. local plr = game.Players.LocalPlayer
  157. local char = plr.Character
  158. local tor = char.Torso
  159. local hum = char.Humanoid
  160. hum.PlatformStand = false
  161. pcall(function()
  162. char.Wings:Destroy()
  163. end)
  164. pcall(function()
  165. char.Angel:Destroy() -- hat
  166. end)
  167. local mod = Instance.new("Model",char)
  168. mod.Name = "Wings"
  169. local special = {
  170. [game.Players.LocalPlayer.Name] = {"Black","Bright red",.5,0,false,Color3.new(1,0,0),Color3.new(0,0,0)},
  171. }
  172. local topcolor = BrickColor.new("Really black")
  173. local feacolor = BrickColor.new("Black")
  174. local ptrans = 0
  175. local pref = 0
  176. local fire = true
  177. local fmcol = Color3.new()
  178. local fscol = Color3.new()
  179. local spec = special[plr.Name:lower()]
  180. if spec then
  181. 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]
  182. end
  183. local part = Instance.new("Part")
  184. part.FormFactor = "Custom"
  185. part.Size = Vector3.new(.2,.2,.2)
  186. part.TopSurface,part.BottomSurface = 0,0
  187. part.CanCollide = false
  188. part.BrickColor = BrickColor.new("Black")
  189. part.Transparency = ptrans
  190. part.Reflectance = pref
  191. local ef = Instance.new("Fire",fire and part or nil)
  192. ef.Size = .15
  193. ef.Color = BrickColor.new("Black").Color
  194. ef.SecondaryColor = BrickColor.new("Bright red").Color
  195. part:BreakJoints()
  196. function newpart()
  197. local clone = part:Clone()
  198. clone.Parent = mod
  199. clone:BreakJoints()
  200. return clone
  201. end
  202. local feath = newpart()
  203. feath.BrickColor = feacolor
  204. feath.Transparency = 0
  205. Instance.new("SpecialMesh",feath).MeshType = "Sphere"
  206. function newfeather()
  207. local clone = feath:Clone()
  208. clone.Parent = mod
  209. clone:BreakJoints()
  210. return clone
  211. end
  212. flying = false
  213. moving = false
  214. for i,v in pairs(tor:GetChildren()) do
  215. if v.ClassName:lower():match("body") then
  216. v:Destroy()
  217. end
  218. end
  219. local ctor = tor:Clone()
  220. ctor:ClearAllChildren()
  221. ctor.Name = "cTorso"
  222. ctor.Transparency = 1
  223. ctor.CanCollide = false
  224. ctor.FormFactor = "Custom"
  225. ctor.Size = Vector3.new(.2,.2,.2)
  226. ctor.Parent = mod
  227. weld(tor,ctor)
  228. local bg = Instance.new("BodyGyro",ctor)
  229. bg.maxTorque = Vector3.new()
  230. bg.P = 15000
  231. bg.D = 1000
  232. local bv = Instance.new("BodyVelocity",ctor)
  233. bv.maxForce = Vector3.new()
  234. bv.P = 15000
  235. vel = Vector3.new()
  236. cf = CFrame.new()
  237. flspd = 0
  238. keysdown = {}
  239. keypressed = {}
  240. ktime = {}
  241. descendtimer = 0
  242. jumptime = tick()
  243. hum.Jumping:connect(function()
  244. jumptime = tick()
  245. end)
  246. cam = workspace.CurrentCamera
  247. kd = plr:GetMouse().KeyDown:connect(oc(function(key)
  248. keysdown[key] = true
  249. keypressed[key] = true
  250. if key == "q" then
  251. descendtimer = tick()
  252. elseif key == " " and not hum.Jump then
  253. jumptime = tick()
  254. elseif (key == "a" or key == "d") and ktime[key] and tick()-ktime[key] < .3 and math.abs(reqrotx) < .3 then
  255. reqrotx = key == "a" and math.pi*2 or -math.pi*2
  256. end
  257. ktime[key] = tick()
  258. end))
  259.  
  260. ku = plr:GetMouse().KeyUp:connect(function(key)
  261. keysdown[key] = false
  262. if key == " " then
  263. descendtimer = tick()
  264. end
  265. end)
  266. function mid(a,b,c)
  267. return math.max(a,math.min(b,c or -a))
  268. end
  269. function bn(a)
  270. return a and 1 or 0
  271. end
  272. function gm(tar)
  273. local m = 0
  274. for i,v in pairs(tar:GetChildren()) do
  275. if v:IsA("BasePart") then
  276. m = m + v:GetMass()
  277. end
  278. m = m + gm(v)
  279. end
  280. return m
  281. end
  282. reqrotx = 0
  283. local grav = 196.2
  284. local con
  285. con = game:GetService("RunService").Stepped:connect(oc(function()
  286. local obvel = tor.CFrame:vectorToObjectSpace(tor.Velocity)
  287. local sspd, uspd,fspd = obvel.X,obvel.Y,obvel.Z
  288. if flying then
  289. local lfldir = fldir
  290. fldir = cam.CoordinateFrame:vectorToWorldSpace(Vector3.new(bn(keysdown.d)-bn(keysdown.a),0,bn(keysdown.s)-bn(keysdown.w))).unit
  291. local lmoving = moving
  292. moving = fldir.magnitude > .1
  293. if lmoving and not moving then
  294. idledir = lfldir*Vector3.new(1,0,1)
  295. descendtimer = tick()
  296. end
  297. local dbomb = fldir.Y < -.6 or (moving and keysdown["1"])
  298. if moving and keysdown["0"] and lmoving then
  299. fldir = (Vector3.new(lfldir.X,math.min(fldir.Y,lfldir.Y+.01)-.1,lfldir.Z)+(fldir*Vector3.new(1,0,1))*.05).unit
  300. end
  301. local down = tor.CFrame:vectorToWorldSpace(Vector3.new(0,-1,0))
  302. local descending = (not moving and keysdown["q"] and not keysdown[" "])
  303. cf = ccomplerp(cf,CFrame.new(tor.Position,tor.Position+(not moving and idledir or fldir)),keysdown["0"] and .02 or .07)
  304. local gdown = not dbomb and cf.lookVector.Y < -.2 and tor.Velocity.unit.Y < .05
  305. hum.PlatformStand = true
  306. bg.maxTorque = Vector3.new(1,1,1)*9e5
  307. local rotvel = CFrame.new(Vector3.new(),tor.Velocity):toObjectSpace(CFrame.new(Vector3.new(),fldir)).lookVector
  308. 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)
  309. reqrotx = reqrotx - reqrotx/10
  310. bv.maxForce = Vector3.new(1,1,1)*9e4*.5
  311. local anioff =(bn(keysdown[" "])-bn(keysdown["q"]))/2
  312. local ani = tickwave(1.5-anioff,1)
  313. 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)
  314. vel = moving and cf.lookVector*flspd or Vector3.new()
  315. 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))
  316. local hit,ray = workspace:FindPartOnRayWithIgnoreList(Ray.new(tor.Position,Vector3.new(0,-3.5+math.min(0,bv.velocity.y)/30,0)),{char})
  317. if hit and down.Y < -.85 and tick()-flystart > 1 then
  318. flying = false
  319. hum.PlatformStand = false
  320. tor.Velocity = Vector3.new()
  321. end
  322. else
  323. bg.maxTorque = Vector3.new()
  324. bv.maxForce = Vector3.new()
  325. local x,y,z = fspd/160,uspd/700,sspd/900
  326. if keypressed[" "] and not flying and (tick()-jumptime > .05 and (tick()-jumptime < 3 or hum.Jump)) then
  327. vel = Vector3.new(0,50,0)
  328. bv.velocity = vel
  329. idledir = cam.CoordinateFrame.lookVector*Vector3.new(1,0,1)
  330. cf = tor.CFrame * CFrame.Angles(-.01,0,0)
  331. tor.CFrame = cf
  332. bg.cframe = cf
  333. flystart = tick()
  334. flying = true
  335. end
  336. end
  337. keypressed = {}
  338. end))
  339. end
  340. fly()
  341.  
  342. ---
  343.  
  344. Option = false
  345. BTool = "Nothing"
  346. WCollide = "Nothing"
  347. LT2Info = "Nothing"
  348. GreyStart = "Nothing"
  349. MDown = false
  350. afkactive = false
  351. CustomLocationSet = false
  352.  
  353. -- Objects
  354.  
  355. local LT2GUI = Instance.new("ScreenGui")
  356. local MainFrame = Instance.new("Frame")
  357. local MenuLeftFrame = Instance.new("Frame")
  358. local LT2GUI2Frame = Instance.new("Frame")
  359. local BringTree = Instance.new("TextButton")
  360. local Waypoints = Instance.new("TextButton")
  361. local SellFrame = Instance.new("Frame")
  362. local SellWoodPlanks = Instance.new("TextButton")
  363. local SellWood = Instance.new("TextButton")
  364. local SellPlanks = Instance.new("TextButton")
  365. local SellWoodTxt1 = Instance.new("TextLabel")
  366. local SellPlanksTxt1 = Instance.new("TextLabel")
  367. local Greywood = Instance.new("TextButton")
  368. local GreywoodFrame = Instance.new("Frame")
  369. local GreywoodHeader = Instance.new("TextLabel")
  370. local GreywoodInfo = Instance.new("TextLabel")
  371. local GreywoodStart = Instance.new("TextButton")
  372. local StartFrameInfo = Instance.new("TextLabel")
  373. local TPWood = Instance.new("TextButton")
  374. local TPPlanks = Instance.new("TextButton")
  375. local PlankFrame = Instance.new("Frame")
  376. local ProcessedWoodList = Instance.new("ScrollingFrame")
  377. local TpAllPlanks = Instance.new("TextButton")
  378. local TpAllPlanksSpacer = Instance.new("TextLabel")
  379. local TpAllPlanksTxt1 = Instance.new("TextLabel")
  380. local GodMode = Instance.new("TextButton")
  381. local GoldAxe = Instance.new("TextButton")
  382. local GoldAxeInfo = Instance.new("TextLabel")
  383. local GoldAxeFrame = Instance.new("Frame")
  384. local GoldAxeHeader = Instance.new("TextLabel")
  385. local GoldAxeStart = Instance.new("TextButton")
  386. local Duper = Instance.new("TextButton")
  387. local Depart = Instance.new("TextLabel")
  388. local CopyTool = Instance.new("TextButton")
  389. local DeleteTool = Instance.new("TextButton")
  390. local MoveTool = Instance.new("TextButton")
  391. local WaterCollide = Instance.new("TextButton")
  392. local Minimize = Instance.new("TextButton")
  393. local MenuFrame = Instance.new("Frame")
  394. local WaypointFrame = Instance.new("Frame")
  395. local WaypointList = Instance.new("ScrollingFrame")
  396. local BoxedCars = Instance.new("TextButton")
  397. local Cave = Instance.new("TextButton")
  398. local LinksLogic = Instance.new("TextButton")
  399. local Volcano = Instance.new("TextButton")
  400. local BobsShack = Instance.new("TextButton")
  401. local FancyFurnishings = Instance.new("TextButton")
  402. local LandStore = Instance.new("TextButton")
  403. local Dock = Instance.new("TextButton")
  404. local FineArtsShop = Instance.new("TextButton")
  405. local PalmIsland = Instance.new("TextButton")
  406. local FrostTreeArea = Instance.new("TextButton")
  407. local Bridge = Instance.new("TextButton")
  408. local Swamp = Instance.new("TextButton")
  409. local SpawnPoint = Instance.new("TextButton")
  410. local WoodRUs = Instance.new("TextButton")
  411. local EndTimes = Instance.new("TextButton")
  412. local ShrineOfSight = Instance.new("TextButton")
  413. local TheDen = Instance.new("TextButton")
  414. local VolcanoWin = Instance.new("TextButton")
  415. local SkiLodge = Instance.new("TextButton")
  416. local StrangeMan = Instance.new("TextButton")
  417. local ShowLocation = Instance.new("TextButton")
  418. local CustomTPPoint = Instance.new("TextButton")
  419. local PlotTp = Instance.new("TextButton")
  420. local BringTreeFrame = Instance.new("Frame")
  421. local BringTreeHeader = Instance.new("TextLabel")
  422. local BringTreeInfo1 = Instance.new("TextButton")
  423. local BringTreeInfo2 = Instance.new("TextLabel")
  424. local ElmTree = Instance.new("TextButton")
  425. local CherryTree = Instance.new("TextButton")
  426. local OakTree = Instance.new("TextButton")
  427. local BirchTree = Instance.new("TextButton")
  428. local CaveCrawlerTree = Instance.new("TextButton")
  429. local GoldTree = Instance.new("TextButton")
  430. local GreenTree = Instance.new("TextButton")
  431. local SpookyTree = Instance.new("TextButton")
  432. local FirTree = Instance.new("TextButton")
  433. local VolcanoTree = Instance.new("TextButton")
  434. local KoaTree = Instance.new("TextButton")
  435. local PalmTree = Instance.new("TextButton")
  436. local EndTimesTree = Instance.new("TextButton")
  437. local WalnutTree = Instance.new("TextButton")
  438. local SnowGlowTree = Instance.new("TextButton")
  439. local SnowGlowTreeArea = Instance.new("TextButton")
  440. local FrostyTree = Instance.new("TextButton")
  441. local DupeFrame = Instance.new("Frame")
  442. local Info = Instance.new("TextLabel")
  443. local Dupe = Instance.new("TextButton")
  444. local DupingText1 = Instance.new("TextLabel")
  445. local MoreInfo = Instance.new("TextButton")
  446. local Read = Instance.new("TextLabel")
  447. local PlayerFrame = Instance.new("Frame")
  448. local Player1 = Instance.new("TextButton")
  449. local Player2 = Instance.new("TextButton")
  450. local Player3 = Instance.new("TextButton")
  451. local Player4 = Instance.new("TextButton")
  452. local Player5 = Instance.new("TextButton")
  453. local Player6 = Instance.new("TextButton")
  454. local PlyrSel = Instance.new("TextLabel")
  455. local TpPlayer = Instance.new("TextButton")
  456. local TpBase = Instance.new("TextButton")
  457. local WalkSpeed = Instance.new("TextButton")
  458. local JumpPower = Instance.new("TextButton")
  459. local WalkText = Instance.new("TextBox")
  460. local JumpText = Instance.new("TextBox")
  461. local NoClip = Instance.new("TextButton")
  462. local GuiLabel = Instance.new("TextButton")
  463. local GuiInfo = Instance.new("TextLabel")
  464. local GuiInfoExtras = Instance.new("TextLabel")
  465. local BToolsHeader = Instance.new("TextLabel")
  466. local AntiAFK = Instance.new("TextButton")
  467. local AntiAFKtime = Instance.new("TextLabel")
  468. local PlayerTp = Instance.new("TextButton")
  469. local TPTool = Instance.new("TextButton")
  470. local ReJoinServer = Instance.new("TextButton")
  471. local OpenFrame = Instance.new("Frame")
  472. local Open = Instance.new("TextButton")
  473. local CloseLT2 = Instance.new("TextButton")
  474.  
  475. -- Properties
  476.  
  477. LT2GUI.Name = "LT2GUI"
  478. LT2GUI.Parent = game.CoreGui
  479. local LT2CORE = game.CoreGui["LT2GUI"]
  480.  
  481. OpenFrame.Name = "OpenFrame"
  482. OpenFrame.Parent = LT2GUI
  483. OpenFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  484. OpenFrame.BorderColor3 = Color3.new(0, 1, 0)
  485. OpenFrame.Position = UDim2.new(1, -83, 0.5, 30)
  486. OpenFrame.Size = UDim2.new(0, 80, 0, 20)
  487.  
  488. Open.Name = "Open"
  489. Open.Parent = OpenFrame
  490. Open.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  491. Open.BorderColor3 = Color3.new(0, 1, 0)
  492. Open.Size = UDim2.new(0, 80, 0, 20)
  493. Open.Font = Enum.Font.Fantasy
  494. Open.FontSize = Enum.FontSize.Size18
  495. Open.Text = "Open GUI"
  496. Open.TextColor3 = Color3.new(0, 1, 0)
  497. Open.TextSize = 18
  498. Open.Selectable = true
  499. Open.TextWrapped = true
  500.  
  501. MainFrame.Name = "MainFrame"
  502. MainFrame.Parent = LT2GUI
  503. MainFrame.Active = true
  504. MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  505. MainFrame.BackgroundTransparency = 0.15
  506. MainFrame.BorderColor3 = Color3.new(0, 1, 0)
  507. MainFrame.Draggable = true
  508. MainFrame.Position = UDim2.new(0, 5, 1, -550)
  509. MainFrame.Selectable = true
  510. MainFrame.Size = UDim2.new(0, 335, 0, 370)
  511. MainFrame.Visible = false
  512.  
  513. MenuLeftFrame.Name = "MenuLeftFrame"
  514. MenuLeftFrame.Parent = MainFrame
  515. MenuLeftFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  516. MenuLeftFrame.BackgroundTransparency = 1
  517. MenuLeftFrame.Position = UDim2.new(0, 5, 0, 40)
  518. MenuLeftFrame.Size = UDim2.new(0, 140, 0, 325)
  519.  
  520. MenuFrame.Name = "MenuFrame"
  521. MenuFrame.Parent = MainFrame
  522. MenuFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  523. MenuFrame.BackgroundTransparency = 0
  524. MenuFrame.BorderColor3 = Color3.new(0, 1, 0)
  525. MenuFrame.Position = UDim2.new(0, 155, 0, 40)
  526. MenuFrame.Size = UDim2.new(0, 170, 0, 290)
  527.  
  528. StartFrameInfo.Name = "StartFrameInfo"
  529. StartFrameInfo.Parent = MenuFrame
  530. StartFrameInfo.BackgroundColor3 = Color3.new(0, 0, 0)
  531. StartFrameInfo.BackgroundTransparency = 1
  532. StartFrameInfo.Position = UDim2.new(0, 3, 0, 3)
  533. StartFrameInfo.Size = UDim2.new(0, 164, 0, 284)
  534. StartFrameInfo.Font = Enum.Font.Fantasy
  535. StartFrameInfo.FontSize = Enum.FontSize.Size14
  536. 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."
  537. StartFrameInfo.TextColor3 = Color3.new(1, 1, 1)
  538. StartFrameInfo.TextWrapped = true
  539. StartFrameInfo.TextSize = 14
  540.  
  541. CloseLT2.Name = "CloseLT2"
  542. CloseLT2.Parent = MainFrame
  543. CloseLT2.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  544. CloseLT2.BorderColor3 = Color3.new(0, 1, 0)
  545. CloseLT2.Position = UDim2.new(0, 10, 0, 10)
  546. CloseLT2.Size = UDim2.new(0, 20, 0, 20)
  547. CloseLT2.Font = Enum.Font.Fantasy
  548. CloseLT2.FontSize = Enum.FontSize.Size18
  549. CloseLT2.Text = "X"
  550. CloseLT2.TextColor3 = Color3.new(1, 1, 1)
  551. CloseLT2.TextScaled = true
  552. CloseLT2.TextWrapped = true
  553. CloseLT2.TextSize = 17
  554.  
  555. Minimize.Name = "Minimize"
  556. Minimize.Parent = MainFrame
  557. Minimize.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  558. Minimize.BorderColor3 = Color3.new(0, 1, 0)
  559. Minimize.Position = UDim2.new(0, 40, 0, 10)
  560. Minimize.Size = UDim2.new(0, 20, 0, 20)
  561. Minimize.Font = Enum.Font.Fantasy
  562. Minimize.FontSize = Enum.FontSize.Size18
  563. Minimize.Text = "-"
  564. Minimize.TextColor3 = Color3.new(1, 1, 1)
  565. Minimize.TextScaled = true
  566. Minimize.TextWrapped = true
  567. Minimize.TextSize = 17
  568.  
  569. GuiLabel.Name = "GuiLabel"
  570. GuiLabel.Parent = MainFrame
  571. GuiLabel.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  572. GuiLabel.BackgroundTransparency = 0
  573. GuiLabel.BorderColor3 = Color3.new(0.2, 0.2, 0.2)
  574. GuiLabel.Position = UDim2.new(0, 78, 0, 6)
  575. GuiLabel.Size = UDim2.new(0, 49, 0, 28)
  576. GuiLabel.Font = Enum.Font.Fantasy
  577. GuiLabel.FontSize = Enum.FontSize.Size14
  578. GuiLabel.Text = "LT2"
  579. GuiLabel.TextColor3 = Color3.new(1, 0, 1)
  580. GuiLabel.TextScaled = true
  581. GuiLabel.TextSize = 14
  582. GuiLabel.TextWrapped = true
  583.  
  584. LT2GUI2Frame.Name = "LT2GUI2Frame"
  585. LT2GUI2Frame.Parent = MainFrame
  586. LT2GUI2Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  587. LT2GUI2Frame.BackgroundTransparency = 0
  588. LT2GUI2Frame.BorderColor3 = Color3.new(0, 1, 0)
  589. LT2GUI2Frame.Position = UDim2.new(0, 10, 0, 40)
  590. LT2GUI2Frame.Size = UDim2.new(0, 315, 0, 320)
  591. LT2GUI2Frame.ZIndex = 8
  592. LT2GUI2Frame.Visible = false
  593. LT2GUI2Frame.Active = false
  594.  
  595. GuiInfo.Name = "GuiInfo"
  596. GuiInfo.Parent = LT2GUI2Frame
  597. GuiInfo.BackgroundColor3 = Color3.new(0, 0, 0)
  598. GuiInfo.BorderColor3 = Color3.new(0, 1, 0)
  599. GuiInfo.Position = UDim2.new(0, 0, 0, 5)
  600. GuiInfo.Size = UDim2.new(0, 315, 0, 200)
  601. GuiInfo.BackgroundTransparency = 1
  602. GuiInfo.Font = Enum.Font.Fantasy
  603. GuiInfo.FontSize = Enum.FontSize.Size14
  604. 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"
  605. GuiInfo.TextColor3 = Color3.new(1, 1, 1)
  606. GuiInfo.TextSize = 14
  607. GuiInfo.ZIndex = 8
  608. GuiInfo.TextWrapped = true
  609. GuiInfo.TextYAlignment = Enum.TextYAlignment.Top
  610.  
  611. GuiInfoExtras.Name = "GuiInfoExtras"
  612. GuiInfoExtras.Parent = LT2GUI2Frame
  613. GuiInfoExtras.BackgroundColor3 = Color3.new(0, 0, 0)
  614. GuiInfoExtras.BorderColor3 = Color3.new(0, 0, 0)
  615. GuiInfoExtras.Position = UDim2.new(0, 125, 0, 180)
  616. GuiInfoExtras.Size = UDim2.new(0, 65, 0, 20)
  617. GuiInfoExtras.BackgroundTransparency = 0
  618. GuiInfoExtras.Font = Enum.Font.Fantasy
  619. GuiInfoExtras.FontSize = Enum.FontSize.Size18
  620. GuiInfoExtras.TextColor3 = Color3.new(1, 1, 1)
  621. GuiInfoExtras.Text = "EXTRAS"
  622. GuiInfoExtras.ZIndex = 8
  623. GuiInfoExtras.TextSize = 20
  624.  
  625. ReJoinServer.Name = "ReJoinServer"
  626. ReJoinServer.Parent = LT2GUI2Frame
  627. ReJoinServer.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  628. ReJoinServer.BorderColor3 = Color3.new(0, 1, 0)
  629. ReJoinServer.Position = UDim2.new(0, 80, 0, 210)
  630. ReJoinServer.Size = UDim2.new(0, 155, 0, 20)
  631. ReJoinServer.BackgroundTransparency = 0
  632. ReJoinServer.Font = Enum.Font.Fantasy
  633. ReJoinServer.FontSize = Enum.FontSize.Size18
  634. ReJoinServer.Text = "ReJoin Server"
  635. ReJoinServer.TextColor3 = Color3.new(1, 1, 1)
  636. ReJoinServer.ZIndex = 8
  637. ReJoinServer.TextSize = 17
  638.  
  639. AntiAFK.Name = "AntiAFK"
  640. AntiAFK.Parent = LT2GUI2Frame
  641. AntiAFK.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  642. AntiAFK.BorderColor3 = Color3.new(0, 1, 0)
  643. AntiAFK.Position = UDim2.new(0, 80, 0, 240)
  644. AntiAFK.Size = UDim2.new(0, 155, 0, 20)
  645. AntiAFK.BackgroundTransparency = 0
  646. AntiAFK.Font = Enum.Font.Fantasy
  647. AntiAFK.FontSize = Enum.FontSize.Size18
  648. AntiAFK.Text = "Start Anti-AFK Mode"
  649. AntiAFK.TextColor3 = Color3.new(1, 1, 1)
  650. AntiAFK.ZIndex = 8
  651. AntiAFK.TextSize = 17
  652.  
  653. AntiAFKtime.Name = "AntiAFKtime"
  654. AntiAFKtime.Parent = LT2GUI2Frame
  655. AntiAFKtime.BackgroundColor3 = Color3.new(0, 0, 0)
  656. AntiAFKtime.BorderColor3 = Color3.new(0, 0, 0)
  657. AntiAFKtime.Position = UDim2.new(0, 80, 0, 263)
  658. AntiAFKtime.Size = UDim2.new(0, 155, 0, 20)
  659. AntiAFKtime.BackgroundTransparency = 0
  660. AntiAFKtime.Font = Enum.Font.Fantasy
  661. AntiAFKtime.FontSize = Enum.FontSize.Size18
  662. AntiAFKtime.Text = "AFK for: 0 Seconds"
  663. AntiAFKtime.TextColor3 = Color3.new(1, 1, 1)
  664. AntiAFKtime.ZIndex = 8
  665. AntiAFKtime.TextSize = 17
  666.  
  667. BToolsHeader.Name = "BToolsHeader"
  668. BToolsHeader.Parent = LT2GUI2Frame
  669. BToolsHeader.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  670. BToolsHeader.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  671. BToolsHeader.Position = UDim2.new(0, 10, 0, 290)
  672. BToolsHeader.Size = UDim2.new(0, 70, 0, 20)
  673. BToolsHeader.BackgroundTransparency = 0
  674. BToolsHeader.Font = Enum.Font.Fantasy
  675. BToolsHeader.FontSize = Enum.FontSize.Size18
  676. BToolsHeader.Text = "BTools"
  677. BToolsHeader.TextColor3 = Color3.new(1, 1, 1)
  678. BToolsHeader.ZIndex = 8
  679. BToolsHeader.TextSize = 17
  680.  
  681. CopyTool.Name = "CopyTool"
  682. CopyTool.Parent = LT2GUI2Frame
  683. CopyTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  684. CopyTool.TextColor3 = Color3.new(1, 1, 1)
  685. CopyTool.BorderColor3 = Color3.new(0, 1, 0)
  686. CopyTool.Position = UDim2.new(0, 97, 0, 290)
  687. CopyTool.Size = UDim2.new(0, 64, 0, 20)
  688. CopyTool.Font = Enum.Font.Fantasy
  689. CopyTool.FontSize = Enum.FontSize.Size18
  690. CopyTool.BackgroundTransparency = 0
  691. CopyTool.Text = "Copy"
  692. CopyTool.ZIndex = 8
  693. CopyTool.TextSize = 17
  694.  
  695. DeleteTool.Name = "DeleteTool"
  696. DeleteTool.Parent = LT2GUI2Frame
  697. DeleteTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  698. DeleteTool.TextColor3 = Color3.new(1, 1, 1)
  699. DeleteTool.BorderColor3 = Color3.new(0, 1, 0)
  700. DeleteTool.Position = UDim2.new(0, 169, 0, 290)
  701. DeleteTool.Size = UDim2.new(0, 64, 0, 20)
  702. DeleteTool.Font = Enum.Font.Fantasy
  703. DeleteTool.FontSize = Enum.FontSize.Size18
  704. DeleteTool.BackgroundTransparency = 0
  705. DeleteTool.Text = "Delete"
  706. DeleteTool.ZIndex = 8
  707. DeleteTool.TextSize = 17
  708.  
  709. MoveTool.Name = "MoveTool"
  710. MoveTool.Parent = LT2GUI2Frame
  711. MoveTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  712. MoveTool.TextColor3 = Color3.new(1, 1, 1)
  713. MoveTool.BorderColor3 = Color3.new(0, 1, 0)
  714. MoveTool.Position = UDim2.new(0, 241, 0, 290)
  715. MoveTool.Size = UDim2.new(0, 64, 0, 20)
  716. MoveTool.Font = Enum.Font.Fantasy
  717. MoveTool.FontSize = Enum.FontSize.Size18
  718. MoveTool.BackgroundTransparency = 0
  719. MoveTool.Text = "Move"
  720. MoveTool.ZIndex = 8
  721. MoveTool.TextSize = 17
  722.  
  723. TPTool.Name = "TPTool"
  724. TPTool.Parent = MainFrame
  725. TPTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  726. TPTool.BorderColor3 = Color3.new(0, 1, 0)
  727. TPTool.Position = UDim2.new(0, 145, 0, 10)
  728. TPTool.Size = UDim2.new(0, 60, 0, 20)
  729. TPTool.Font = Enum.Font.Fantasy
  730. TPTool.FontSize = Enum.FontSize.Size18
  731. TPTool.Text = "Tp Tool"
  732. TPTool.TextColor3 = Color3.new(1, 1, 1)
  733. TPTool.TextSize = 17
  734.  
  735. NoClip.Name = "NoClip"
  736. NoClip.Parent = MainFrame
  737. NoClip.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  738. NoClip.BorderColor3 = Color3.new(0, 1, 0)
  739. NoClip.Position = UDim2.new(0, 215, 0, 10)
  740. NoClip.Size = UDim2.new(0, 110, 0, 20)
  741. NoClip.Font = Enum.Font.Fantasy
  742. NoClip.FontSize = Enum.FontSize.Size18
  743. NoClip.Text = "Enable NoClip"
  744. NoClip.TextColor3 = Color3.new(1, 1, 1)
  745. NoClip.TextSize = 17
  746.  
  747. Depart.Name = "Depart"
  748. Depart.Parent = MenuLeftFrame
  749. Depart.BackgroundColor3 = Color3.new(0, 0, 0)
  750. Depart.BackgroundTransparency = 1
  751. Depart.Position = UDim2.new(0, 5, 0, 0)
  752. Depart.Size = UDim2.new(0, 135, 0, 20)
  753. Depart.Font = Enum.Font.Fantasy
  754. Depart.FontSize = Enum.FontSize.Size18
  755. Depart.Text = "Ferry Departs: 0"
  756. Depart.TextColor3 = Color3.new(1, 1, 1)
  757. Depart.TextSize = 17
  758.  
  759. Waypoints.Name = "Waypoints"
  760. Waypoints.Parent = MenuLeftFrame
  761. Waypoints.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  762. Waypoints.TextColor3 = Color3.new(1, 1, 1)
  763. Waypoints.BorderColor3 = Color3.new(0, 1, 0)
  764. Waypoints.Position = UDim2.new(0, 5, 0, 30)
  765. Waypoints.Size = UDim2.new(0, 135, 0, 20)
  766. Waypoints.Font = Enum.Font.Fantasy
  767. Waypoints.FontSize = Enum.FontSize.Size18
  768. Waypoints.Text = "Waypoints"
  769. Waypoints.TextSize = 17
  770.  
  771. TPWood.Name = "TPWood"
  772. TPWood.Parent = MenuLeftFrame
  773. TPWood.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  774. TPWood.BorderColor3 = Color3.new(0, 1, 0)
  775. TPWood.Position = UDim2.new(0, 5, 0, 60)
  776. TPWood.Size = UDim2.new(0, 135, 0, 20)
  777. TPWood.Font = Enum.Font.Fantasy
  778. TPWood.FontSize = Enum.FontSize.Size18
  779. TPWood.Text = "TP Wood to You"
  780. TPWood.TextColor3 = Color3.new(1, 1, 1)
  781. TPWood.TextSize = 17
  782.  
  783. TPPlanks.Name = "TPPlanks"
  784. TPPlanks.Parent = MenuLeftFrame
  785. TPPlanks.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  786. TPPlanks.BorderColor3 = Color3.new(0, 1, 0)
  787. TPPlanks.Position = UDim2.new(0, 5, 0, 90)
  788. TPPlanks.Size = UDim2.new(0, 135, 0, 20)
  789. TPPlanks.Font = Enum.Font.Fantasy
  790. TPPlanks.FontSize = Enum.FontSize.Size18
  791. TPPlanks.Text = "TP Planks to You"
  792. TPPlanks.TextColor3 = Color3.new(1, 1, 1)
  793. TPPlanks.TextSize = 17
  794.  
  795. PlankFrame.Name = "PlankFrame"
  796. PlankFrame.Parent = MenuFrame
  797. PlankFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  798. PlankFrame.BackgroundTransparency = 0
  799. PlankFrame.BorderColor3 = Color3.new(0, 1, 0)
  800. PlankFrame.Position = UDim2.new(0, 0, 0, 34)
  801. PlankFrame.Size = UDim2.new(0, 170, 0, 256)
  802. PlankFrame.Visible = false
  803.  
  804. ProcessedWoodList.Name = "ProcessedWoodList"
  805. ProcessedWoodList.Parent = PlankFrame
  806. ProcessedWoodList.BackgroundColor3 = Color3.new(0, 0, 0)
  807. ProcessedWoodList.BackgroundTransparency = 1
  808. ProcessedWoodList.BorderColor3 = Color3.new(0, 1, 0)
  809. ProcessedWoodList.Position = UDim2.new(0, 0, 0, 1)
  810. ProcessedWoodList.Size = UDim2.new(0, 170, 0, 256)
  811.  
  812. TpAllPlanks.Name = "TpAllPlanks"
  813. TpAllPlanks.Parent = PlankFrame
  814. TpAllPlanks.BackgroundColor3 = Color3.new(0.15, 0.15, 0.15)
  815. TpAllPlanks.BorderColor3 = Color3.new(0, 1, 0)
  816. TpAllPlanks.Position = UDim2.new(0, 0, 0, -34)
  817. TpAllPlanks.Size = UDim2.new(0, 170, 0, 30)
  818. TpAllPlanks.Font = Enum.Font.Fantasy
  819. TpAllPlanks.FontSize = Enum.FontSize.Size18
  820. TpAllPlanks.Text = "TP ALL PLANKS"
  821. TpAllPlanks.TextColor3 = Color3.new(1, 1, 1)
  822. TpAllPlanks.TextSize = 18
  823.  
  824. TpAllPlanksSpacer.Name = "TpAllPlanksSpacer"
  825. TpAllPlanksSpacer.Parent = PlankFrame
  826. TpAllPlanksSpacer.BackgroundTransparency = 0
  827. TpAllPlanksSpacer.BackgroundColor3 = Color3.new(0, 0, 0)
  828. TpAllPlanksSpacer.BorderColor3 = Color3.new(0, 1, 0)
  829. TpAllPlanksSpacer.Position = UDim2.new(0, 0, 0, -4)
  830. TpAllPlanksSpacer.Size = UDim2.new(0, 170, 0, 4)
  831. TpAllPlanksSpacer.Font = Enum.Font.Fantasy
  832. TpAllPlanksSpacer.Text = ""
  833. TpAllPlanksSpacer.TextColor3 = Color3.new(1, 1, 1)
  834. TpAllPlanksSpacer.TextSize = 17
  835.  
  836. SellWoodPlanks.Name = "SellWoodPlanks"
  837. SellWoodPlanks.Parent = MenuLeftFrame
  838. SellWoodPlanks.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  839. SellWoodPlanks.BorderColor3 = Color3.new(0, 1, 0)
  840. SellWoodPlanks.Position = UDim2.new(0, 5, 0, 120)
  841. SellWoodPlanks.Size = UDim2.new(0, 135, 0, 20)
  842. SellWoodPlanks.Font = Enum.Font.Fantasy
  843. SellWoodPlanks.FontSize = Enum.FontSize.Size18
  844. SellWoodPlanks.Text = "Sell Wood/Planks"
  845. SellWoodPlanks.TextColor3 = Color3.new(1, 1, 1)
  846. SellWoodPlanks.TextSize = 17
  847.  
  848. SellFrame.Name = "SellFrame"
  849. SellFrame.Parent = MenuFrame
  850. SellFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  851. SellFrame.BackgroundTransparency = 0
  852. SellFrame.BorderColor3 = Color3.new(0, 1, 0)
  853. SellFrame.Size = UDim2.new(0, 170, 0, 290)
  854. SellFrame.Visible = false
  855.  
  856. SellWood.Name = "SellWood"
  857. SellWood.Parent = SellFrame
  858. SellWood.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  859. SellWood.BorderColor3 = Color3.new(0, 1, 0)
  860. SellWood.Position = UDim2.new(0, 30, 0, 10)
  861. SellWood.Size = UDim2.new(0, 110, 0, 20)
  862. SellWood.Font = Enum.Font.Fantasy
  863. SellWood.FontSize = Enum.FontSize.Size18
  864. SellWood.Text = "Sell Cut Wood"
  865. SellWood.TextColor3 = Color3.new(1, 1, 1)
  866. SellWood.TextSize = 17
  867.  
  868. SellWoodTxt1.Name = "SellWoodTxt1"
  869. SellWoodTxt1.Parent = SellFrame
  870. SellWoodTxt1.BackgroundColor3 = Color3.new(0, 0, 0)
  871. SellWoodTxt1.BackgroundTransparency = 1
  872. SellWoodTxt1.BorderColor3 = Color3.new(0, 0, 0)
  873. SellWoodTxt1.Position = UDim2.new(0, 5, 0, 35)
  874. SellWoodTxt1.Size = UDim2.new(0, 160, 0, 100)
  875. SellWoodTxt1.Font = Enum.Font.Fantasy
  876. SellWoodTxt1.FontSize = Enum.FontSize.Size18
  877. 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"
  878. SellWoodTxt1.TextColor3 = Color3.new(0, 1, 0)
  879. SellWoodTxt1.TextSize = 14
  880. SellWoodTxt1.TextWrapped = true
  881. SellWoodTxt1.TextYAlignment = Enum.TextYAlignment.Top
  882.  
  883. SellPlanks.Name = "SellPlanks"
  884. SellPlanks.Parent = SellFrame
  885. SellPlanks.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  886. SellPlanks.BorderColor3 = Color3.new(0, 1, 0)
  887. SellPlanks.Position = UDim2.new(0, 6, 0, 135)
  888. SellPlanks.Size = UDim2.new(0, 158, 0, 20)
  889. SellPlanks.Font = Enum.Font.Fantasy
  890. SellPlanks.FontSize = Enum.FontSize.Size18
  891. SellPlanks.Text = "Sell Processed Planks"
  892. SellPlanks.TextColor3 = Color3.new(1, 1, 1)
  893. SellPlanks.TextSize = 17
  894.  
  895. SellPlanksTxt1.Name = "SellPlanksTxt1"
  896. SellPlanksTxt1.Parent = SellFrame
  897. SellPlanksTxt1.BackgroundColor3 = Color3.new(0, 0, 0)
  898. SellPlanksTxt1.BackgroundTransparency = 1
  899. SellPlanksTxt1.BorderColor3 = Color3.new(0, 0, 0)
  900. SellPlanksTxt1.Position = UDim2.new(0, 5, 0, 160)
  901. SellPlanksTxt1.Size = UDim2.new(0, 160, 0, 120)
  902. SellPlanksTxt1.Font = Enum.Font.Fantasy
  903. SellPlanksTxt1.FontSize = Enum.FontSize.Size18
  904. 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."
  905. SellPlanksTxt1.TextColor3 = Color3.new(0, 1, 0)
  906. SellPlanksTxt1.TextSize = 14
  907. SellPlanksTxt1.TextWrapped = true
  908. SellPlanksTxt1.TextYAlignment = Enum.TextYAlignment.Top
  909.  
  910. BringTree.Name = "BringTree"
  911. BringTree.Parent = MenuLeftFrame
  912. BringTree.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  913. BringTree.BorderColor3 = Color3.new(0, 1, 0)
  914. BringTree.Position = UDim2.new(0, 5, 0, 150)
  915. BringTree.Size = UDim2.new(0, 135, 0, 20)
  916. BringTree.Font = Enum.Font.Fantasy
  917. BringTree.FontSize = Enum.FontSize.Size18
  918. BringTree.Text = "BringTree(patched)"
  919. BringTree.TextColor3 = Color3.new(1, 1, 1)
  920. BringTree.TextSize = 17
  921.  
  922. PlayerTp.Name = "PlayerTp"
  923. PlayerTp.Parent = MenuLeftFrame
  924. PlayerTp.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  925. PlayerTp.TextColor3 = Color3.new(1, 1, 1)
  926. PlayerTp.BorderColor3 = Color3.new(0, 1, 0)
  927. PlayerTp.Position = UDim2.new(0, 5, 0, 180)
  928. PlayerTp.Size = UDim2.new(0, 135, 0, 20)
  929. PlayerTp.Font = Enum.Font.Fantasy
  930. PlayerTp.FontSize = Enum.FontSize.Size18
  931. PlayerTp.Text = "Tp to Players"
  932. PlayerTp.TextSize = 17
  933.  
  934. Duper.Name = "Duper"
  935. Duper.Parent = MenuLeftFrame
  936. Duper.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  937. Duper.TextColor3 = Color3.new(1, 1, 1)
  938. Duper.BorderColor3 = Color3.new(0, 1, 0)
  939. Duper.Position = UDim2.new(0, 5, 0, 210)
  940. Duper.Size = UDim2.new(0, 135, 0, 20)
  941. Duper.Font = Enum.Font.Fantasy
  942. Duper.FontSize = Enum.FontSize.Size18
  943. Duper.Text = "Item Duping"
  944. Duper.TextSize = 17
  945.  
  946. Greywood.Name = "Greywood"
  947. Greywood.Parent = MenuLeftFrame
  948. Greywood.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  949. Greywood.TextColor3 = Color3.new(1, 1, 1)
  950. Greywood.BorderColor3 = Color3.new(0, 1, 0)
  951. Greywood.Position = UDim2.new(0, 5, 0, 240)
  952. Greywood.Size = UDim2.new(0, 135, 0, 20)
  953. Greywood.Font = Enum.Font.Fantasy
  954. Greywood.FontSize = Enum.FontSize.Size18
  955. Greywood.Text = "Grey Structures"
  956. Greywood.TextSize = 17
  957.  
  958. GreywoodFrame.Name = "GreywoodFrame"
  959. GreywoodFrame.Parent = MenuFrame
  960. GreywoodFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  961. GreywoodFrame.BackgroundTransparency = 0
  962. GreywoodFrame.BorderColor3 = Color3.new(0, 1, 0)
  963. GreywoodFrame.Size = UDim2.new(0, 170, 0, 290)
  964. GreywoodFrame.Visible = false
  965.  
  966. GreywoodHeader.Name = "GreywoodHeader"
  967. GreywoodHeader.Parent = GreywoodFrame
  968. GreywoodHeader.BackgroundColor3 = Color3.new(1, 1, 1)
  969. GreywoodHeader.BackgroundTransparency = 0.15
  970. GreywoodHeader.BorderColor3 = Color3.new(0, 1, 0)
  971. GreywoodHeader.Size = UDim2.new(0, 170, 0, 35)
  972. GreywoodHeader.Font = Enum.Font.Fantasy
  973. GreywoodHeader.FontSize = Enum.FontSize.Size18
  974. GreywoodHeader.Text = "TURN EMPTY BLUEPRINT TO GREYWOOD"
  975. GreywoodHeader.TextColor3 = Color3.new(0, 0, 0)
  976. GreywoodHeader.TextScaled = true
  977. GreywoodHeader.TextSize = 17
  978. GreywoodHeader.TextWrapped = true
  979.  
  980. GreywoodInfo.Name = "GreywoodInfo"
  981. GreywoodInfo.Parent = GreywoodFrame
  982. GreywoodInfo.BackgroundColor3 = Color3.new(0, 0, 0)
  983. GreywoodInfo.BackgroundTransparency = 1
  984. GreywoodInfo.Position = UDim2.new(0, 5, 0, 40)
  985. GreywoodInfo.Size = UDim2.new(0, 160, 0, 250)
  986. GreywoodInfo.Font = Enum.Font.Fantasy
  987. GreywoodInfo.FontSize = Enum.FontSize.Size14
  988. 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."
  989. GreywoodInfo.TextColor3 = Color3.new(0, 1, 0)
  990. GreywoodInfo.TextSize = 14
  991. GreywoodInfo.TextYAlignment = Enum.TextYAlignment.Top
  992. GreywoodInfo.TextWrapped = true
  993.  
  994. GreywoodStart.Name = "GreywoodStart"
  995. GreywoodStart.Parent = GreywoodFrame
  996. GreywoodStart.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  997. GreywoodStart.BorderColor3 = Color3.new(0, 1, 0)
  998. GreywoodStart.Position = UDim2.new(0, 25, 0, 255)
  999. GreywoodStart.Size = UDim2.new(0, 120, 0, 25)
  1000. GreywoodStart.Font = Enum.Font.Fantasy
  1001. GreywoodStart.FontSize = Enum.FontSize.Size18
  1002. GreywoodStart.Text = "Start"
  1003. GreywoodStart.TextColor3 = Color3.new(1, 1, 1)
  1004. GreywoodStart.TextSize = 17
  1005.  
  1006. WaterCollide.Name = "WaterCollide"
  1007. WaterCollide.Parent = MenuLeftFrame
  1008. WaterCollide.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1009. WaterCollide.BorderColor3 = Color3.new(0, 1, 0)
  1010. WaterCollide.Position = UDim2.new(0, 5, 0, 270)
  1011. WaterCollide.Size = UDim2.new(0, 135, 0, 20)
  1012. WaterCollide.Font = Enum.Font.Fantasy
  1013. WaterCollide.FontSize = Enum.FontSize.Size18
  1014. WaterCollide.Text = "Walk on Water"
  1015. WaterCollide.TextColor3 = Color3.new(1, 1, 1)
  1016. WaterCollide.TextSize = 17
  1017.  
  1018. GodMode.Name = "GodMode"
  1019. GodMode.Parent = MenuLeftFrame
  1020. GodMode.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1021. GodMode.TextColor3 = Color3.new(1, 1, 1)
  1022. GodMode.BorderColor3 = Color3.new(0, 1, 0)
  1023. GodMode.Position = UDim2.new(0, 5, 0, 300)
  1024. GodMode.Size = UDim2.new(0, 55, 0, 20)
  1025. GodMode.Font = Enum.Font.Fantasy
  1026. GodMode.FontSize = Enum.FontSize.Size18
  1027. GodMode.Text = "God"
  1028. GodMode.TextScaled = true
  1029. GodMode.TextSize = 17
  1030.  
  1031. GoldAxe.Name = "GoldAxe"
  1032. GoldAxe.Parent = MenuLeftFrame
  1033. GoldAxe.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1034. GoldAxe.TextColor3 = Color3.new(1, 1, 1)
  1035. GoldAxe.BorderColor3 = Color3.new(0, 1, 0)
  1036. GoldAxe.Position = UDim2.new(0, 70, 0, 300)
  1037. GoldAxe.Size = UDim2.new(0, 70, 0, 20)
  1038. GoldAxe.Font = Enum.Font.Fantasy
  1039. GoldAxe.FontSize = Enum.FontSize.Size18
  1040. GoldAxe.Text = "Gold Axe"
  1041. GoldAxe.TextWrapped = true
  1042. GoldAxe.TextSize = 17
  1043.  
  1044. GoldAxeFrame.Name = "GoldAxeFrame"
  1045. GoldAxeFrame.Parent = MenuFrame
  1046. GoldAxeFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  1047. GoldAxeFrame.BackgroundTransparency = 0
  1048. GoldAxeFrame.BorderColor3 = Color3.new(0, 1, 0)
  1049. GoldAxeFrame.Size = UDim2.new(0, 170, 0, 290)
  1050. GoldAxeFrame.Visible = false
  1051.  
  1052. GoldAxeHeader.Name = "GoldAxeHeader"
  1053. GoldAxeHeader.Parent = GoldAxeFrame
  1054. GoldAxeHeader.BackgroundColor3 = Color3.new(1, 1, 1)
  1055. GoldAxeHeader.BackgroundTransparency = 0.15
  1056. GoldAxeHeader.BorderColor3 = Color3.new(0, 1, 0)
  1057. GoldAxeHeader.Size = UDim2.new(0, 170, 0, 35)
  1058. GoldAxeHeader.Font = Enum.Font.Fantasy
  1059. GoldAxeHeader.FontSize = Enum.FontSize.Size18
  1060. GoldAxeHeader.Text = "CHOP WOOD WITH GOLDEN AXE POWER"
  1061. GoldAxeHeader.TextColor3 = Color3.new(0, 0, 0)
  1062. GoldAxeHeader.TextScaled = true
  1063. GoldAxeHeader.TextSize = 17
  1064. GoldAxeHeader.TextWrapped = true
  1065.  
  1066. GoldAxeInfo.Name = "GoldAxeInfo"
  1067. GoldAxeInfo.Parent = GoldAxeFrame
  1068. GoldAxeInfo.BackgroundColor3 = Color3.new(0, 0, 0)
  1069. GoldAxeInfo.BackgroundTransparency = 1
  1070. GoldAxeInfo.Position = UDim2.new(0, 5, 0, 40)
  1071. GoldAxeInfo.Size = UDim2.new(0, 160, 0, 210)
  1072. GoldAxeInfo.Font = Enum.Font.Fantasy
  1073. GoldAxeInfo.FontSize = Enum.FontSize.Size14
  1074. 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."
  1075. GoldAxeInfo.TextColor3 = Color3.new(0, 1, 0)
  1076. GoldAxeInfo.TextSize = 14
  1077. GoldAxeInfo.TextYAlignment = Enum.TextYAlignment.Top
  1078. GoldAxeInfo.TextWrapped = true
  1079.  
  1080. GoldAxeStart.Name = "GoldAxeStart"
  1081. GoldAxeStart.Parent = GoldAxeFrame
  1082. GoldAxeStart.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1083. GoldAxeStart.BorderColor3 = Color3.new(0, 1, 0)
  1084. GoldAxeStart.Position = UDim2.new(0, 25, 0, 255)
  1085. GoldAxeStart.Size = UDim2.new(0, 120, 0, 25)
  1086. GoldAxeStart.Font = Enum.Font.Fantasy
  1087. GoldAxeStart.FontSize = Enum.FontSize.Size18
  1088. GoldAxeStart.Text = "Start"
  1089. GoldAxeStart.TextColor3 = Color3.new(1, 1, 1)
  1090. GoldAxeStart.TextSize = 17
  1091.  
  1092. WaypointFrame.Name = "WaypointFrame"
  1093. WaypointFrame.Parent = MenuFrame
  1094. WaypointFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  1095. WaypointFrame.BackgroundTransparency = 0
  1096. WaypointFrame.BorderColor3 = Color3.new(0, 1, 0)
  1097. WaypointFrame.Size = UDim2.new(0, 170, 0, 290)
  1098. WaypointFrame.Visible = false
  1099.  
  1100. WaypointList.Name = "WaypointList"
  1101. WaypointList.Parent = WaypointFrame
  1102. WaypointList.BackgroundColor3 = Color3.new(0, 0, 0)
  1103. WaypointList.BackgroundTransparency = 0
  1104. WaypointList.BorderColor3 = Color3.new(0, 1, 0)
  1105. WaypointList.Size = UDim2.new(0, 170, 0, 290)
  1106. WaypointList.CanvasSize = UDim2.new(0, 0, 2.27, 0)
  1107.  
  1108. ShowLocation.Name = "ShowLocation"
  1109. ShowLocation.Parent = WaypointList
  1110. ShowLocation.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1111. ShowLocation.TextColor3 = Color3.new(1, 1, 1)
  1112. ShowLocation.BorderColor3 = Color3.new(0, 1, 0)
  1113. ShowLocation.Position = UDim2.new(0, 5, 0, 5)
  1114. ShowLocation.Size = UDim2.new(0, 147, 0, 40)
  1115. ShowLocation.Font = Enum.Font.Fantasy
  1116. ShowLocation.FontSize = Enum.FontSize.Size14
  1117. ShowLocation.Text = "Show Current Coords\nSet Custom Location"
  1118. ShowLocation.TextWrapped = true
  1119. ShowLocation.TextSize = 15
  1120.  
  1121. CustomTPPoint.Name = "CustomTPPoint"
  1122. CustomTPPoint.Parent = WaypointList
  1123. CustomTPPoint.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1124. CustomTPPoint.TextColor3 = Color3.new(1, 1, 1)
  1125. CustomTPPoint.BorderColor3 = Color3.new(0, 1, 0)
  1126. CustomTPPoint.Position = UDim2.new(0, 5, 0, 50)
  1127. CustomTPPoint.Size = UDim2.new(0, 147, 0, 20)
  1128. CustomTPPoint.Font = Enum.Font.Fantasy
  1129. CustomTPPoint.FontSize = Enum.FontSize.Size14
  1130. CustomTPPoint.Text = "TP to Custom Location"
  1131. CustomTPPoint.TextWrapped = true
  1132. CustomTPPoint.TextSize = 15
  1133.  
  1134. PlotTp.Name = "PlotTp"
  1135. PlotTp.Parent = WaypointList
  1136. PlotTp.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1137. PlotTp.TextColor3 = Color3.new(1, 1, 1)
  1138. PlotTp.BorderColor3 = Color3.new(0, 1, 0)
  1139. PlotTp.Position = UDim2.new(0, 5, 0, 75)
  1140. PlotTp.Size = UDim2.new(0, 147, 0, 20)
  1141. PlotTp.Font = Enum.Font.Fantasy
  1142. PlotTp.FontSize = Enum.FontSize.Size14
  1143. PlotTp.Text = "Tp to Your Plot"
  1144. PlotTp.TextSize = 16
  1145.  
  1146. SpawnPoint.Name = "SpawnPoint"
  1147. SpawnPoint.Parent = WaypointList
  1148. SpawnPoint.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1149. SpawnPoint.TextColor3 = Color3.new(1, 1, 1)
  1150. SpawnPoint.BorderColor3 = Color3.new(0, 1, 0)
  1151. SpawnPoint.Position = UDim2.new(0, 5, 0, 100)
  1152. SpawnPoint.Size = UDim2.new(0, 147, 0, 20)
  1153. SpawnPoint.Font = Enum.Font.Fantasy
  1154. SpawnPoint.FontSize = Enum.FontSize.Size14
  1155. SpawnPoint.Text = "Spawn Point"
  1156. SpawnPoint.TextSize = 16
  1157.  
  1158. WoodRUs.Name = "WoodRUs"
  1159. WoodRUs.Parent = WaypointList
  1160. WoodRUs.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1161. WoodRUs.TextColor3 = Color3.new(1, 1, 1)
  1162. WoodRUs.BorderColor3 = Color3.new(0, 1, 0)
  1163. WoodRUs.Position = UDim2.new(0, 5, 0, 125)
  1164. WoodRUs.Size = UDim2.new(0, 147, 0, 20)
  1165. WoodRUs.Font = Enum.Font.Fantasy
  1166. WoodRUs.FontSize = Enum.FontSize.Size14
  1167. WoodRUs.Text = "Wood R Us"
  1168. WoodRUs.TextSize = 16
  1169.  
  1170. LinksLogic.Name = "LinksLogic"
  1171. LinksLogic.Parent = WaypointList
  1172. LinksLogic.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1173. LinksLogic.TextColor3 = Color3.new(1, 1, 1)
  1174. LinksLogic.BorderColor3 = Color3.new(0, 1, 0)
  1175. LinksLogic.Position = UDim2.new(0, 5, 0, 150)
  1176. LinksLogic.Size = UDim2.new(0, 147, 0, 20)
  1177. LinksLogic.Font = Enum.Font.Fantasy
  1178. LinksLogic.FontSize = Enum.FontSize.Size14
  1179. LinksLogic.Text = "Link's Logic"
  1180. LinksLogic.TextSize = 16
  1181.  
  1182. BoxedCars.Name = "BoxedCars"
  1183. BoxedCars.Parent = WaypointList
  1184. BoxedCars.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1185. BoxedCars.TextColor3 = Color3.new(1, 1, 1)
  1186. BoxedCars.BorderColor3 = Color3.new(0, 1, 0)
  1187. BoxedCars.Position = UDim2.new(0, 5, 0, 175)
  1188. BoxedCars.Size = UDim2.new(0, 147, 0, 20)
  1189. BoxedCars.Font = Enum.Font.Fantasy
  1190. BoxedCars.FontSize = Enum.FontSize.Size14
  1191. BoxedCars.Text = "Boxed Cars"
  1192. BoxedCars.TextSize = 16
  1193.  
  1194. FancyFurnishings.Name = "FancyFurnishings"
  1195. FancyFurnishings.Parent = WaypointList
  1196. FancyFurnishings.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1197. FancyFurnishings.TextColor3 = Color3.new(1, 1, 1)
  1198. FancyFurnishings.BorderColor3 = Color3.new(0, 1, 0)
  1199. FancyFurnishings.Position = UDim2.new(0, 5, 0, 200)
  1200. FancyFurnishings.Size = UDim2.new(0, 147, 0, 20)
  1201. FancyFurnishings.Font = Enum.Font.Fantasy
  1202. FancyFurnishings.FontSize = Enum.FontSize.Size14
  1203. FancyFurnishings.Text = "Fancy Furnishings"
  1204. FancyFurnishings.TextSize = 16
  1205.  
  1206. LandStore.Name = "LandStore"
  1207. LandStore.Parent = WaypointList
  1208. LandStore.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1209. LandStore.TextColor3 = Color3.new(1, 1, 1)
  1210. LandStore.BorderColor3 = Color3.new(0, 1, 0)
  1211. LandStore.Position = UDim2.new(0, 5, 0, 225)
  1212. LandStore.Size = UDim2.new(0, 147, 0, 20)
  1213. LandStore.Font = Enum.Font.Fantasy
  1214. LandStore.FontSize = Enum.FontSize.Size14
  1215. LandStore.Text = "Land Store"
  1216. LandStore.TextSize = 16
  1217.  
  1218. FineArtsShop.Name = "FineArtsShop"
  1219. FineArtsShop.Parent = WaypointList
  1220. FineArtsShop.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1221. FineArtsShop.TextColor3 = Color3.new(1, 1, 1)
  1222. FineArtsShop.BorderColor3 = Color3.new(0, 1, 0)
  1223. FineArtsShop.Position = UDim2.new(0, 5, 0, 250)
  1224. FineArtsShop.Size = UDim2.new(0, 147, 0, 20)
  1225. FineArtsShop.Font = Enum.Font.Fantasy
  1226. FineArtsShop.FontSize = Enum.FontSize.Size14
  1227. FineArtsShop.Text = "Fine Arts Shop"
  1228. FineArtsShop.TextSize = 16
  1229.  
  1230. BobsShack.Name = "BobsShack"
  1231. BobsShack.Parent = WaypointList
  1232. BobsShack.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1233. BobsShack.TextColor3 = Color3.new(1, 1, 1)
  1234. BobsShack.BorderColor3 = Color3.new(0, 1, 0)
  1235. BobsShack.Position = UDim2.new(0, 5, 0, 275)
  1236. BobsShack.Size = UDim2.new(0, 147, 0, 20)
  1237. BobsShack.Font = Enum.Font.Fantasy
  1238. BobsShack.FontSize = Enum.FontSize.Size14
  1239. BobsShack.Text = "Bob's Shack"
  1240. BobsShack.TextSize = 16
  1241.  
  1242. Swamp.Name = "Swamp"
  1243. Swamp.Parent = WaypointList
  1244. Swamp.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1245. Swamp.TextColor3 = Color3.new(1, 1, 1)
  1246. Swamp.BorderColor3 = Color3.new(0, 1, 0)
  1247. Swamp.Position = UDim2.new(0, 5, 0, 300)
  1248. Swamp.Size = UDim2.new(0, 147, 0, 20)
  1249. Swamp.Font = Enum.Font.Fantasy
  1250. Swamp.FontSize = Enum.FontSize.Size14
  1251. Swamp.Text = "Swamp"
  1252. Swamp.TextSize = 16
  1253.  
  1254. PalmIsland.Name = "PalmIsland"
  1255. PalmIsland.Parent = WaypointList
  1256. PalmIsland.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1257. PalmIsland.TextColor3 = Color3.new(1, 1, 1)
  1258. PalmIsland.BorderColor3 = Color3.new(0, 1, 0)
  1259. PalmIsland.Position = UDim2.new(0, 5, 0, 325)
  1260. PalmIsland.Size = UDim2.new(0, 147, 0, 20)
  1261. PalmIsland.Font = Enum.Font.Fantasy
  1262. PalmIsland.FontSize = Enum.FontSize.Size14
  1263. PalmIsland.Text = "Palm Island"
  1264. PalmIsland.TextSize = 16
  1265.  
  1266. Cave.Name = "Cave"
  1267. Cave.Parent = WaypointList
  1268. Cave.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1269. Cave.TextColor3 = Color3.new(1, 1, 1)
  1270. Cave.BorderColor3 = Color3.new(0, 1, 0)
  1271. Cave.Position = UDim2.new(0, 5, 0, 350)
  1272. Cave.Size = UDim2.new(0, 147, 0, 20)
  1273. Cave.Font = Enum.Font.Fantasy
  1274. Cave.FontSize = Enum.FontSize.Size14
  1275. Cave.Text = "Cave"
  1276. Cave.TextSize = 16
  1277.  
  1278. Volcano.Name = "Volcano"
  1279. Volcano.Parent = WaypointList
  1280. Volcano.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1281. Volcano.TextColor3 = Color3.new(1, 1, 1)
  1282. Volcano.BorderColor3 = Color3.new(0, 1, 0)
  1283. Volcano.Position = UDim2.new(0, 5, 0, 375)
  1284. Volcano.Size = UDim2.new(0, 147, 0, 20)
  1285. Volcano.Font = Enum.Font.Fantasy
  1286. Volcano.FontSize = Enum.FontSize.Size14
  1287. Volcano.Text = "Volcano"
  1288. Volcano.TextSize = 16
  1289.  
  1290. Dock.Name = "Dock"
  1291. Dock.Parent = WaypointList
  1292. Dock.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1293. Dock.TextColor3 = Color3.new(1, 1, 1)
  1294. Dock.BorderColor3 = Color3.new(0, 1, 0)
  1295. Dock.Position = UDim2.new(0, 5, 0, 400)
  1296. Dock.Size = UDim2.new(0, 147, 0, 20)
  1297. Dock.Font = Enum.Font.Fantasy
  1298. Dock.FontSize = Enum.FontSize.Size14
  1299. Dock.Text = "Dock"
  1300. Dock.TextSize = 16
  1301.  
  1302. Bridge.Name = "Bridge"
  1303. Bridge.Parent = WaypointList
  1304. Bridge.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1305. Bridge.TextColor3 = Color3.new(1, 1, 1)
  1306. Bridge.BorderColor3 = Color3.new(0, 1, 0)
  1307. Bridge.Position = UDim2.new(0, 5, 0, 425)
  1308. Bridge.Size = UDim2.new(0, 147, 0, 20)
  1309. Bridge.Font = Enum.Font.Fantasy
  1310. Bridge.FontSize = Enum.FontSize.Size14
  1311. Bridge.Text = "Bridge"
  1312. Bridge.TextSize = 16
  1313.  
  1314. EndTimes.Name = "EndTimes"
  1315. EndTimes.Parent = WaypointList
  1316. EndTimes.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1317. EndTimes.TextColor3 = Color3.new(1, 1, 1)
  1318. EndTimes.BorderColor3 = Color3.new(0, 1, 0)
  1319. EndTimes.Position = UDim2.new(0, 5, 0, 450)
  1320. EndTimes.Size = UDim2.new(0, 147, 0, 20)
  1321. EndTimes.Font = Enum.Font.Fantasy
  1322. EndTimes.FontSize = Enum.FontSize.Size14
  1323. EndTimes.Text = "End Times"
  1324. EndTimes.TextSize = 16
  1325.  
  1326. ShrineOfSight.Name = "ShrineOfSight"
  1327. ShrineOfSight.Parent = WaypointList
  1328. ShrineOfSight.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1329. ShrineOfSight.TextColor3 = Color3.new(1, 1, 1)
  1330. ShrineOfSight.BorderColor3 = Color3.new(0, 1, 0)
  1331. ShrineOfSight.Position = UDim2.new(0, 5, 0, 475)
  1332. ShrineOfSight.Size = UDim2.new(0, 147, 0, 20)
  1333. ShrineOfSight.Font = Enum.Font.Fantasy
  1334. ShrineOfSight.FontSize = Enum.FontSize.Size14
  1335. ShrineOfSight.Text = "Shrine Of Sight"
  1336. ShrineOfSight.TextSize = 16
  1337.  
  1338. TheDen.Name = "TheDen"
  1339. TheDen.Parent = WaypointList
  1340. TheDen.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1341. TheDen.TextColor3 = Color3.new(1, 1, 1)
  1342. TheDen.BorderColor3 = Color3.new(0, 1, 0)
  1343. TheDen.Position = UDim2.new(0, 5, 0, 500)
  1344. TheDen.Size = UDim2.new(0, 147, 0, 20)
  1345. TheDen.Font = Enum.Font.Fantasy
  1346. TheDen.FontSize = Enum.FontSize.Size14
  1347. TheDen.Text = "The Den"
  1348. TheDen.TextSize = 16
  1349.  
  1350. VolcanoWin.Name = "VolcanoWin"
  1351. VolcanoWin.Parent = WaypointList
  1352. VolcanoWin.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1353. VolcanoWin.TextColor3 = Color3.new(1, 1, 1)
  1354. VolcanoWin.BorderColor3 = Color3.new(0, 1, 0)
  1355. VolcanoWin.Position = UDim2.new(0, 5, 0, 525)
  1356. VolcanoWin.Size = UDim2.new(0, 147, 0, 20)
  1357. VolcanoWin.Font = Enum.Font.Fantasy
  1358. VolcanoWin.FontSize = Enum.FontSize.Size14
  1359. VolcanoWin.Text = "Volcano Win"
  1360. VolcanoWin.TextSize = 16
  1361.  
  1362. SkiLodge.Name = "SkiLodge"
  1363. SkiLodge.Parent = WaypointList
  1364. SkiLodge.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1365. SkiLodge.TextColor3 = Color3.new(1, 1, 1)
  1366. SkiLodge.BorderColor3 = Color3.new(0, 1, 0)
  1367. SkiLodge.Position = UDim2.new(0, 5, 0, 550)
  1368. SkiLodge.Size = UDim2.new(0, 147, 0, 20)
  1369. SkiLodge.Font = Enum.Font.Fantasy
  1370. SkiLodge.FontSize = Enum.FontSize.Size14
  1371. SkiLodge.Text = "Ski Lodge"
  1372. SkiLodge.TextSize = 16
  1373.  
  1374. StrangeMan.Name = "StrangeMan"
  1375. StrangeMan.Parent = WaypointList
  1376. StrangeMan.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1377. StrangeMan.TextColor3 = Color3.new(1, 1, 1)
  1378. StrangeMan.BorderColor3 = Color3.new(0, 1, 0)
  1379. StrangeMan.Position = UDim2.new(0, 5, 0, 575)
  1380. StrangeMan.Size = UDim2.new(0, 147, 0, 20)
  1381. StrangeMan.Font = Enum.Font.Fantasy
  1382. StrangeMan.FontSize = Enum.FontSize.Size14
  1383. StrangeMan.Text = "The Strange Man"
  1384. StrangeMan.TextSize = 16
  1385.  
  1386. FrostTreeArea.Name = "FrostTreeArea"
  1387. FrostTreeArea.Parent = WaypointList
  1388. FrostTreeArea.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1389. FrostTreeArea.TextColor3 = Color3.new(1, 1, 1)
  1390. FrostTreeArea.BorderColor3 = Color3.new(0, 1, 0)
  1391. FrostTreeArea.Position = UDim2.new(0, 5, 0, 600)
  1392. FrostTreeArea.Size = UDim2.new(0, 147, 0, 20)
  1393. FrostTreeArea.Font = Enum.Font.Fantasy
  1394. FrostTreeArea.FontSize = Enum.FontSize.Size14
  1395. FrostTreeArea.Text = "Frost Tree Area"
  1396. FrostTreeArea.TextSize = 16
  1397.  
  1398. SnowGlowTreeArea.Name = "SnowGlowTreeArea"
  1399. SnowGlowTreeArea.Parent = WaypointList
  1400. SnowGlowTreeArea.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1401. SnowGlowTreeArea.TextColor3 = Color3.new(1, 1, 1)
  1402. SnowGlowTreeArea.BorderColor3 = Color3.new(0, 1, 0)
  1403. SnowGlowTreeArea.Position = UDim2.new(0, 5, 0, 625)
  1404. SnowGlowTreeArea.Size = UDim2.new(0, 147, 0, 20)
  1405. SnowGlowTreeArea.Font = Enum.Font.Fantasy
  1406. SnowGlowTreeArea.FontSize = Enum.FontSize.Size14
  1407. SnowGlowTreeArea.Text = "SnowGlow Tree Area"
  1408. SnowGlowTreeArea.TextSize = 16
  1409.  
  1410. BringTreeFrame.Name = "BringTreeFrame"
  1411. BringTreeFrame.Parent = MenuFrame
  1412. BringTreeFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  1413. BringTreeFrame.BackgroundTransparency = 0
  1414. BringTreeFrame.BorderColor3 = Color3.new(0, 1, 0)
  1415. BringTreeFrame.Size = UDim2.new(0, 170, 0, 290)
  1416. BringTreeFrame.Visible = false
  1417.  
  1418. BringTreeHeader.Name = "BringTreeHeader"
  1419. BringTreeHeader.Parent = BringTreeFrame
  1420. BringTreeHeader.BackgroundColor3 = Color3.new(1, 1, 1)
  1421. BringTreeHeader.BackgroundTransparency = 0.15
  1422. BringTreeHeader.BorderColor3 = Color3.new(0, 1, 0)
  1423. BringTreeHeader.Position = UDim2.new(0, 0, 0, 0)
  1424. BringTreeHeader.Size = UDim2.new(0, 170, 0, 35)
  1425. BringTreeHeader.Font = Enum.Font.Fantasy
  1426. BringTreeHeader.FontSize = Enum.FontSize.Size18
  1427. BringTreeHeader.Text = "SELECT A TREE TO SPAWN"
  1428. BringTreeHeader.TextColor3 = Color3.new(0, 0, 0)
  1429. BringTreeHeader.TextScaled = true
  1430. BringTreeHeader.TextSize = 17
  1431. BringTreeHeader.TextWrapped = true
  1432.  
  1433. OakTree.Name = "OakTree"
  1434. OakTree.Parent = BringTreeFrame
  1435. OakTree.BackgroundColor3 = Color3.new(0.95256, 0.70952, 0.60368)
  1436. OakTree.BackgroundTransparency = 0.15
  1437. OakTree.BorderColor3 = Color3.new(0, 1, 0)
  1438. OakTree.Position = UDim2.new(0, 5, 0, 45)
  1439. OakTree.Size = UDim2.new(0, 37, 0, 35)
  1440. OakTree.Font = Enum.Font.Fantasy
  1441. OakTree.FontSize = Enum.FontSize.Size18
  1442. OakTree.Text = "OAK\nTREE"
  1443. OakTree.TextColor3 = Color3.new(0, 0, 0)
  1444. OakTree.TextWrapped = true
  1445. OakTree.TextSize = 14
  1446.  
  1447. ElmTree.Name = "ElmTree"
  1448. ElmTree.Parent = BringTreeFrame
  1449. ElmTree.BackgroundColor3 = Color3.new(1, 0.95648, 0.88984)
  1450. ElmTree.BackgroundTransparency = 0.15
  1451. ElmTree.BorderColor3 = Color3.new(0, 1, 0)
  1452. ElmTree.Position = UDim2.new(0, 47, 0, 45)
  1453. ElmTree.Size = UDim2.new(0, 37, 0, 35)
  1454. ElmTree.Font = Enum.Font.Fantasy
  1455. ElmTree.FontSize = Enum.FontSize.Size18
  1456. ElmTree.Text = "ELM\nTREE"
  1457. ElmTree.TextColor3 = Color3.new(0, 0, 0)
  1458. ElmTree.TextWrapped = true
  1459. ElmTree.TextSize = 14
  1460.  
  1461. EndTimesTree.Name = "EndTimesTree"
  1462. EndTimesTree.Parent = BringTreeFrame
  1463. EndTimesTree.BackgroundColor3 = Color3.new(1, 1, 1)
  1464. EndTimesTree.BackgroundTransparency = 0.15
  1465. EndTimesTree.BorderColor3 = Color3.new(0, 1, 0)
  1466. EndTimesTree.Position = UDim2.new(0, 89, 0, 45)
  1467. EndTimesTree.Size = UDim2.new(0, 76, 0, 35)
  1468. EndTimesTree.Font = Enum.Font.Fantasy
  1469. EndTimesTree.FontSize = Enum.FontSize.Size18
  1470. EndTimesTree.Text = "ENDTIMES\nTREE"
  1471. EndTimesTree.TextColor3 = Color3.new(0, 0, 0)
  1472. EndTimesTree.TextWrapped = true
  1473. EndTimesTree.TextSize = 14
  1474.  
  1475. BirchTree.Name = "BirchTree"
  1476. BirchTree.Parent = BringTreeFrame
  1477. BirchTree.BackgroundColor3 = Color3.new(0.9604, 0.9604, 0.9604)
  1478. BirchTree.BackgroundTransparency = 0.15
  1479. BirchTree.BorderColor3 = Color3.new(0, 1, 0)
  1480. BirchTree.Position = UDim2.new(0, 5, 0, 85)
  1481. BirchTree.Size = UDim2.new(0, 45, 0, 35)
  1482. BirchTree.Font = Enum.Font.Fantasy
  1483. BirchTree.FontSize = Enum.FontSize.Size18
  1484. BirchTree.Text = "BIRCH\nTREE"
  1485. BirchTree.TextColor3 = Color3.new(0, 0, 0)
  1486. BirchTree.TextWrapped = true
  1487. BirchTree.TextSize = 14
  1488.  
  1489. VolcanoTree.Name = "VolcanoTree"
  1490. VolcanoTree.Parent = BringTreeFrame
  1491. VolcanoTree.BackgroundColor3 = Color3.new(1, 0, 0)
  1492. VolcanoTree.BackgroundTransparency = 0.15
  1493. VolcanoTree.BorderColor3 = Color3.new(0, 1, 0)
  1494. VolcanoTree.Position = UDim2.new(0, 55, 0, 85)
  1495. VolcanoTree.Size = UDim2.new(0, 65, 0, 35)
  1496. VolcanoTree.Font = Enum.Font.Fantasy
  1497. VolcanoTree.FontSize = Enum.FontSize.Size18
  1498. VolcanoTree.Text = "VOLCANO\nTREE"
  1499. VolcanoTree.TextColor3 = Color3.new(0, 0, 0)
  1500. VolcanoTree.TextWrapped = true
  1501. VolcanoTree.TextSize = 14
  1502.  
  1503. FirTree.Name = "FirTree"
  1504. FirTree.Parent = BringTreeFrame
  1505. FirTree.BackgroundColor3 = Color3.new(1, 0.96824, 0.9212)
  1506. FirTree.BackgroundTransparency = 0.15
  1507. FirTree.BorderColor3 = Color3.new(0, 1, 0)
  1508. FirTree.Position = UDim2.new(0, 125, 0, 85)
  1509. FirTree.Size = UDim2.new(0, 40, 0, 35)
  1510. FirTree.Font = Enum.Font.Fantasy
  1511. FirTree.FontSize = Enum.FontSize.Size18
  1512. FirTree.Text = "FIR\nTREE"
  1513. FirTree.TextColor3 = Color3.new(0, 0, 0)
  1514. FirTree.TextWrapped = true
  1515. FirTree.TextSize = 14
  1516.  
  1517. SpookyTree.Name = "SpookyTree"
  1518. SpookyTree.Parent = BringTreeFrame
  1519. SpookyTree.BackgroundColor3 = Color3.new(0.35672, 0.062736, 0.003921)
  1520. SpookyTree.BackgroundTransparency = 0.15
  1521. SpookyTree.BorderColor3 = Color3.new(0, 1, 0)
  1522. SpookyTree.Position = UDim2.new(0, 5, 0, 125)
  1523. SpookyTree.Size = UDim2.new(0, 60, 0, 35)
  1524. SpookyTree.Font = Enum.Font.Fantasy
  1525. SpookyTree.FontSize = Enum.FontSize.Size18
  1526. SpookyTree.Text = "SPOOKY\nTREE"
  1527. SpookyTree.TextColor3 = Color3.new(1, 1, 1)
  1528. SpookyTree.TextWrapped = true
  1529. SpookyTree.TextSize = 14
  1530.  
  1531. KoaTree.Name = "KoaTree"
  1532. KoaTree.Parent = BringTreeFrame
  1533. KoaTree.BackgroundColor3 = Color3.new(0.72912, 0.125472, 0.003921)
  1534. KoaTree.BackgroundTransparency = 0.15
  1535. KoaTree.BorderColor3 = Color3.new(0, 1, 0)
  1536. KoaTree.Position = UDim2.new(0, 70, 0, 125)
  1537. KoaTree.Size = UDim2.new(0, 45, 0, 35)
  1538. KoaTree.Font = Enum.Font.Fantasy
  1539. KoaTree.FontSize = Enum.FontSize.Size18
  1540. KoaTree.Text = "KOA\nTREE"
  1541. KoaTree.TextColor3 = Color3.new(1, 1, 1)
  1542. KoaTree.TextWrapped = true
  1543. KoaTree.TextSize = 14
  1544.  
  1545. PalmTree.Name = "PalmTree"
  1546. PalmTree.Parent = BringTreeFrame
  1547. PalmTree.BackgroundColor3 = Color3.new(1, 0.96824, 0.9212)
  1548. PalmTree.BackgroundTransparency = 0.15
  1549. PalmTree.BorderColor3 = Color3.new(0, 1, 0)
  1550. PalmTree.Position = UDim2.new(0, 120, 0, 125)
  1551. PalmTree.Size = UDim2.new(0, 45, 0, 35)
  1552. PalmTree.Font = Enum.Font.Fantasy
  1553. PalmTree.FontSize = Enum.FontSize.Size18
  1554. PalmTree.Text = "PALM\nTREE"
  1555. PalmTree.TextColor3 = Color3.new(0, 0, 0)
  1556. PalmTree.TextWrapped = true
  1557. PalmTree.TextSize = 14
  1558.  
  1559. GreenTree.Name = "GreenTree"
  1560. GreenTree.Parent = BringTreeFrame
  1561. GreenTree.BackgroundColor3 = Color3.new(0, 1, 0)
  1562. GreenTree.BackgroundTransparency = 0.15
  1563. GreenTree.BorderColor3 = Color3.new(0, 1, 0)
  1564. GreenTree.Position = UDim2.new(0, 5, 0, 165)
  1565. GreenTree.Size = UDim2.new(0, 51, 0, 35)
  1566. GreenTree.Font = Enum.Font.Fantasy
  1567. GreenTree.FontSize = Enum.FontSize.Size18
  1568. GreenTree.Text = "GREEN\nTREE"
  1569. GreenTree.TextColor3 = Color3.new(0, 0, 0)
  1570. GreenTree.TextWrapped = true
  1571. GreenTree.TextSize = 14
  1572.  
  1573. GoldTree.Name = "GoldTree"
  1574. GoldTree.Parent = BringTreeFrame
  1575. GoldTree.BackgroundColor3 = Color3.new(0.960645, 0.86262, 0.231339)
  1576. GoldTree.BackgroundTransparency = 0.15
  1577. GoldTree.BorderColor3 = Color3.new(0, 1, 0)
  1578. GoldTree.Position = UDim2.new(0, 61, 0, 165)
  1579. GoldTree.Size = UDim2.new(0, 44, 0, 35)
  1580. GoldTree.Font = Enum.Font.Fantasy
  1581. GoldTree.FontSize = Enum.FontSize.Size18
  1582. GoldTree.Text = "GOLD\nTREE"
  1583. GoldTree.TextColor3 = Color3.new(0, 0, 0)
  1584. GoldTree.TextWrapped = true
  1585. GoldTree.TextSize = 14
  1586.  
  1587. CherryTree.Name = "CherryTree"
  1588. CherryTree.Parent = BringTreeFrame
  1589. CherryTree.BackgroundColor3 = Color3.new(0.93296, 0.39984, 0.49)
  1590. CherryTree.BackgroundTransparency = 0.15
  1591. CherryTree.BorderColor3 = Color3.new(0, 1, 0)
  1592. CherryTree.Position = UDim2.new(0, 110, 0, 165)
  1593. CherryTree.Size = UDim2.new(0, 55, 0, 35)
  1594. CherryTree.Font = Enum.Font.Fantasy
  1595. CherryTree.FontSize = Enum.FontSize.Size18
  1596. CherryTree.Text = "CHERRY TREE"
  1597. CherryTree.TextColor3 = Color3.new(0, 0, 0)
  1598. CherryTree.TextWrapped = true
  1599. CherryTree.TextSize = 14
  1600.  
  1601. CaveCrawlerTree.Name = "CaveCrawlerTree"
  1602. CaveCrawlerTree.Parent = BringTreeFrame
  1603. CaveCrawlerTree.BackgroundColor3 = Color3.new(0, 0, 1)
  1604. CaveCrawlerTree.BackgroundTransparency = 0.15
  1605. CaveCrawlerTree.BorderColor3 = Color3.new(0, 1, 0)
  1606. CaveCrawlerTree.Position = UDim2.new(0, 5, 0, 205)
  1607. CaveCrawlerTree.Size = UDim2.new(0, 45, 0, 35)
  1608. CaveCrawlerTree.Font = Enum.Font.Fantasy
  1609. CaveCrawlerTree.FontSize = Enum.FontSize.Size18
  1610. CaveCrawlerTree.Text = "CAVE\nTREE"
  1611. CaveCrawlerTree.TextColor3 = Color3.new(1, 1, 1)
  1612. CaveCrawlerTree.TextWrapped = true
  1613. CaveCrawlerTree.TextSize = 14
  1614.  
  1615. FrostyTree.Name = "FrostyTree"
  1616. FrostyTree.Parent = BringTreeFrame
  1617. FrostyTree.BackgroundColor3 = Color3.new(154/255, 255/255, 243/255)
  1618. FrostyTree.BackgroundTransparency = 0.15
  1619. FrostyTree.BorderColor3 = Color3.new(0, 1, 0)
  1620. FrostyTree.Position = UDim2.new(0, 55, 0, 205)
  1621. FrostyTree.Size = UDim2.new(0, 50, 0, 35)
  1622. FrostyTree.Font = Enum.Font.Fantasy
  1623. FrostyTree.FontSize = Enum.FontSize.Size18
  1624. FrostyTree.Text = "FROST\nTREE"
  1625. FrostyTree.TextColor3 = Color3.new(0, 0, 0)
  1626. FrostyTree.TextWrapped = true
  1627. FrostyTree.TextSize = 14
  1628.  
  1629. WalnutTree.Name = "WalnutTree"
  1630. WalnutTree.Parent = BringTreeFrame
  1631. WalnutTree.BackgroundColor3 = Color3.new(0.360732, 0.176445, 0.137235)
  1632. WalnutTree.BackgroundTransparency = 0.15
  1633. WalnutTree.BorderColor3 = Color3.new(0, 1, 0)
  1634. WalnutTree.Position = UDim2.new(0, 110, 0, 205)
  1635. WalnutTree.Size = UDim2.new(0, 55, 0, 35)
  1636. WalnutTree.Font = Enum.Font.Fantasy
  1637. WalnutTree.FontSize = Enum.FontSize.Size18
  1638. WalnutTree.Text = "WALNUT\nTREE"
  1639. WalnutTree.TextColor3 = Color3.new(1, 1, 1)
  1640. WalnutTree.TextWrapped = true
  1641. WalnutTree.TextSize = 13
  1642.  
  1643. SnowGlowTree.Name = "SnowGlowTree"
  1644. SnowGlowTree.Parent = BringTreeFrame
  1645. SnowGlowTree.BackgroundColor3 = Color3.new(0.960645, 0.86262, 0.231339)
  1646. SnowGlowTree.BackgroundTransparency = 0.15
  1647. SnowGlowTree.BorderColor3 = Color3.new(0, 1, 0)
  1648. SnowGlowTree.Position = UDim2.new(0, 5, 0, 245)
  1649. SnowGlowTree.Size = UDim2.new(0, 80, 0, 35)
  1650. SnowGlowTree.Font = Enum.Font.Fantasy
  1651. SnowGlowTree.FontSize = Enum.FontSize.Size18
  1652. SnowGlowTree.Text = "SNOWGLOW\nTREE"
  1653. SnowGlowTree.TextColor3 = Color3.new(0, 0, 0)
  1654. SnowGlowTree.TextWrapped = true
  1655. SnowGlowTree.TextSize = 13
  1656.  
  1657. BringTreeInfo1.Name = "BringTreeInfo1"
  1658. BringTreeInfo1.Parent = BringTreeFrame
  1659. BringTreeInfo1.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1660. BringTreeInfo1.BorderColor3 = Color3.new(0, 1, 0)
  1661. BringTreeInfo1.Position = UDim2.new(0, 95, 0, 255)
  1662. BringTreeInfo1.Size = UDim2.new(0, 70, 0, 25)
  1663. BringTreeInfo1.Font = Enum.Font.SourceSans
  1664. BringTreeInfo1.FontSize = Enum.FontSize.Size18
  1665. BringTreeInfo1.TextColor3 = Color3.new(1, 1, 1)
  1666. BringTreeInfo1.Text = "Info"
  1667. BringTreeInfo1.TextScaled = true
  1668. BringTreeInfo1.TextSize = 18
  1669.  
  1670. BringTreeInfo2.Name = "BringTreeInfo2"
  1671. BringTreeInfo2.Parent = BringTreeFrame
  1672. BringTreeInfo2.BackgroundColor3 = Color3.new(0, 0, 0)
  1673. BringTreeInfo2.BorderColor3 = Color3.new(0, 1, 0)
  1674. BringTreeInfo2.Position = UDim2.new(0, 185, 1, -260)
  1675. BringTreeInfo2.Size = UDim2.new(0, 170, 0, 300)
  1676. BringTreeInfo2.Visible = false
  1677. BringTreeInfo2.Font = Enum.Font.Fantasy
  1678. BringTreeInfo2.FontSize = Enum.FontSize.Size18
  1679. 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."
  1680. BringTreeInfo2.TextColor3 = Color3.new(1, 1, 1)
  1681. BringTreeInfo2.TextSize = 16
  1682. BringTreeInfo2.Active = true
  1683. BringTreeInfo2.Draggable = true
  1684. BringTreeInfo2.ZIndex = 7
  1685. BringTreeInfo2.TextWrapped = true
  1686. BringTreeInfo2.TextYAlignment = Enum.TextYAlignment.Top
  1687.  
  1688. DupeFrame.Name = "DupeFrame"
  1689. DupeFrame.Parent = MenuFrame
  1690. DupeFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  1691. DupeFrame.BackgroundTransparency = 0
  1692. DupeFrame.BorderColor3 = Color3.new(0, 1, 0)
  1693. DupeFrame.Size = UDim2.new(0, 170, 0, 290)
  1694. DupeFrame.Visible = false
  1695.  
  1696. Info.Name = "Info"
  1697. Info.Parent = DupeFrame
  1698. Info.BackgroundColor3 = Color3.new(0, 0, 0)
  1699. Info.BorderColor3 = Color3.new(0, 1, 0)
  1700. Info.Position = UDim2.new(0, 185, 1, -370)
  1701. Info.Size = UDim2.new(0, 170, 0, 410)
  1702. Info.Visible = false
  1703. Info.Font = Enum.Font.Fantasy
  1704. Info.FontSize = Enum.FontSize.Size14
  1705. 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."
  1706. Info.TextColor3 = Color3.new(1, 1, 1)
  1707. Info.TextSize = 14
  1708. Info.Active = true
  1709. Info.Draggable = true
  1710. Info.ZIndex = 7
  1711. Info.TextWrapped = true
  1712. Info.TextYAlignment = Enum.TextYAlignment.Top
  1713.  
  1714. Read.Name = "Read"
  1715. Read.Parent = DupeFrame
  1716. Read.BackgroundColor3 = Color3.new(1, 1, 1)
  1717. Read.BackgroundTransparency = 0.15
  1718. Read.BorderColor3 = Color3.new(0, 1, 0)
  1719. Read.Size = UDim2.new(0, 170, 0, 35)
  1720. Read.Font = Enum.Font.Fantasy
  1721. Read.FontSize = Enum.FontSize.Size18
  1722. Read.Text = "READ INFO BEFORE USING THIS"
  1723. Read.TextColor3 = Color3.new(0, 0, 0)
  1724. Read.TextScaled = true
  1725. Read.TextSize = 17
  1726. Read.TextWrapped = true
  1727.  
  1728. Dupe.Name = "Dupe"
  1729. Dupe.Parent = DupeFrame
  1730. Dupe.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1731. Dupe.BorderColor3 = Color3.new(0, 1, 0)
  1732. Dupe.Position = UDim2.new(0, 50, 0, 65)
  1733. Dupe.Size = UDim2.new(0, 70, 0, 25)
  1734. Dupe.Font = Enum.Font.Fantasy
  1735. Dupe.FontSize = Enum.FontSize.Size18
  1736. Dupe.Text = "Dupe"
  1737. Dupe.TextScaled = true
  1738. Dupe.TextColor3 = Color3.new(1, 1, 1)
  1739. Dupe.TextSize = 17
  1740.  
  1741. DupingText1.Name = "DupingText1"
  1742. DupingText1.Parent = DupeFrame
  1743. DupingText1.BackgroundColor3 = Color3.new(0, 0, 0)
  1744. DupingText1.BackgroundTransparency = 1
  1745. DupingText1.Position = UDim2.new(0, 5, 0, 100)
  1746. DupingText1.Size = UDim2.new(0, 160, 0, 140)
  1747. DupingText1.Font = Enum.Font.Fantasy
  1748. DupingText1.FontSize = Enum.FontSize.Size14
  1749. DupingText1.Text = "Loaded Slot Will Save"
  1750. DupingText1.TextColor3 = Color3.new(0, 1, 0)
  1751. DupingText1.TextSize = 14
  1752. DupingText1.TextYAlignment = Enum.TextYAlignment.Top
  1753. DupingText1.TextWrapped = true
  1754.  
  1755. MoreInfo.Name = "MoreInfo"
  1756. MoreInfo.Parent = DupeFrame
  1757. MoreInfo.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1758. MoreInfo.BorderColor3 = Color3.new(0, 1, 0)
  1759. MoreInfo.Position = UDim2.new(0, 25, 0, 240)
  1760. MoreInfo.Size = UDim2.new(0, 120, 0, 25)
  1761. MoreInfo.Font = Enum.Font.SourceSans
  1762. MoreInfo.FontSize = Enum.FontSize.Size18
  1763. MoreInfo.Text = "Info"
  1764. MoreInfo.TextScaled = true
  1765. MoreInfo.TextColor3 = Color3.new(1, 1, 1)
  1766. MoreInfo.TextSize = 18
  1767.  
  1768. PlayerFrame.Name = "PlayerFrame"
  1769. PlayerFrame.Parent = MenuFrame
  1770. PlayerFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  1771. PlayerFrame.BackgroundTransparency = 0
  1772. PlayerFrame.BorderColor3 = Color3.new(0, 1, 0)
  1773. PlayerFrame.Size = UDim2.new(0, 170, 0, 290)
  1774. PlayerFrame.Visible = false
  1775.  
  1776. PlyrSel.Name = "PlyrSel"
  1777. PlyrSel.Parent = PlayerFrame
  1778. PlyrSel.BackgroundColor3 = Color3.new(1, 1, 1)
  1779. PlyrSel.BackgroundTransparency = 0.15
  1780. PlyrSel.BorderColor3 = Color3.new(0, 1, 0)
  1781. PlyrSel.Position = UDim2.new(0, 5, 0, 5)
  1782. PlyrSel.Size = UDim2.new(0, 160, 0, 20)
  1783. PlyrSel.Font = Enum.Font.SourceSans
  1784. PlyrSel.FontSize = Enum.FontSize.Size18
  1785. PlyrSel.Text = "SELECT A PLAYER"
  1786. PlyrSel.TextColor3 = Color3.new(0, 0, 0)
  1787. PlyrSel.TextScaled = true
  1788. PlyrSel.TextSize = 17
  1789. PlyrSel.TextWrapped = true
  1790.  
  1791. Player1.Name = "Player1"
  1792. Player1.Parent = PlayerFrame
  1793. Player1.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1794. Player1.BorderColor3 = Color3.new(0, 1, 0)
  1795. Player1.Position = UDim2.new(0, 5, 0, 40)
  1796. Player1.Size = UDim2.new(0, 160, 0, 20)
  1797. Player1.Font = Enum.Font.Fantasy
  1798. Player1.FontSize = Enum.FontSize.Size18
  1799. Player1.Text = ""
  1800. Player1.TextColor3 = Color3.new(1, 1, 1)
  1801. Player1.TextSize = 16
  1802. Player1.TextWrapped = true
  1803.  
  1804. Player2.Name = "Player2"
  1805. Player2.Parent = PlayerFrame
  1806. Player2.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1807. Player2.BorderColor3 = Color3.new(0, 1, 0)
  1808. Player2.Position = UDim2.new(0, 5, 0, 65)
  1809. Player2.Size = UDim2.new(0, 160, 0, 20)
  1810. Player2.Font = Enum.Font.Fantasy
  1811. Player2.FontSize = Enum.FontSize.Size18
  1812. Player2.Text = ""
  1813. Player2.TextColor3 = Color3.new(1, 1, 1)
  1814. Player2.TextSize = 16
  1815. Player2.TextWrapped = true
  1816.  
  1817. Player3.Name = "Player3"
  1818. Player3.Parent = PlayerFrame
  1819. Player3.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1820. Player3.BorderColor3 = Color3.new(0, 1, 0)
  1821. Player3.Position = UDim2.new(0, 5, 0, 90)
  1822. Player3.Size = UDim2.new(0, 160, 0, 20)
  1823. Player3.Font = Enum.Font.Fantasy
  1824. Player3.FontSize = Enum.FontSize.Size18
  1825. Player3.Text = ""
  1826. Player3.TextColor3 = Color3.new(1, 1, 1)
  1827. Player3.TextSize = 16
  1828. Player3.TextWrapped = true
  1829.  
  1830. Player4.Name = "Player4"
  1831. Player4.Parent = PlayerFrame
  1832. Player4.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1833. Player4.BorderColor3 = Color3.new(0, 1, 0)
  1834. Player4.Position = UDim2.new(0, 5, 0, 115)
  1835. Player4.Size = UDim2.new(0, 160, 0, 20)
  1836. Player4.Font = Enum.Font.Fantasy
  1837. Player4.FontSize = Enum.FontSize.Size18
  1838. Player4.Text = ""
  1839. Player4.TextColor3 = Color3.new(1, 1, 1)
  1840. Player4.TextSize = 16
  1841. Player4.TextWrapped = true
  1842.  
  1843. Player5.Name = "Player5"
  1844. Player5.Parent = PlayerFrame
  1845. Player5.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1846. Player5.BorderColor3 = Color3.new(0, 1, 0)
  1847. Player5.Position = UDim2.new(0, 5, 0, 140)
  1848. Player5.Size = UDim2.new(0, 160, 0, 20)
  1849. Player5.Font = Enum.Font.Fantasy
  1850. Player5.FontSize = Enum.FontSize.Size18
  1851. Player5.Text = ""
  1852. Player5.TextColor3 = Color3.new(1, 1, 1)
  1853. Player5.TextSize = 16
  1854. Player5.TextWrapped = true
  1855.  
  1856. Player6.Name = "Player6"
  1857. Player6.Parent = PlayerFrame
  1858. Player6.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1859. Player6.BorderColor3 = Color3.new(0, 1, 0)
  1860. Player6.Position = UDim2.new(0, 5, 0, 165)
  1861. Player6.Size = UDim2.new(0, 160, 0, 20)
  1862. Player6.Font = Enum.Font.Fantasy
  1863. Player6.FontSize = Enum.FontSize.Size18
  1864. Player6.Text = ""
  1865. Player6.TextColor3 = Color3.new(1, 1, 1)
  1866. Player6.TextSize = 16
  1867. Player6.TextWrapped = true
  1868.  
  1869. TpPlayer.Name = "TpPlayer"
  1870. TpPlayer.Parent = PlayerFrame
  1871. TpPlayer.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1872. TpPlayer.BackgroundTransparency = 0
  1873. TpPlayer.BorderColor3 = Color3.new(0, 1, 0)
  1874. TpPlayer.Position = UDim2.new(0, 5, 0, 225)
  1875. TpPlayer.Size = UDim2.new(0, 75, 0, 35)
  1876. TpPlayer.Font = Enum.Font.Fantasy
  1877. TpPlayer.FontSize = Enum.FontSize.Size18
  1878. TpPlayer.Text = "Tp to Player"
  1879. TpPlayer.TextColor3 = Color3.new(1, 1, 1)
  1880. TpPlayer.TextScaled = true
  1881. TpPlayer.TextWrapped = true
  1882. TpPlayer.TextSize = 14
  1883.  
  1884. TpBase.Name = "TpBase"
  1885. TpBase.Parent = PlayerFrame
  1886. TpBase.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1887. TpBase.BackgroundTransparency = 0
  1888. TpBase.BorderColor3 = Color3.new(0, 1, 0)
  1889. TpBase.Position = UDim2.new(0, 90, 0, 225)
  1890. TpBase.Size = UDim2.new(0, 75, 0, 35)
  1891. TpBase.Font = Enum.Font.Fantasy
  1892. TpBase.FontSize = Enum.FontSize.Size18
  1893. TpBase.Text = "Tp to\nBase"
  1894. TpBase.TextColor3 = Color3.new(1, 1, 1)
  1895. TpPlayer.TextSize = 22
  1896.  
  1897. WalkSpeed.Name = "WalkSpeed"
  1898. WalkSpeed.Parent = MainFrame
  1899. WalkSpeed.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1900. WalkSpeed.TextColor3 = Color3.new(1, 1, 1)
  1901. WalkSpeed.BorderColor3 = Color3.new(0, 1, 0)
  1902. WalkSpeed.Position = UDim2.new(0, 155, 0, 340)
  1903. WalkSpeed.Size = UDim2.new(0, 45, 0, 20)
  1904. WalkSpeed.Font = Enum.Font.Fantasy
  1905. WalkSpeed.FontSize = Enum.FontSize.Size18
  1906. WalkSpeed.Text = "Walk"
  1907. WalkSpeed.TextSize = 17
  1908.  
  1909. WalkText.Name = "WalkText"
  1910. WalkText.Parent = MainFrame
  1911. WalkText.BackgroundColor3 = Color3.new(0, 0, 0)
  1912. WalkText.BorderColor3 = Color3.new(0, 1, 0)
  1913. WalkText.Position = UDim2.new(0, 205, 0, 340)
  1914. WalkText.Size = UDim2.new(0, 28, 0, 20)
  1915. WalkText.Font = Enum.Font.Fantasy
  1916. WalkText.FontSize = Enum.FontSize.Size18
  1917. WalkText.Text = "16"
  1918. WalkText.TextColor3 = Color3.new(1, 1, 1)
  1919. WalkText.TextSize = 17
  1920. WalkText.TextScaled = true
  1921.  
  1922. JumpPower.Name = "JumpPower"
  1923. JumpPower.Parent = MainFrame
  1924. JumpPower.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1925. JumpPower.TextColor3 = Color3.new(1, 1, 1)
  1926. JumpPower.BorderColor3 = Color3.new(0, 1, 0)
  1927. JumpPower.Position = UDim2.new(0, 243, 0, 340)
  1928. JumpPower.Size = UDim2.new(0, 49, 0, 20)
  1929. JumpPower.Font = Enum.Font.Fantasy
  1930. JumpPower.FontSize = Enum.FontSize.Size18
  1931. JumpPower.Text = "Jump"
  1932. JumpPower.TextSize = 17
  1933.  
  1934. JumpText.Name = "JumpText"
  1935. JumpText.Parent = MainFrame
  1936. JumpText.BackgroundColor3 = Color3.new(0, 0, 0)
  1937. JumpText.BorderColor3 = Color3.new(0, 1, 0)
  1938. JumpText.Position = UDim2.new(0, 297, 0, 340)
  1939. JumpText.Size = UDim2.new(0, 28, 0, 20)
  1940. JumpText.Font = Enum.Font.Fantasy
  1941. JumpText.FontSize = Enum.FontSize.Size18
  1942. JumpText.Text = "50"
  1943. JumpText.TextColor3 = Color3.new(1, 1, 1)
  1944. JumpText.TextSize = 17
  1945. JumpText.TextScaled = true
  1946.  
  1947. --[[game.Lighting.Changed:connect(function()
  1948. game.Lighting.TimeOfDay = "12:00:00"
  1949. game.Lighting.FogEnd = 9999
  1950. game.Lighting.Brightness = 1
  1951. end)
  1952. ]]
  1953.  
  1954. --- Menus ---
  1955.  
  1956. local Menus = {
  1957. --[BringTree] = BringTreeFrame;--
  1958. [Waypoints] = WaypointFrame;
  1959. [Duper] = DupeFrame;
  1960. [TPPlanks] = PlankFrame;
  1961. [GoldAxe] = GoldAxeFrame;
  1962. [PlayerTp] = PlayerFrame;
  1963. [Greywood] = GreywoodFrame;
  1964. [GuiLabel] = LT2GUI2Frame;
  1965. [SellWoodPlanks] = SellFrame;
  1966. }
  1967. for button,frame in pairs(Menus) do
  1968. button.MouseButton1Click:connect(function()
  1969. if frame.Visible then
  1970. frame.Visible = false
  1971. return
  1972. end
  1973. for k,v in pairs(Menus) do
  1974. v.Visible = v == frame
  1975. end
  1976. end)
  1977. end
  1978.  
  1979. --- Open/Close ---
  1980.  
  1981. Open.MouseButton1Down:connect(function()
  1982. OpenFrame.Visible = false
  1983. MainFrame.Visible = true
  1984. end)
  1985.  
  1986. Minimize.MouseButton1Down:connect(function()
  1987. MainFrame.Visible = false
  1988. OpenFrame.Visible = true
  1989. end)
  1990.  
  1991. CloseLT2.MouseButton1Down:connect(function()
  1992. LT2CORE:destroy()
  1993. end)
  1994.  
  1995.  
  1996. local service = setmetatable({}, {
  1997. __index = function(t, k)
  1998. return game:GetService(k)
  1999. end
  2000. })
  2001.  
  2002. function Create(cls,props)
  2003. local inst = Instance.new(cls)
  2004. for i,v in pairs(props) do
  2005. inst[i] = v
  2006. end
  2007. return inst
  2008. end
  2009.  
  2010. --- TP Planks to you ---
  2011.  
  2012. checkplanks = false
  2013. local WoodPlanks={}
  2014. local ProcessedWoodList = LT2GUI.MainFrame.MenuFrame.PlankFrame.ProcessedWoodList
  2015.  
  2016. function UpdatePlanks()
  2017. local inc = 0
  2018. WoodPlanks={}
  2019. for i,v in pairs(game.Workspace.PlayerModels:GetChildren()) do
  2020. pcall(function()
  2021. if v.Name=="Plank" and v.Owner.Value==game.Players.LocalPlayer then
  2022. if v:FindFirstChild("TreeClass") and WoodPlanks[v.TreeClass.Value] then
  2023. WoodPlanks[v.TreeClass.Value]=WoodPlanks[v.TreeClass.Value]
  2024. WoodPlanks[v.TreeClass.Value]["Wood"][v]=v
  2025. elseif v:FindFirstChild("TreeClass") then
  2026. WoodPlanks[v.TreeClass.Value]={Wood={v.WoodSection}}
  2027. end
  2028. end
  2029. end)
  2030. end
  2031. end
  2032.  
  2033. function UpdateMovePlanks()
  2034. checkplanks = true
  2035. local inc=0
  2036. UpdatePlanks()
  2037. ProcessedWoodList:ClearAllChildren()
  2038. for i,v in pairs(WoodPlanks) do
  2039. ProcessedWoodList.CanvasSize=UDim2.new(0,0,0,25*inc)
  2040. 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)})
  2041. TPButton.MouseButton1Click:Connect(function()
  2042. sendNotice = game.ReplicatedStorage.Notices.SendUserNotice
  2043. sendNotice:Fire("Click where you want the Planks to TP to")
  2044. local ButtonPress
  2045. ButtonPress = game.Players.LocalPlayer:GetMouse().Button1Down:Connect(function()
  2046. Square = game.Players.LocalPlayer:GetMouse().Target
  2047. if (Square.Name == "OriginSquare" or Square.Name == "Square") then
  2048. ButtonPress:Disconnect()
  2049. for _, Plank in pairs(game.Workspace.PlayerModels:GetChildren()) do
  2050. if Plank.Name=="Plank" and Plank:FindFirstChild("TreeClass") then
  2051. if Plank.TreeClass.Value == i and Plank.Owner.Value == game.Players.LocalPlayer then
  2052. Plank:MoveTo(Square.Position)
  2053. for i=1,100 do
  2054. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Plank)
  2055. end
  2056. end
  2057. end
  2058. end
  2059. end
  2060. end)
  2061. end)
  2062. inc=inc+1
  2063. end
  2064. inc=0
  2065. end
  2066.  
  2067. TpAllPlanks.MouseButton1Click:Connect(function()
  2068. for _, Plank in pairs(game.Workspace.PlayerModels:GetChildren()) do
  2069. if Plank.Name=="Plank" and Plank:findFirstChild("Owner") then
  2070. if Plank.Owner.Value == game.Players.LocalPlayer then
  2071. sendNotice = game.ReplicatedStorage.Notices.SendUserNotice
  2072. sendNotice:Fire("Click where you want ALL the Planks to TP to")
  2073. local ButtonPress
  2074. ButtonPress = game.Players.LocalPlayer:GetMouse().Button1Down:Connect(function()
  2075. Square = game.Players.LocalPlayer:GetMouse().Target
  2076. if (Square.Name == "OriginSquare" or Square.Name == "Square") then
  2077. ButtonPress:Disconnect()
  2078. Plank:MoveTo(Square.Position)
  2079. for i=1,100 do
  2080. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Plank)
  2081. end
  2082. end
  2083. end)
  2084. end
  2085. end
  2086. end
  2087. end)
  2088.  
  2089. if not checkplanks then
  2090. UpdateMovePlanks()
  2091. end
  2092.  
  2093. game.Workspace.PlayerModels.ChildAdded:connect(function(Item)
  2094. if Item:FindFirstChild("Owner") and Item.Owner.Value == game.Players.LocalPlayer and Item:FindFirstChild("TreeClass") then
  2095. UpdateMovePlanks()
  2096. end
  2097. end)
  2098.  
  2099. game.Workspace.PlayerModels.ChildRemoved:connect(function(Item)
  2100. if Item:FindFirstChild("Owner") and Item.Owner.Value == game.Players.LocalPlayer and Item:FindFirstChild("TreeClass") then
  2101. UpdateMovePlanks()
  2102. end
  2103. end)
  2104.  
  2105. --- GuiInfo ---
  2106.  
  2107. GuiLabel.MouseButton1Down:connect(function()
  2108. if Lt2Info == "Info" then
  2109. Lt2Info = "Nothing"
  2110. GuiLabel.TextColor3 = Color3.new(1, 0, 1)
  2111. GuiLabel.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  2112. MenuLeftFrame.Active = true
  2113. MenuLeftFrame.Selectable = true
  2114. else
  2115. Lt2Info = "Info"
  2116. GuiLabel.TextColor3 = Color3.new(0, 1, 0)
  2117. GuiLabel.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  2118. MenuLeftFrame.Active = false
  2119. MenuLeftFrame.Selectable = false
  2120. end
  2121. end)
  2122.  
  2123. --- BringTreeInfo ---
  2124.  
  2125. BringTreeInfo1.MouseButton1Down:connect(function()
  2126. if BringTreeInfo1.Text == "Info" then
  2127. BringTreeInfo1.Text = "Close Info"
  2128. BringTreeInfo2.Visible = true
  2129. else
  2130. BringTreeInfo1.Text = "Info"
  2131. BringTreeInfo2.Visible = false
  2132. end
  2133. end)
  2134.  
  2135. --- Walkspeed/JumpPower ---
  2136.  
  2137. player = game.Players.LocalPlayer
  2138. Walk = 16
  2139. Jump = 50
  2140.  
  2141. WalkSpeed.MouseButton1Down:connect(function()
  2142. Walk = WalkText.Text
  2143. end)
  2144. JumpPower.MouseButton1Down:connect(function()
  2145. Jump = JumpText.Text
  2146. end)
  2147.  
  2148. player.Character.Humanoid.JumpPower = Jump
  2149. player.Character.Humanoid.WalkSpeed = Walk
  2150.  
  2151. player.Character.Humanoid.Changed:connect(function()
  2152. player.Character.Humanoid.JumpPower = Jump
  2153. player.Character.Humanoid.WalkSpeed = Walk
  2154. end)
  2155.  
  2156. --- Gold Axe ---
  2157.  
  2158. GoldAxeStart.MouseButton1Down:Connect(function()
  2159. GoldAxe.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2160. GoldAxeStart.Text = "Active"
  2161. Detect = coroutine.wrap(function()
  2162. Player = game.Players.LocalPlayer
  2163. mouse = Player:GetMouse()
  2164. mouse.Button1Down:connect(function()
  2165. MouseDown = true
  2166. end)
  2167. mouse.Button1Up:connect(function()
  2168. MouseDown = false
  2169. end)
  2170. end)
  2171. Detect()
  2172. Player = game.Players.LocalPlayer
  2173. mouse = Player:GetMouse()
  2174. game:GetService('RunService').RenderStepped:connect(function()
  2175. if Player.Character:FindFirstChild("Tool") then
  2176. if MouseDown == true then
  2177. if mouse.Target.Name == "WoodSection" then
  2178. targetWood = mouse.Target
  2179. Tool=Player.Character.Tool
  2180. ---FaceVector
  2181. Height = targetWood.CFrame:pointToObjectSpace(mouse.Hit.p).Y + targetWood.Size.Y/2
  2182. 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)
  2183. part,_,p = workspace:FindPartOnRay(ray, Player.Character)
  2184. function fixVector(V)
  2185. return Vector3.new(math.floor(V.X + 0.5), math.floor(V.Y + 0.5), math.floor(V.Z + 0.5))
  2186. end
  2187. local faceVector = fixVector(targetWood.CFrame:vectorToObjectSpace(p))
  2188. if faceVector.Y ~= 0 then
  2189. return
  2190. end
  2191. local lookAtCFrame = CFrame.new(Player.Character.Head.Position, mouse.Hit.p)
  2192. local relativeCFrame = lookAtCFrame:toObjectSpace(targetWood.CFrame * CFrame.Angles(math.pi/2, 0, 0))
  2193. local relativeLookVector = relativeCFrame.lookVector
  2194. local m = relativeLookVector.Y >= 0 and 1 or -1
  2195. if faceVector.X == 1 then
  2196. faceVector = Vector3.new(0, 0, -1) * m
  2197. elseif faceVector.X == -1 then
  2198. faceVector = Vector3.new(0, 0, 1) * m
  2199. elseif faceVector.Z == 1 then
  2200. faceVector = Vector3.new(1, 0, 0) * m
  2201. elseif faceVector.Z == -1 then
  2202. faceVector = Vector3.new(-1, 0, 0) * m
  2203. end
  2204. local cutEvent = targetWood.Parent.CutEvent
  2205. 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})
  2206. end
  2207. end
  2208. end
  2209. end)
  2210. end)
  2211.  
  2212. --- Show Current Location
  2213.  
  2214. ShowLocation.MouseButton1Down:connect(function()
  2215.  
  2216. function round(num, numDecimalPlaces)
  2217. local mult = 10^(numDecimalPlaces or 0)
  2218. return math.floor(num * mult + 0.5) / mult
  2219. end
  2220.  
  2221. LocationX = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.x, 1)
  2222. LocationY = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.y, 1)
  2223. LocationZ = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.z, 1)
  2224. ShowLocation.Text = "Current/Set Location\n"..LocationX..", "..LocationY..", "..LocationZ
  2225. CustomTPPoint.Text = "TP to "..LocationX..", "..LocationY..", "..LocationZ
  2226. CustomLocationSet = true
  2227. end)
  2228.  
  2229. --- TP to custom location ---
  2230.  
  2231. CustomTPPoint.MouseButton1Down:connect(function()
  2232. if CustomLocationSet == true then
  2233. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2234. uTorso.CFrame = CFrame.new(LocationX, LocationY, LocationZ)
  2235. end
  2236. end)
  2237.  
  2238. --- Player Tp ---
  2239.  
  2240. local buttons = {
  2241. Player1,
  2242. Player2,
  2243. Player3,
  2244. Player4,
  2245. Player5,
  2246. Player6
  2247. }
  2248. spawn(function()
  2249. while true do
  2250. Player1.Text = ""
  2251. Player2.Text = ""
  2252. Player3.Text = ""
  2253. Player4.Text = ""
  2254. Player5.Text = ""
  2255. Player6.Text = ""
  2256. for i, v in pairs(game.Players:GetChildren()) do
  2257. buttons[i].Text = v.Name
  2258. buttons[i].Visible = true
  2259. end
  2260. wait(0.5)
  2261. end
  2262. end)
  2263.  
  2264. Player1.MouseButton1Down:connect(function()
  2265. PlyrSel.Text = Player1.Text
  2266. end)
  2267. Player2.MouseButton1Down:connect(function()
  2268. PlyrSel.Text = Player2.Text
  2269. end)
  2270. Player3.MouseButton1Down:connect(function()
  2271. PlyrSel.Text = Player3.Text
  2272. end)
  2273. Player4.MouseButton1Down:connect(function()
  2274. PlyrSel.Text = Player4.Text
  2275. end)
  2276. Player5.MouseButton1Down:connect(function()
  2277. PlyrSel.Text = Player5.Text
  2278. end)
  2279. Player6.MouseButton1Down:connect(function()
  2280. PlyrSel.Text = Player6.Text
  2281. end)
  2282.  
  2283. TpPlayer.MouseButton1Down:connect(function()
  2284. if PlyrSel.Text == "SELECT A PLAYER" then
  2285. warn("No Player Selected")
  2286. else
  2287. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace[PlyrSel.Text].HumanoidRootPart.CFrame
  2288. end
  2289. end)
  2290. TpBase.MouseButton1Down:connect(function()
  2291. for i, v in pairs(game.Workspace.Properties:GetChildren()) do
  2292. if v.Owner.Value == game.Players[PlyrSel.Text] then
  2293. local p= CFrame.new(v.OriginSquare.CFrame.x, v.OriginSquare.CFrame.y +3.5, v.OriginSquare.CFrame.z)
  2294. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = p
  2295. end
  2296. end
  2297. end)
  2298.  
  2299. --- NoClip ---
  2300.  
  2301. noclip = false
  2302. game:GetService('RunService').Stepped:connect(function()
  2303. if noclip then
  2304. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  2305. end
  2306. end)
  2307. NoClip.MouseButton1Down:connect(function()
  2308. noclip = not noclip
  2309. if NoClip.Text == "Enable NoClip" then
  2310. NoClip.Text = "Disable NoClip"
  2311. NoClip.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2312. else
  2313. NoClip.Text = "Enable NoClip"
  2314. NoClip.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2315. end
  2316. end)
  2317.  
  2318. --- Waypoints ---
  2319.  
  2320. local WayPoints = {
  2321. ["Wood R Us"] = CFrame.new(265, 5, 57),
  2322. ["SpawnPoint"] = CFrame.new(155, 5, 74),
  2323. ["Land Store"] = CFrame.new(258, 5, -99),
  2324. ["Link's Logic"] = CFrame.new(4607, 9, -798),
  2325. ["Cave"] = CFrame.new(3581, -177, 430),
  2326. ["Volcano"] = CFrame.new(-1585, 625, 1140),
  2327. ["Swamp"] = CFrame.new(-1209, 138, -801),
  2328. ["Palm Island"] = CFrame.new(2549, 5, -42),
  2329. ["Fancy Furnishings"] = CFrame.new(491, 13, -1720),
  2330. ["Boxed Cars"] = CFrame.new(509, 5.2, -1463),
  2331. ["Fine Arts Shop"] = CFrame.new(5207, -156, 719),
  2332. ["Bob's Shack"] = CFrame.new(260, 10, -2542),
  2333. ["Dock"] = CFrame.new(1114, 3.2, -197),
  2334. ["Bridge"] = CFrame.new(113, 15, -977),
  2335. ["End Times"] = CFrame.new(113, -204, -951),
  2336. ["Shrine Of Sight"] = CFrame.new(-1600, 205, 919),
  2337. ["The Den"] = CFrame.new(323, 49, 1930),
  2338. ["Volcano Win"] = CFrame.new(-1675, 358, 1476),
  2339. ["Ski Lodge"] = CFrame.new(1244, 66, 2306),
  2340. ["Strange Man"] = CFrame.new(1061, 20, 1131),
  2341. ["Frost Tree"] = CFrame.new(1448.3, 413, 3185.2),
  2342. ["SnowGlow Tree"] = CFrame.new(-1105.9, -6, -894)
  2343. }
  2344.  
  2345. WoodRUs.MouseButton1Down:connect(function()
  2346. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2347. uTorso.CFrame = WayPoints["Wood R Us"]
  2348. end)
  2349.  
  2350. SpawnPoint.MouseButton1Down:connect(function()
  2351. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2352. uTorso.CFrame = WayPoints["SpawnPoint"]
  2353. end)
  2354.  
  2355. LandStore.MouseButton1Down:connect(function()
  2356. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2357. uTorso.CFrame = WayPoints["Land Store"]
  2358. end)
  2359.  
  2360. LinksLogic.MouseButton1Down:connect(function()
  2361. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2362. uTorso.CFrame = WayPoints["Link's Logic"]
  2363. end)
  2364.  
  2365. Cave.MouseButton1Down:connect(function()
  2366. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2367. uTorso.CFrame = WayPoints["Cave"]
  2368. end)
  2369.  
  2370. Volcano.MouseButton1Down:connect(function()
  2371. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2372. uTorso.CFrame = WayPoints["Volcano"]
  2373. end)
  2374.  
  2375. Swamp.MouseButton1Down:connect(function()
  2376. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2377. uTorso.CFrame = WayPoints["Swamp"]
  2378. end)
  2379.  
  2380. PalmIsland.MouseButton1Down:connect(function()
  2381. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2382. uTorso.CFrame = WayPoints["Palm Island"]
  2383. end)
  2384.  
  2385. FancyFurnishings.MouseButton1Down:connect(function()
  2386. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2387. uTorso.CFrame = WayPoints["Fancy Furnishings"]
  2388. end)
  2389.  
  2390. BoxedCars.MouseButton1Down:connect(function()
  2391. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2392. uTorso.CFrame = WayPoints["Boxed Cars"]
  2393. end)
  2394.  
  2395. FineArtsShop.MouseButton1Down:connect(function()
  2396. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2397. uTorso.CFrame = WayPoints["Fine Arts Shop"]
  2398. end)
  2399.  
  2400. BobsShack.MouseButton1Down:connect(function()
  2401. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2402. uTorso.CFrame = WayPoints["Bob's Shack"]
  2403. end)
  2404.  
  2405. Dock.MouseButton1Down:connect(function()
  2406. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2407. uTorso.CFrame = WayPoints["Dock"]
  2408. end)
  2409.  
  2410. Bridge.MouseButton1Down:connect(function()
  2411. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2412. uTorso.CFrame = WayPoints["Bridge"]
  2413. end)
  2414.  
  2415. EndTimes.MouseButton1Down:connect(function()
  2416. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2417. uTorso.CFrame = WayPoints["End Times"]
  2418. end)
  2419.  
  2420. ShrineOfSight.MouseButton1Down:connect(function()
  2421. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2422. uTorso.CFrame = WayPoints["Shrine Of Sight"]
  2423. end)
  2424.  
  2425. TheDen.MouseButton1Down:connect(function()
  2426. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2427. uTorso.CFrame = WayPoints["The Den"]
  2428. end)
  2429.  
  2430. VolcanoWin.MouseButton1Down:connect(function()
  2431. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2432. uTorso.CFrame = WayPoints["Volcano Win"]
  2433. end)
  2434.  
  2435. SkiLodge.MouseButton1Down:connect(function()
  2436. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2437. uTorso.CFrame = WayPoints["Ski Lodge"]
  2438. end)
  2439.  
  2440. StrangeMan.MouseButton1Down:connect(function()
  2441. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2442. uTorso.CFrame = WayPoints["Strange Man"]
  2443. end)
  2444.  
  2445. FrostTreeArea.MouseButton1Down:connect(function()
  2446. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2447. uTorso.CFrame = WayPoints["Frost Tree"]
  2448. end)
  2449.  
  2450. SnowGlowTreeArea.MouseButton1Down:connect(function()
  2451. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2452. uTorso.CFrame = WayPoints["SnowGlow Tree"]
  2453. end)
  2454.  
  2455. --- Make Greywood ---
  2456.  
  2457. GreywoodStart.MouseButton1Down:Connect(function()
  2458. if GreyStart == "Nothing" then
  2459. GreyStart = "On"
  2460. GreywoodStart.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2461. GreywoodStart.Text = "Stop"
  2462. for i,v in next,workspace.PlayerModels:GetChildren() do
  2463. if v:FindFirstChild("Type") then
  2464. if v.Type.Value == "Blueprint" then
  2465. v.Type.Value = "Structure"
  2466. end
  2467. end
  2468. end
  2469. else
  2470. GreyStart = "Nothing"
  2471. GreywoodStart.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2472. GreywoodStart.Text = "Start"
  2473. for i,v in next,workspace.PlayerModels:GetChildren() do
  2474. if v:FindFirstChild("Type") then
  2475. if v.Type.Value == "Structure" then
  2476. v.Type.Value = "Blueprint"
  2477. end
  2478. end
  2479. end
  2480. end
  2481. end)
  2482.  
  2483. --- Anti AFK ---
  2484.  
  2485. AntiAFK.MouseButton1Down:Connect(function()
  2486. if afkactive == true then
  2487. afkactive = false
  2488. AntiAFK.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2489. AntiAFK.Text = "Start Anti-AFK Mode"
  2490. elseif afkactive == false then
  2491. afkactive = true
  2492. AntiAFK.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2493. AntiAFK.Text = "Stop Anti-AFK Mode"
  2494.  
  2495. logtime = coroutine.wrap(function()
  2496. afktotaltime=0
  2497. while afkactive == true do
  2498. wait(1)
  2499. afktotaltime=afktotaltime+1
  2500. AntiAFKtime.Text = "AFK for: "..afktotaltime.." Seconds"
  2501. end
  2502. end)
  2503.  
  2504. messageBot = coroutine.wrap(function()
  2505. while afkactive == true do
  2506. wait(300)
  2507. possiblechats = {"afk", "Away from keyboard", "I'm AFK"}
  2508. decide=math.random(1,#possiblechats)
  2509. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(possiblechats[decide], "All")
  2510. game.Players:Chat("/e point")
  2511. end
  2512. end)
  2513.  
  2514. moveChar = coroutine.wrap(function()
  2515. plr = game:service'Players'.LocalPlayer
  2516. char = plr.Character
  2517. hum = char:FindFirstChildOfClass'Humanoid'
  2518. while afkactive==true do
  2519. wait(1)
  2520. hum:Move(Vector3.new(1, 0, 0), false)
  2521. wait(1)
  2522. hum:Move(Vector3.new(-1, 0, 0), false)
  2523. wait(1)
  2524. hum:Move(Vector3.new(1, 0, 0), false)
  2525. wait(1)
  2526. hum:Move(Vector3.new(-1, 0, 0), false)
  2527. wait(1)
  2528. hum:Move(Vector3.new(0, 1, 0), false)
  2529. wait(1)
  2530. hum:Move(Vector3.new(0, 1, 0), false)
  2531. wait(60)
  2532. end
  2533. end)
  2534.  
  2535. logtime()
  2536. moveChar()
  2537. messageBot()
  2538. end
  2539. end)
  2540.  
  2541. --- Water Walk ---
  2542.  
  2543. WaterCollide.MouseButton1Down:connect(function()
  2544. if WCollide == "Nothing" then
  2545. WCollide = "On"
  2546. WaterCollide.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2547. WaterCollide.Text = "Water is Solid"
  2548. for i,v in pairs(game.Workspace.Water:GetChildren()) do
  2549. if v:IsA("Part") then
  2550. v.CanCollide = true
  2551. end
  2552. end
  2553. else
  2554. WCollide = "Nothing"
  2555. WaterCollide.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2556. WaterCollide.Text = "Walk on Water"
  2557. for i,v in pairs(game.Workspace.Water:GetChildren()) do
  2558. if v:IsA("Part") then
  2559. v.CanCollide = false
  2560. end
  2561. end
  2562. end
  2563. end)
  2564.  
  2565. --- Plot Tp ---
  2566.  
  2567. PlotTp.MouseButton1Down:connect(function()
  2568. for i,v in pairs(game.Workspace.Properties:GetChildren()) do
  2569. if v.Owner.Value == game.Players.LocalPlayer then
  2570. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.OriginSquare.CFrame + Vector3.new(0,10,0)
  2571. end
  2572. end
  2573. end)
  2574.  
  2575. ---TP Wood ---
  2576.  
  2577. TPWood.MouseButton1Click:Connect(function()
  2578. for _, Log in pairs(game.Workspace.LogModels:GetChildren()) do
  2579. if Log.Name:sub(1, 6) == "Loose_" and Log:findFirstChild("Owner") then
  2580. if Log.Owner.Value == game.Players.LocalPlayer then
  2581. Log:MoveTo(game.Players.LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0, 20, 0))
  2582. for i=1,100 do
  2583. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Log)
  2584. end
  2585. end
  2586. end
  2587. end
  2588. end)
  2589.  
  2590. --- Sell Wood ---
  2591.  
  2592. SellWood.MouseButton1Click:Connect(function()
  2593. for _, Log in pairs(game.Workspace.LogModels:GetChildren()) do
  2594. if Log.Name:sub(1, 6) == "Loose_" and Log:findFirstChild("Owner") then
  2595. if Log.Owner.Value == game.Players.LocalPlayer then
  2596. for i,v in pairs(Log:GetChildren()) do
  2597. if v.Name=="WoodSection" then
  2598. spawn(function()
  2599. for i=1,10 do
  2600. wait()
  2601. v.CFrame=CFrame.new(Vector3.new(315, -0.296, 85.791))*CFrame.Angles(math.rad(90),0,0)
  2602. end
  2603. end)
  2604. end
  2605. end
  2606. spawn(function()
  2607. for i=1,20 do
  2608. wait()
  2609. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Log)
  2610. end
  2611. end)
  2612. end
  2613. end
  2614. end
  2615. end)
  2616.  
  2617. --- Sell Planks ---
  2618.  
  2619. SellPlanks.MouseButton1Click:Connect(function()
  2620. for _, Plank in pairs(game.Workspace.PlayerModels:GetChildren()) do
  2621. if Plank.Name=="Plank" and Plank:findFirstChild("Owner") then
  2622. if Plank.Owner.Value == game.Players.LocalPlayer then
  2623. for i,v in pairs(Plank:GetChildren()) do
  2624. if v.Name=="WoodSection" then
  2625. spawn(function()
  2626. for i=1,10 do
  2627. wait()
  2628. v.CFrame=CFrame.new(Vector3.new(315, -0.296, 85.791))*CFrame.Angles(math.rad(90),0,0)
  2629. end
  2630. end)
  2631. end
  2632. end
  2633. spawn(function()
  2634. for i=1,20 do
  2635. wait()
  2636. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Plank)
  2637. end
  2638. end)
  2639. end
  2640. end
  2641. end
  2642. end)
  2643.  
  2644. --- God Mode ---
  2645.  
  2646. GodMode.MouseButton1Click:Connect(function()
  2647. GodMode.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2648. game.Players.LocalPlayer.Character.Humanoid.Name = "1"
  2649. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  2650. l.Parent = game.Players.LocalPlayer.Character
  2651. l.Name = "Humanoid"
  2652. wait(0.1)
  2653. game.Players.LocalPlayer.Character["1"]:Destroy()
  2654. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  2655. game.Players.LocalPlayer.Character.Animate.Disabled = true
  2656. l.Changed:Connect(function()
  2657. if l then
  2658. l.WalkSpeed=Walk
  2659. l.JumpPower=Jump
  2660. end
  2661. end)
  2662. end)
  2663.  
  2664. --- Dupe ---
  2665.  
  2666. MoreInfo.MouseButton1Down:connect(function()
  2667. if MoreInfo.Text == "Info" then
  2668. MoreInfo.Text = "Close Info"
  2669. Info.Visible = true
  2670. else
  2671. MoreInfo.Text = "Info"
  2672. Info.Visible = false
  2673. end
  2674. end)
  2675.  
  2676. Option = false
  2677.  
  2678. Dupe.MouseButton1Down:connect(function()
  2679. plr = game:GetService("Players").LocalPlayer
  2680. slot = plr.CurrentSaveSlot
  2681. if Option == false then
  2682. if slot.Value == -1 then
  2683. Option = true
  2684. slot.RobloxLocked = true
  2685. Duper.Text = "Duping Active"
  2686. Duper.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2687. Duper.TextColor3 = Color3.new(1, 1, 1)
  2688. Dupe.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2689. Dupe.TextColor3 = Color3.new(1, 1, 1)
  2690. Dupe.Text = "Duping"
  2691. 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)."
  2692. end
  2693. else
  2694. Option = false
  2695. slot.RobloxLocked = false
  2696. Duper.Text = "Item Duping"
  2697. Duper.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2698. Duper.TextColor3 = Color3.new(1, 1, 1)
  2699. Dupe.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2700. Dupe.TextColor3 = Color3.new(1, 1, 1)
  2701. Dupe.Text = "Dupe"
  2702. DupingText1.Text = "Loaded Slot Will Save"
  2703. end
  2704. end)
  2705.  
  2706. --- BTools ---
  2707.  
  2708. CopyTool.MouseButton1Down:connect(function()
  2709. if BTool == "Copy" then
  2710. BTool = "Nothing"
  2711. CopyTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2712. else
  2713. BTool = "Copy"
  2714. CopyTool.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2715. DeleteTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2716. MoveTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2717. end
  2718. end)
  2719.  
  2720. DeleteTool.MouseButton1Down:connect(function()
  2721. if BTool == "Delete" then
  2722. BTool = "Nothing"
  2723. DeleteTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2724. else
  2725. BTool = "Delete"
  2726. DeleteTool.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2727. CopyTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2728. MoveTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2729. end
  2730. end)
  2731.  
  2732. MoveTool.MouseButton1Down:connect(function()
  2733. if BTool == "Move" then
  2734. BTool = "Nothing"
  2735. MoveTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2736. else
  2737. BTool = "Move"
  2738. MoveTool.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2739. CopyTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2740. DeleteTool.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  2741. end
  2742. end)
  2743.  
  2744. Mouse.Button1Up:connect(function()
  2745. MDown = false
  2746. end)
  2747.  
  2748. Mouse.Button1Down:connect(function()
  2749. MDown = true
  2750. if BTool == "Copy" then
  2751. if Mouse.Target ~= nil then
  2752. Clone = Mouse.Target:clone()
  2753. Clone.Parent = game.Workspace
  2754. end
  2755. end
  2756.  
  2757. if BTool == "Delete" then
  2758. if Mouse.Target ~= nil then
  2759. Mouse.Target:remove()
  2760. end
  2761. end
  2762.  
  2763. if BTool == "Move" then
  2764. if Mouse.Target ~= nil then
  2765. MoveObject = Mouse.Target
  2766. end
  2767. end
  2768.  
  2769. wait()
  2770. if Clone ~= nil then
  2771. Clone.CanCollide = false
  2772. repeat
  2773. wait()
  2774. SubX = Clone.Size.X/2
  2775. SubY = Clone.Size.Y/2
  2776. SubZ = Clone.Size.Z/2
  2777. Clone.Position = Vector3.new(Mouse.Hit.X - SubX, Mouse.Hit.Y - SubY, Mouse.Hit.Z - SubZ)
  2778. until MDown == false
  2779. Clone.CanCollide = true
  2780. Clone.Position = Clone.Position + Vector3.new(SubX, SubY, SubZ)
  2781. Clone = nil
  2782. end
  2783.  
  2784. if MoveObject ~= nil then
  2785. MoveObject.CanCollide = false
  2786. repeat
  2787. wait()
  2788. SubX = MoveObject.Size.X/2
  2789. SubY = MoveObject.Size.Y/2
  2790. SubZ = MoveObject.Size.Z/2
  2791. MoveObject.Position = Vector3.new(Mouse.Hit.X - SubX, Mouse.Hit.Y - SubY, Mouse.Hit.Z - SubZ)
  2792. until MDown == false
  2793. MoveObject.CanCollide = true
  2794. MoveObject.Position = MoveObject.Position + Vector3.new(SubX, SubY, SubZ)
  2795. MoveObject= nil
  2796. end
  2797. end)
  2798.  
  2799. --- TP Tool ---
  2800.  
  2801. TPTool.MouseButton1Down:connect(function()
  2802. local Tele = Instance.new("Tool", game.Players.LocalPlayer.Backpack)
  2803. Tele.RequiresHandle = false
  2804. Tele.RobloxLocked = true
  2805. Tele.Name = "TPTool"
  2806. Tele.ToolTip = "Teleport Tool"
  2807. Tele.Equipped:connect(function(Mouse)
  2808. Mouse.Button1Down:connect(function()
  2809. if Mouse.Target then
  2810. game.Workspace:FindFirstChild(game.Players.LocalPlayer.Name).HumanoidRootPart.CFrame = (CFrame.new(Mouse.Hit.x, Mouse.Hit.y + 5, Mouse.Hit.z))
  2811. end
  2812. end)
  2813. end)
  2814. end)
  2815.  
  2816. --- Departure ---
  2817.  
  2818. game.Workspace.Ferry.TimeToDeparture.Changed:connect(function()
  2819. Depart.Text = "Ferry Departs: ".. game.Workspace.Ferry.TimeToDeparture.Value
  2820. if Depart.Text == "Ferry Departs: 0" then
  2821. wait(6)
  2822. Depart.Text = "Ferry has Departed"
  2823. else
  2824. Depart.Text = "Ferry Departs: ".. game.Workspace.Ferry.TimeToDeparture.Value
  2825. end
  2826. end)
  2827.  
  2828. --- Spawn Tree ---
  2829.  
  2830. function bringtree(telewoodtype)
  2831. local Wood = {
  2832. "Cherry",
  2833. "Palm",
  2834. "CaveCrawler",
  2835. "Generic",
  2836. "Spooky",
  2837. "Fir",
  2838. "GreenSwampy",
  2839. "Oak",
  2840. "Birch",
  2841. "Volcano",
  2842. "LoneCave",
  2843. "GoldSwampy",
  2844. "Koa",
  2845. "Walnut",
  2846. "Frost",
  2847. "SnowGlow"
  2848. }
  2849.  
  2850. local NewRegionNames = {}
  2851.  
  2852. --Name Changer For Seperating What Is What
  2853.  
  2854. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2855. if l.Name == "TreeRegion" then
  2856. if l ~= nil then
  2857. for i, b in pairs(l:GetChildren()) do
  2858. if b:IsA("Model") then
  2859. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[1] then
  2860. l.Name = Wood[1]
  2861. warn("TreeRegion #1 Has Been Changed To: "..Wood[1])
  2862. table.insert(NewRegionNames, l.Name)
  2863. end
  2864. end
  2865. end
  2866. end
  2867. end
  2868. end
  2869.  
  2870. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2871. if l.Name == "TreeRegion" then
  2872. if l ~= nil then
  2873. for i, b in pairs(l:GetChildren()) do
  2874. if b:IsA("Model") then
  2875. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[2] then
  2876. l.Name = Wood[2]
  2877. warn("TreeRegion #2 Has Been Changed To: "..Wood[2])
  2878. table.insert(NewRegionNames, l.Name)
  2879. end
  2880. end
  2881. end
  2882. end
  2883. end
  2884. end
  2885.  
  2886. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2887. if l.Name == "TreeRegion" then
  2888. if l ~= nil then
  2889. for i, b in pairs(l:GetChildren()) do
  2890. if b:IsA("Model") then
  2891. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[3] then
  2892. l.Name = Wood[3]
  2893. warn("TreeRegion #3 Has Been Changed To: "..Wood[3])
  2894. table.insert(NewRegionNames, l.Name)
  2895. end
  2896. end
  2897. end
  2898. end
  2899. end
  2900. end
  2901.  
  2902. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2903. if l.Name == "TreeRegion" then
  2904. if l ~= nil then
  2905. for i, b in pairs(l:GetChildren()) do
  2906. if b:IsA("Model") then
  2907. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[4] then
  2908. l.Name = Wood[4]
  2909. warn("TreeRegion #4 Has Been Changed To: "..Wood[4])
  2910. table.insert(NewRegionNames, l.Name)
  2911. end
  2912. end
  2913. end
  2914. end
  2915. end
  2916. end
  2917.  
  2918. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2919. if l.Name == "TreeRegion" then
  2920. if l ~= nil then
  2921. for i, b in pairs(l:GetChildren()) do
  2922. if b:IsA("Model") then
  2923. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[5] then
  2924. l.Name = Wood[5]
  2925. warn("TreeRegion #5 Has Been Changed To: "..Wood[5])
  2926. table.insert(NewRegionNames, l.Name)
  2927. end
  2928. end
  2929. end
  2930. end
  2931. end
  2932. end
  2933.  
  2934. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2935. if l.Name == "TreeRegion" then
  2936. if l ~= nil then
  2937. for i, b in pairs(l:GetChildren()) do
  2938. if b:IsA("Model") then
  2939. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[6] then
  2940. l.Name = Wood[6]
  2941. warn("TreeRegion #6 Has Been Changed To: "..Wood[6])
  2942. table.insert(NewRegionNames, l.Name)
  2943. end
  2944. end
  2945. end
  2946. end
  2947. end
  2948. end
  2949.  
  2950. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2951. if l.Name == "TreeRegion" then
  2952. if l ~= nil then
  2953. for i, b in pairs(l:GetChildren()) do
  2954. if b:IsA("Model") then
  2955. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[7] then
  2956. l.Name = Wood[7]
  2957. warn("TreeRegion #7 Has Been Changed To: "..Wood[7])
  2958. table.insert(NewRegionNames, l.Name)
  2959. end
  2960. end
  2961. end
  2962. end
  2963. end
  2964. end
  2965.  
  2966. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2967. if l.Name == "TreeRegion" then
  2968. if l ~= nil then
  2969. for i, b in pairs(l:GetChildren()) do
  2970. if b:IsA("Model") then
  2971. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[8] then
  2972. l.Name = Wood[8]
  2973. warn("TreeRegion #8 Has Been Changed To: "..Wood[8])
  2974. table.insert(NewRegionNames, l.Name)
  2975. end
  2976. end
  2977. end
  2978. end
  2979. end
  2980. end
  2981.  
  2982. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2983. if l.Name == "TreeRegion" then
  2984. if l ~= nil then
  2985. for i, b in pairs(l:GetChildren()) do
  2986. if b:IsA("Model") then
  2987. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[9] then
  2988. l.Name = Wood[9]
  2989. warn("TreeRegion #9 Has Been Changed To: "..Wood[9])
  2990. table.insert(NewRegionNames, l.Name)
  2991. end
  2992. end
  2993. end
  2994. end
  2995. end
  2996. end
  2997.  
  2998. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  2999. if l.Name == "TreeRegion" then
  3000. if l ~= nil then
  3001. for i, b in pairs(l:GetChildren()) do
  3002. if b:IsA("Model") then
  3003. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[10] then
  3004. l.Name = Wood[10]
  3005. warn("TreeRegion #10 Has Been Changed To: "..Wood[10])
  3006. table.insert(NewRegionNames, l.Name)
  3007. end
  3008. end
  3009. end
  3010. end
  3011. end
  3012. end
  3013.  
  3014. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  3015. if l.Name == "TreeRegion" then
  3016. if l ~= nil then
  3017. for i, b in pairs(l:GetChildren()) do
  3018. if b:IsA("Model") then
  3019. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[11] then
  3020. l.Name = Wood[11]
  3021. warn("TreeRegion #11 Has Been Changed To: "..Wood[11])
  3022. table.insert(NewRegionNames, l.Name)
  3023. end
  3024. end
  3025. end
  3026. end
  3027. end
  3028. end
  3029.  
  3030. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  3031. if l.Name == "TreeRegion" then
  3032. if l ~= nil then
  3033. for i, b in pairs(l:GetChildren()) do
  3034. if b:IsA("Model") then
  3035. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[12] then
  3036. l.Name = Wood[12]
  3037. warn("TreeRegion #12 Has Been Changed To: "..Wood[12])
  3038. table.insert(NewRegionNames, l.Name)
  3039. end
  3040. end
  3041. end
  3042. end
  3043. end
  3044. end
  3045.  
  3046. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  3047. if l.Name == "TreeRegion" then
  3048. if l ~= nil then
  3049. for i, b in pairs(l:GetChildren()) do
  3050. if b:IsA("Model") then
  3051. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[13] then
  3052. l.Name = Wood[13]
  3053. warn("TreeRegion #13 Has Been Changed To: "..Wood[13])
  3054. table.insert(NewRegionNames, l.Name)
  3055. end
  3056. end
  3057. end
  3058. end
  3059. end
  3060. end
  3061.  
  3062. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  3063. if l.Name == "TreeRegion" then
  3064. if l ~= nil then
  3065. for i, b in pairs(l:GetChildren()) do
  3066. if b:IsA("Model") then
  3067. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[14] then
  3068. l.Name = Wood[14]
  3069. warn("TreeRegion #14 Has Been Changed To: "..Wood[14])
  3070. table.insert(NewRegionNames, l.Name)
  3071. end
  3072. end
  3073. end
  3074. end
  3075. end
  3076. end
  3077.  
  3078. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  3079. if l.Name == "TreeRegion" then
  3080. if l ~= nil then
  3081. for i, b in pairs(l:GetChildren()) do
  3082. if b:IsA("Model") then
  3083. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[15] then
  3084. l.Name = Wood[15]
  3085. warn("TreeRegion #15 Has Been Changed To: "..Wood[15])
  3086. table.insert(NewRegionNames, l.Name)
  3087. end
  3088. end
  3089. end
  3090. end
  3091. end
  3092. end
  3093.  
  3094. for i, l in pairs(game:GetService("Workspace"):GetChildren()) do
  3095. if l.Name == "TreeRegion" then
  3096. if l ~= nil then
  3097. for i, b in pairs(l:GetChildren()) do
  3098. if b:IsA("Model") then
  3099. if b:FindFirstChild("TreeClass") ~= nil and b.TreeClass.Value == Wood[16] then
  3100. l.Name = Wood[16]
  3101. warn("TreeRegion #16 Has Been Changed To: "..Wood[16])
  3102. table.insert(NewRegionNames, l.Name)
  3103. end
  3104. end
  3105. end
  3106. end
  3107. end
  3108. end
  3109.  
  3110. --Names Checker
  3111.  
  3112. for i, v in pairs(game:GetService("Workspace"):GetChildren()) do
  3113. print(v.Name)
  3114. end
  3115.  
  3116. --Teleporter
  3117.  
  3118. if telewoodtype == Wood[1] then
  3119. for i, v in pairs(game:GetService("Workspace")[Wood[1]]:GetChildren()) do
  3120. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[1] then
  3121. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3122. end
  3123. end
  3124. end
  3125.  
  3126. if telewoodtype == Wood[2] then
  3127. for i, v in pairs(game:GetService("Workspace")[Wood[2]]:GetChildren()) do
  3128. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[2] then
  3129. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3130. end
  3131. end
  3132. end
  3133.  
  3134. if telewoodtype == Wood[3] then
  3135. for i, v in pairs(game:GetService("Workspace")[Wood[3]]:GetChildren()) do
  3136. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[3] then
  3137. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3138. end
  3139. end
  3140. end
  3141.  
  3142. if telewoodtype == Wood[4] then
  3143. for i, v in pairs(game:GetService("Workspace")[Wood[4]]:GetChildren()) do
  3144. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[4] then
  3145. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3146. end
  3147. end
  3148. end
  3149.  
  3150. if telewoodtype == Wood[5] then
  3151. for i, v in pairs(game:GetService("Workspace")[Wood[5]]:GetChildren()) do
  3152. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[5] then
  3153. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3154. end
  3155. end
  3156. end
  3157.  
  3158. if telewoodtype == Wood[6] then
  3159. for i, v in pairs(game:GetService("Workspace")[Wood[6]]:GetChildren()) do
  3160. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[6] then
  3161. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3162. end
  3163. end
  3164. end
  3165.  
  3166. if telewoodtype == Wood[7] then
  3167. for i, v in pairs(game:GetService("Workspace")[Wood[7]]:GetChildren()) do
  3168. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[7] then
  3169. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3170. end
  3171. end
  3172. end
  3173.  
  3174. if telewoodtype == Wood[8] then
  3175. for i, v in pairs(game:GetService("Workspace")[Wood[8]]:GetChildren()) do
  3176. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[8] then
  3177. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3178. end
  3179. end
  3180. end
  3181.  
  3182. if telewoodtype == Wood[9] then
  3183. for i, v in pairs(game:GetService("Workspace")[Wood[9]]:GetChildren()) do
  3184. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[9] then
  3185. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3186. end
  3187. end
  3188. end
  3189.  
  3190. if telewoodtype == Wood[10] then
  3191. for i, v in pairs(game:GetService("Workspace")[Wood[10]]:GetChildren()) do
  3192. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[10] then
  3193. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3194. end
  3195. end
  3196. end
  3197.  
  3198. if telewoodtype == Wood[11] then
  3199. for i, v in pairs(game:GetService("Workspace")[Wood[11]]:GetChildren()) do
  3200. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[11] then
  3201. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3202. end
  3203. end
  3204. end
  3205.  
  3206. if telewoodtype == Wood[12] then
  3207. for i, v in pairs(game:GetService("Workspace")[Wood[12]]:GetChildren()) do
  3208. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[12] then
  3209. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3210. end
  3211. end
  3212. end
  3213.  
  3214. if telewoodtype == Wood[13] then
  3215. for i, v in pairs(game:GetService("Workspace")[Wood[13]]:GetChildren()) do
  3216. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[13] then
  3217. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3218. end
  3219. end
  3220. end
  3221.  
  3222. if telewoodtype == Wood[14] then
  3223. for i, v in pairs(game:GetService("Workspace")[Wood[14]]:GetChildren()) do
  3224. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[14] then
  3225. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3226. end
  3227. end
  3228. end
  3229. if telewoodtype == Wood[15] then
  3230. for i, v in pairs(game:GetService("Workspace")[Wood[15]]:GetChildren()) do
  3231. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[15] then
  3232. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3233. end
  3234. end
  3235. end
  3236. if telewoodtype == Wood[16] then
  3237. for i, v in pairs(game:GetService("Workspace")[Wood[16]]:GetChildren()) do
  3238. if v:FindFirstChild("TreeClass") ~= nil and v.TreeClass.Value == Wood[16] then
  3239. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(math.random(1,60), math.random(1,1), math.random(1,60)))
  3240. end
  3241. end
  3242. end
  3243.  
  3244. end
  3245.  
  3246. OakTree.MouseButton1Down:Connect(function()
  3247. bringtree('Generic')
  3248. end)
  3249.  
  3250. CherryTree.MouseButton1Down:Connect(function()
  3251. bringtree('Cherry')
  3252. end)
  3253.  
  3254. PalmTree.MouseButton1Down:Connect(function()
  3255. bringtree('Palm')
  3256. end)
  3257.  
  3258. CaveCrawlerTree.MouseButton1Down:Connect(function()
  3259. bringtree('CaveCrawler')
  3260. end)
  3261.  
  3262. SpookyTree.MouseButton1Down:Connect(function()
  3263. bringtree('Spooky')
  3264. end)
  3265.  
  3266. FirTree.MouseButton1Down:Connect(function()
  3267. bringtree('Fir')
  3268. end)
  3269.  
  3270. GreenTree.MouseButton1Down:Connect(function()
  3271. bringtree('GreenSwampy')
  3272. end)
  3273.  
  3274. BirchTree.MouseButton1Down:Connect(function()
  3275. bringtree('Birch')
  3276. end)
  3277.  
  3278. VolcanoTree.MouseButton1Down:Connect(function()
  3279. bringtree('Volcano')
  3280. end)
  3281.  
  3282. EndTimesTree.MouseButton1Down:Connect(function()
  3283. bringtree('LoneCave')
  3284. end)
  3285.  
  3286. ElmTree.MouseButton1Down:Connect(function()
  3287. bringtree('Oak')
  3288. end)
  3289.  
  3290. KoaTree.MouseButton1Down:Connect(function()
  3291. bringtree('Koa')
  3292. end)
  3293.  
  3294. GoldTree.MouseButton1Down:Connect(function()
  3295. bringtree('GoldSwampy')
  3296. end)
  3297.  
  3298. WalnutTree.MouseButton1Down:Connect(function()
  3299. bringtree('Walnut')
  3300. end)
  3301.  
  3302. FrostyTree.MouseButton1Down:Connect(function()
  3303. bringtree('Frost')
  3304. end)
  3305.  
  3306. SnowGlowTree.MouseButton1Down:Connect(function()
  3307. bringtree('SnowGlow')
  3308. end)
  3309.  
  3310. --- ReJoin Server ---
  3311.  
  3312. ReJoinServer.MouseButton1Down:connect(function()
  3313. local placeId = "13822889"
  3314. game:GetService("TeleportService"):Teleport(placeId)
  3315. end)
  3316.  
  3317. --- End ---
  3318. end)
  3319.  
  3320. Gui_2.Name = "Gui"
  3321. Gui_2.Parent = Frame
  3322. Gui_2.BackgroundColor3 = Color3.new(0, 0, 0)
  3323. Gui_2.Position = UDim2.new(0.599033833, 0, 0.632911384, 0)
  3324. Gui_2.Size = UDim2.new(0, 81, 0, 43)
  3325. Gui_2.Font = Enum.Font.SourceSans
  3326. Gui_2.Text = "Gui"
  3327. Gui_2.TextColor3 = Color3.new(0, 0, 1)
  3328. Gui_2.TextScaled = true
  3329. Gui_2.TextSize = 14
  3330. Gui_2.TextWrapped = true
  3331. Gui_2.MouseButton1Click:Connect(function()
  3332. -- Objects
  3333.  
  3334. local LumberTycoon2Gui = Instance.new("ScreenGui")
  3335. local LoginFrame = Instance.new("Frame")
  3336. local LT2Gui = Instance.new("TextLabel")
  3337. local username = Instance.new("TextBox")
  3338. local password = Instance.new("TextBox")
  3339. local Loginbutton = Instance.new("TextButton")
  3340. local Credits = Instance.new("TextLabel")
  3341. local ScriptsFrame = Instance.new("Frame")
  3342. local TextLabel = Instance.new("TextLabel")
  3343. local exitbutton = Instance.new("TextButton")
  3344. local BoxedCars = Instance.new("TextButton")
  3345. local Swamp = Instance.new("TextButton")
  3346. local Volcano = Instance.new("TextButton")
  3347. local Spawn = Instance.new("TextButton")
  3348. local Speed = Instance.new("TextButton")
  3349. local Jpower = Instance.new("TextButton")
  3350. local Cave = Instance.new("TextButton")
  3351. local LinksLogic = Instance.new("TextButton")
  3352. local SkiLodge = Instance.new("TextButton")
  3353. local ClickTP = Instance.new("TextButton")
  3354. local Palm = Instance.new("TextButton")
  3355. local GodMode = Instance.new("TextButton")
  3356. local StrangeMan = Instance.new("TextButton")
  3357. local woodrus = Instance.new("TextButton")
  3358. local EndTimes = Instance.new("TextButton")
  3359. local bobshack = Instance.new("TextButton")
  3360. local Bringwood = Instance.new("TextButton")
  3361. local yourplot = Instance.new("TextButton")
  3362.  
  3363. -- Properties
  3364.  
  3365. LumberTycoon2Gui.Name = "Lumber Tycoon 2 Gui"
  3366. LumberTycoon2Gui.Parent = game.CoreGui
  3367.  
  3368. LoginFrame.Name = "LoginFrame"
  3369. LoginFrame.Parent = LumberTycoon2Gui
  3370. LoginFrame.Active = true
  3371. LoginFrame.BackgroundColor3 = Color3.new(0.427451, 0.427451, 0.427451)
  3372. LoginFrame.BorderSizePixel = 2
  3373. LoginFrame.Draggable = true
  3374. LoginFrame.Position = UDim2.new(0.0814094841, 0, 0.0447154418, 0)
  3375. LoginFrame.Selectable = true
  3376. LoginFrame.Size = UDim2.new(0, 290, 0, 304)
  3377.  
  3378. LT2Gui.Name = "LT2 Gui"
  3379. LT2Gui.Parent = LoginFrame
  3380. LT2Gui.BackgroundColor3 = Color3.new(0.247059, 0.239216, 0.239216)
  3381. LT2Gui.Size = UDim2.new(0, 290, 0, 44)
  3382. LT2Gui.Font = Enum.Font.SciFi
  3383. LT2Gui.FontSize = Enum.FontSize.Size14
  3384. LT2Gui.Text = "Lumber Tycoon 2 GUI"
  3385. LT2Gui.TextColor3 = Color3.new(0, 0, 1)
  3386. LT2Gui.TextScaled = true
  3387. LT2Gui.TextSize = 14
  3388. LT2Gui.TextStrokeColor3 = Color3.new(1, 0, 0.0666667)
  3389. LT2Gui.TextWrapped = true
  3390.  
  3391. username.Name = "username"
  3392. username.Parent = LoginFrame
  3393. username.BackgroundColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  3394. username.Position = UDim2.new(0.155172408, 0, 0.282894731, 0)
  3395. username.Size = UDim2.new(0, 200, 0, 50)
  3396. username.Font = Enum.Font.SourceSansBold
  3397. username.FontSize = Enum.FontSize.Size28
  3398. username.Text = "Username"
  3399. username.TextColor3 = Color3.new(1, 1, 1)
  3400. username.TextSize = 25
  3401. username.TextXAlignment = Enum.TextXAlignment.Left
  3402.  
  3403. password.Name = "password"
  3404. password.Parent = LoginFrame
  3405. password.BackgroundColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  3406. password.Position = UDim2.new(0.155172408, 0, 0.536184192, 0)
  3407. password.Size = UDim2.new(0, 200, 0, 50)
  3408. password.Font = Enum.Font.SourceSansBold
  3409. password.FontSize = Enum.FontSize.Size28
  3410. password.Text = "Password"
  3411. password.TextColor3 = Color3.new(1, 1, 1)
  3412. password.TextSize = 25
  3413. password.TextXAlignment = Enum.TextXAlignment.Left
  3414.  
  3415. Loginbutton.Name = "Loginbutton"
  3416. Loginbutton.Parent = LoginFrame
  3417. Loginbutton.BackgroundColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  3418. Loginbutton.BorderColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  3419. Loginbutton.Position = UDim2.new(0.258620679, 0, 0.782894731, 0)
  3420. Loginbutton.Size = UDim2.new(0, 140, 0, 39)
  3421. Loginbutton.Font = Enum.Font.SourceSansBold
  3422. Loginbutton.FontSize = Enum.FontSize.Size24
  3423. Loginbutton.Text = "Login"
  3424. Loginbutton.TextColor3 = Color3.new(1, 1, 1)
  3425. Loginbutton.TextSize = 20
  3426. Loginbutton.TextWrapped = true
  3427. Loginbutton.MouseButton1Down:connect(function()
  3428. if username.Text == "KevinPlayLT2" and password.Text == "robloxuser" then
  3429. LoginFrame.Visible = false
  3430. ScriptsFrame.Visible = true
  3431. end
  3432.  
  3433. end)
  3434.  
  3435. Credits.Name = "Credits"
  3436. Credits.Parent = LoginFrame
  3437. Credits.BackgroundColor3 = Color3.new(0.427451, 0.427451, 0.427451)
  3438. Credits.BorderSizePixel = 0
  3439. Credits.Position = UDim2.new(0, 0, 0.164473668, 0)
  3440. Credits.Size = UDim2.new(0, 141, 0, 19)
  3441. Credits.Font = Enum.Font.SourceSans
  3442. Credits.FontSize = Enum.FontSize.Size14
  3443. Credits.Text = "Made By: KevinPlayLT2"
  3444. Credits.TextScaled = true
  3445. Credits.TextSize = 14
  3446. Credits.TextWrapped = true
  3447. Credits.TextXAlignment = Enum.TextXAlignment.Left
  3448.  
  3449. ScriptsFrame.Name = "ScriptsFrame"
  3450. ScriptsFrame.Parent = LumberTycoon2Gui
  3451. ScriptsFrame.Active = true
  3452. ScriptsFrame.BackgroundColor3 = Color3.new(0.439216, 0.729412, 0.909804)
  3453. ScriptsFrame.Draggable = true
  3454. ScriptsFrame.Position = UDim2.new(0.469623327, 0, 0.0257452596, 0)
  3455. ScriptsFrame.Selectable = true
  3456. ScriptsFrame.Size = UDim2.new(0, 386, 0, 318)
  3457. ScriptsFrame.Style = Enum.FrameStyle.RobloxSquare
  3458. ScriptsFrame.Visible = false
  3459.  
  3460. TextLabel.Parent = ScriptsFrame
  3461. TextLabel.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  3462. TextLabel.Position = UDim2.new(-0.0207253881, 0, -0.0251572318, 0)
  3463. TextLabel.Size = UDim2.new(0, 386, 0, 33)
  3464. TextLabel.Font = Enum.Font.SciFi
  3465. TextLabel.FontSize = Enum.FontSize.Size14
  3466. TextLabel.Text = "Lumber Tycoon 2 Gui"
  3467. TextLabel.TextColor3 = Color3.new(0.0313726, 0, 0.996078)
  3468. TextLabel.TextScaled = true
  3469. TextLabel.TextSize = 14
  3470. TextLabel.TextWrapped = true
  3471.  
  3472. exitbutton.Name = "exitbutton"
  3473. exitbutton.Parent = ScriptsFrame
  3474. exitbutton.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  3475. exitbutton.BorderSizePixel = 0
  3476. exitbutton.Position = UDim2.new(0.935233116, 0, -0.0251572318, 0)
  3477. exitbutton.Size = UDim2.new(0, 32, 0, 33)
  3478. exitbutton.Font = Enum.Font.SourceSans
  3479. exitbutton.FontSize = Enum.FontSize.Size14
  3480. exitbutton.Text = "X"
  3481. exitbutton.TextColor3 = Color3.new(1, 1, 1)
  3482. exitbutton.TextScaled = true
  3483. exitbutton.TextSize = 14
  3484. exitbutton.TextWrapped = true
  3485. exitbutton.MouseButton1Down:connect(function()
  3486. ScriptsFrame.Visible = false
  3487. end
  3488. )
  3489.  
  3490. BoxedCars.Name = "Boxed Cars"
  3491. BoxedCars.Parent = ScriptsFrame
  3492. BoxedCars.BackgroundColor3 = Color3.new(0, 0, 0)
  3493. BoxedCars.Position = UDim2.new(0.0362694301, 0, 0.128930822, 0)
  3494. BoxedCars.Size = UDim2.new(0, 106, 0, 33)
  3495. BoxedCars.Font = Enum.Font.SciFi
  3496. BoxedCars.FontSize = Enum.FontSize.Size28
  3497. BoxedCars.Text = "BoxedCars"
  3498. BoxedCars.TextColor3 = Color3.new(0, 0.0666667, 1)
  3499. BoxedCars.TextSize = 25
  3500. BoxedCars.MouseButton1Click:connect(function()
  3501. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(509, 3, -1463))end
  3502. )
  3503.  
  3504. Swamp.Name = "Swamp"
  3505. Swamp.Parent = ScriptsFrame
  3506. Swamp.BackgroundColor3 = Color3.new(0, 0, 0)
  3507. Swamp.Position = UDim2.new(0.709844589, 0, 0.130503148, 0)
  3508. Swamp.Size = UDim2.new(0, 106, 0, 33)
  3509. Swamp.Font = Enum.Font.SciFi
  3510. Swamp.FontSize = Enum.FontSize.Size28
  3511. Swamp.Text = "Swamp"
  3512. Swamp.TextColor3 = Color3.new(0, 0.0666667, 1)
  3513. Swamp.TextSize = 25
  3514. Swamp.MouseButton1Click:connect(function()
  3515. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-1209,132,-801))end
  3516. )
  3517.  
  3518. Volcano.Name = "Volcano"
  3519. Volcano.Parent = ScriptsFrame
  3520. Volcano.BackgroundColor3 = Color3.new(0, 0, 0)
  3521. Volcano.Position = UDim2.new(0.369170964, 0, 0.753144622, 0)
  3522. Volcano.Size = UDim2.new(0, 106, 0, 33)
  3523. Volcano.Font = Enum.Font.SciFi
  3524. Volcano.FontSize = Enum.FontSize.Size28
  3525. Volcano.Text = "Volcano"
  3526. Volcano.TextColor3 = Color3.new(0, 0.0666667, 1)
  3527. Volcano.TextSize = 25
  3528. Volcano.MouseButton1Click:connect(function()
  3529. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-1585,622,1140))end
  3530. )
  3531.  
  3532. Spawn.Name = "Spawn"
  3533. Spawn.Parent = ScriptsFrame
  3534. Spawn.BackgroundColor3 = Color3.new(0, 0, 0)
  3535. Spawn.Position = UDim2.new(0.369170964, 0, 0.599056602, 0)
  3536. Spawn.Size = UDim2.new(0, 106, 0, 33)
  3537. Spawn.Font = Enum.Font.SciFi
  3538. Spawn.FontSize = Enum.FontSize.Size28
  3539. Spawn.Text = "Spawn"
  3540. Spawn.TextColor3 = Color3.new(0, 0.0666667, 1)
  3541. Spawn.TextSize = 25
  3542. Spawn.MouseButton1Click:connect(function()
  3543. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(155,3,74))end
  3544. )
  3545.  
  3546. Speed.Name = "Speed"
  3547. Speed.Parent = ScriptsFrame
  3548. Speed.BackgroundColor3 = Color3.new(0, 0, 0)
  3549. Speed.Position = UDim2.new(0.370466322, 0, 0.435534596, 0)
  3550. Speed.Size = UDim2.new(0, 106, 0, 33)
  3551. Speed.Font = Enum.Font.SciFi
  3552. Speed.FontSize = Enum.FontSize.Size28
  3553. Speed.Text = "Speed"
  3554. Speed.TextColor3 = Color3.new(0, 0.0666667, 1)
  3555. Speed.TextSize = 25
  3556. Speed.MouseButton1Click:connect(function()while wait()do
  3557. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed=200
  3558. end
  3559. end
  3560. )
  3561.  
  3562. Jpower.Name = "Jpower"
  3563. Jpower.Parent = ScriptsFrame
  3564. Jpower.BackgroundColor3 = Color3.new(0, 0, 0)
  3565. Jpower.Position = UDim2.new(0.369170964, 0, 0.278301895, 0)
  3566. Jpower.Size = UDim2.new(0, 106, 0, 33)
  3567. Jpower.Font = Enum.Font.SciFi
  3568. Jpower.FontSize = Enum.FontSize.Size28
  3569. Jpower.Text = "Jpower"
  3570. Jpower.TextColor3 = Color3.new(0, 0.0666667, 1)
  3571. Jpower.TextSize = 25
  3572. Jpower.MouseButton1Click:connect(function()while wait()do
  3573. game.Players.LocalPlayer.Character.Humanoid.JumpPower=100 end end)
  3574.  
  3575. Cave.Name = "Cave"
  3576. Cave.Parent = ScriptsFrame
  3577. Cave.BackgroundColor3 = Color3.new(0, 0, 0)
  3578. Cave.Position = UDim2.new(0.369170964, 0, 0.128930822, 0)
  3579. Cave.Size = UDim2.new(0, 106, 0, 33)
  3580. Cave.Font = Enum.Font.SciFi
  3581. Cave.FontSize = Enum.FontSize.Size28
  3582. Cave.Text = "Cave"
  3583. Cave.TextColor3 = Color3.new(0, 0.0666667, 1)
  3584. Cave.TextSize = 25
  3585. Cave.MouseButton1Click:connect(function()
  3586. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(3581,-179,430))end
  3587. )
  3588.  
  3589. LinksLogic.Name = "Links Logic"
  3590. LinksLogic.Parent = ScriptsFrame
  3591. LinksLogic.BackgroundColor3 = Color3.new(0, 0, 0)
  3592. LinksLogic.Position = UDim2.new(0.0362694301, 0, 0.75, 0)
  3593. LinksLogic.Size = UDim2.new(0, 106, 0, 33)
  3594. LinksLogic.Font = Enum.Font.SciFi
  3595. LinksLogic.FontSize = Enum.FontSize.Size28
  3596. LinksLogic.Text = "LinkLogic"
  3597. LinksLogic.TextColor3 = Color3.new(0, 0.0666667, 1)
  3598. LinksLogic.TextSize = 25
  3599. LinksLogic.MouseButton1Click:connect(function()
  3600. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(4607,7.5,-798))end
  3601. )
  3602.  
  3603. SkiLodge.Name = "Ski Lodge"
  3604. SkiLodge.Parent = ScriptsFrame
  3605. SkiLodge.BackgroundColor3 = Color3.new(0, 0, 0)
  3606. SkiLodge.Position = UDim2.new(0.0362694301, 0, 0.599056602, 0)
  3607. SkiLodge.Size = UDim2.new(0, 106, 0, 33)
  3608. SkiLodge.Font = Enum.Font.SciFi
  3609. SkiLodge.FontSize = Enum.FontSize.Size28
  3610. SkiLodge.Text = "Ski Lodge"
  3611. SkiLodge.TextColor3 = Color3.new(0, 0.0666667, 1)
  3612. SkiLodge.TextSize = 25
  3613. SkiLodge.MouseButton1Click:connect(function()
  3614. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(1244, 62, 2306))end
  3615. )
  3616.  
  3617. ClickTP.Name = "Click TP"
  3618. ClickTP.Parent = ScriptsFrame
  3619. ClickTP.BackgroundColor3 = Color3.new(0, 0, 0)
  3620. ClickTP.Position = UDim2.new(0.0349740908, 0, 0.435534596, 0)
  3621. ClickTP.Size = UDim2.new(0, 106, 0, 33)
  3622. ClickTP.Font = Enum.Font.SciFi
  3623. ClickTP.FontSize = Enum.FontSize.Size28
  3624. ClickTP.Text = "Click TP"
  3625. ClickTP.TextColor3 = Color3.new(0, 0.0666667, 1)
  3626. ClickTP.TextSize = 25
  3627. ClickTP.MouseButton1Click:connect(function()
  3628. local acc=Instance.new("Tool",game.Players.LocalPlayer.Backpack)acc.RequiresHandle=false;acc.RobloxLocked=true;acc.Name="Tool"
  3629. acc.ToolTip="Teleport Tool"
  3630. acc.Equipped:connect(function(bcc)
  3631. bcc.Button1Down:connect(function()
  3632. if bcc.Target then
  3633. game.Workspace:FindFirstChild(game.Players.LocalPlayer.Name).HumanoidRootPart.CFrame=(CFrame.new(bcc.Hit.x,
  3634. bcc.Hit.y+5,bcc.Hit.z))
  3635. end
  3636. end)
  3637. end)
  3638. end)
  3639. Palm.Name = "Palm"
  3640. Palm.Parent = ScriptsFrame
  3641. Palm.BackgroundColor3 = Color3.new(0, 0, 0)
  3642. Palm.Position = UDim2.new(0.0349740908, 0, 0.278301895, 0)
  3643. Palm.Size = UDim2.new(0, 106, 0, 33)
  3644. Palm.Font = Enum.Font.SciFi
  3645. Palm.FontSize = Enum.FontSize.Size28
  3646. Palm.Text = "Palm"
  3647. Palm.TextColor3 = Color3.new(0, 0.0666667, 1)
  3648. Palm.TextSize = 25
  3649. Palm.MouseButton1Click:connect(function()
  3650. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(2549, -5, -42))end
  3651. )
  3652.  
  3653. GodMode.Name = "GodMode"
  3654. GodMode.Parent = ScriptsFrame
  3655. GodMode.BackgroundColor3 = Color3.new(0, 0, 0)
  3656. GodMode.Position = UDim2.new(0.709844589, 0, 0.272012591, 0)
  3657. GodMode.Size = UDim2.new(0, 106, 0, 33)
  3658. GodMode.Font = Enum.Font.SciFi
  3659. GodMode.FontSize = Enum.FontSize.Size28
  3660. GodMode.Text = "GodMode"
  3661. GodMode.TextColor3 = Color3.new(0, 0.0666667, 1)
  3662. GodMode.TextSize = 25
  3663. GodMode.MouseButton1Click:Connect(function()
  3664. god()
  3665. end)
  3666.  
  3667. StrangeMan.Name = "StrangeMan"
  3668. StrangeMan.Parent = ScriptsFrame
  3669. StrangeMan.BackgroundColor3 = Color3.new(0, 0, 0)
  3670. StrangeMan.Position = UDim2.new(0.709844589, 0, 0.435534596, 0)
  3671. StrangeMan.Size = UDim2.new(0, 106, 0, 33)
  3672. StrangeMan.Font = Enum.Font.SciFi
  3673. StrangeMan.FontSize = Enum.FontSize.Size28
  3674. StrangeMan.Text = "ThePower"
  3675. StrangeMan.TextColor3 = Color3.new(0, 0.0666667, 1)
  3676. StrangeMan.TextSize = 25
  3677. StrangeMan.MouseButton1Click:connect(function()
  3678. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(1061, 16, 1131))end
  3679. )
  3680.  
  3681. woodrus.Name = "woodrus"
  3682. woodrus.Parent = ScriptsFrame
  3683. woodrus.BackgroundColor3 = Color3.new(0, 0, 0)
  3684. woodrus.Position = UDim2.new(0.709844589, 0, 0.589622676, 0)
  3685. woodrus.Size = UDim2.new(0, 106, 0, 33)
  3686. woodrus.Font = Enum.Font.SciFi
  3687. woodrus.FontSize = Enum.FontSize.Size28
  3688. woodrus.Text = "WoodRUS"
  3689. woodrus.TextColor3 = Color3.new(0, 0.0666667, 1)
  3690. woodrus.TextSize = 25
  3691. woodrus.MouseButton1Click:connect(function()
  3692. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(265,3,57))end
  3693. )
  3694.  
  3695. EndTimes.Name = "EndTimes"
  3696. EndTimes.Parent = ScriptsFrame
  3697. EndTimes.BackgroundColor3 = Color3.new(0, 0, 0)
  3698. EndTimes.Position = UDim2.new(0.709844589, 0, 0.75000006, 0)
  3699. EndTimes.Size = UDim2.new(0, 106, 0, 33)
  3700. EndTimes.Font = Enum.Font.SciFi
  3701. EndTimes.FontSize = Enum.FontSize.Size28
  3702. EndTimes.Text = "EndTime"
  3703. EndTimes.TextColor3 = Color3.new(0, 0.0666667, 1)
  3704. EndTimes.TextSize = 25
  3705. EndTimes.MouseButton1Click:connect(function()
  3706. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(113, -214, -951))end
  3707. )
  3708.  
  3709. bobshack.Name = "bobshack"
  3710. bobshack.Parent = ScriptsFrame
  3711. bobshack.BackgroundColor3 = Color3.new(0, 0, 0)
  3712. bobshack.Position = UDim2.new(0.709844589, 0, 0.891509533, 0)
  3713. bobshack.Size = UDim2.new(0, 106, 0, 33)
  3714. bobshack.Font = Enum.Font.SciFi
  3715. bobshack.FontSize = Enum.FontSize.Size28
  3716. bobshack.Text = "BobShack"
  3717. bobshack.TextColor3 = Color3.new(0, 0.0666667, 1)
  3718. bobshack.TextSize = 25
  3719. bobshack.MouseButton1Click:connect(function()
  3720. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(260, 8, -2542))end
  3721. )
  3722. Bringwood.Name = "Bringwood"
  3723. Bringwood.Parent = ScriptsFrame
  3724. Bringwood.BackgroundColor3 = Color3.new(0, 0, 0)
  3725. Bringwood.Position = UDim2.new(0.0362694301, 0, 0.891509473, 0)
  3726. Bringwood.Size = UDim2.new(0, 106, 0, 33)
  3727. Bringwood.Font = Enum.Font.SciFi
  3728. Bringwood.FontSize = Enum.FontSize.Size28
  3729. Bringwood.Text = "BringWod"
  3730. Bringwood.TextColor3 = Color3.new(0, 0.0666667, 1)
  3731. Bringwood.TextSize = 25
  3732. Bringwood.MouseButton1Down:connect(function()
  3733. for _, Log in pairs(game.Workspace.LogModels:GetChildren()) do
  3734. if Log.Name:sub(1,6) == "Loose_" and Log:findFirstChild("Owner") then
  3735. if Log.Owner.Value == game.Players.LocalPlayer then
  3736. Log:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(0,15,0))
  3737. end
  3738. end
  3739. end
  3740. end)
  3741.  
  3742. yourplot.Name = "yourplot"
  3743. yourplot.Parent = ScriptsFrame
  3744. yourplot.BackgroundColor3 = Color3.new(0, 0, 0)
  3745. yourplot.Position = UDim2.new(0.37176162, 0, 0.891509414, 0)
  3746. yourplot.Size = UDim2.new(0, 106, 0, 33)
  3747. yourplot.Font = Enum.Font.SciFi
  3748. yourplot.FontSize = Enum.FontSize.Size28
  3749. yourplot.Text = "TP Plot"
  3750. yourplot.TextColor3 = Color3.new(0, 0.0666667, 1)
  3751. yourplot.TextSize = 25
  3752. yourplot.MouseButton1Click:connect(function()
  3753. for acc,bcc in
  3754. pairs(game.Workspace.Properties:GetChildren())do
  3755. if bcc.Owner.Value==game.Players.LocalPlayer then
  3756. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame=
  3757. bcc.OriginSquare.CFrame+Vector3.new(0,10,0)end end end)
  3758. end)
  3759.  
  3760. Admin.Name = "Admin"
  3761. Admin.Parent = Frame
  3762. Admin.BackgroundColor3 = Color3.new(0, 0, 0)
  3763. Admin.Position = UDim2.new(0.0579710156, 0, 0.194092825, 0)
  3764. Admin.Size = UDim2.new(0, 183, 0, 46)
  3765. Admin.Font = Enum.Font.SourceSans
  3766. Admin.Text = "Admin"
  3767. Admin.TextColor3 = Color3.new(0, 0, 1)
  3768. Admin.TextScaled = true
  3769. Admin.TextSize = 14
  3770. Admin.TextWrapped = true
  3771.  
  3772. Gui_3.Name = "Gui"
  3773. Gui_3.Parent = Frame
  3774. Gui_3.BackgroundColor3 = Color3.new(0, 0, 0)
  3775. Gui_3.Position = UDim2.new(0.794686019, 0, 0.455696195, 0)
  3776. Gui_3.Size = UDim2.new(0, 85, 0, 42)
  3777. Gui_3.Font = Enum.Font.SourceSans
  3778. Gui_3.Text = "Gui"
  3779. Gui_3.TextColor3 = Color3.new(0, 0, 1)
  3780. Gui_3.TextScaled = true
  3781. Gui_3.TextSize = 14
  3782. Gui_3.TextWrapped = true
  3783. Gui_3.MouseButton1Click:Connect(function()
  3784. --[[
  3785. by v1pejames
  3786. https://discord.gg/Wtrv6UB for updates
  3787.  
  3788. --]]
  3789. local service = setmetatable({}, {
  3790. __index = function(t, k)
  3791. return game:GetService(k)
  3792. end
  3793. })
  3794. -- Instances:
  3795. local Hi = Instance.new("ScreenGui")
  3796. local Menu = Instance.new("Frame")
  3797. local Main = Instance.new("Frame")
  3798. local CloseB = Instance.new("TextButton")
  3799. local MTitle = Instance.new("TextLabel")
  3800. local ExpandButton = Instance.new("ImageButton")
  3801. local ExpandFrame = Instance.new("Frame")
  3802. local LabelExpand = Instance.new("TextLabel")
  3803. local EXBMain = Instance.new("TextButton")
  3804. local EXBTeleports = Instance.new("TextButton")
  3805. local EXBInfo = Instance.new("TextButton")
  3806. local EXBSecond = Instance.new("TextButton")
  3807. local closeexpand = Instance.new("TextButton")
  3808. local Functions = Instance.new("Frame")
  3809. local UIGridLayout = Instance.new("UIGridLayout")
  3810. local Fly = Instance.new("TextButton")
  3811. local MaxLand = Instance.new("TextButton")
  3812. local AntiBlacklist = Instance.new("TextButton")
  3813. local GodAxe = Instance.new("TextButton")
  3814. local SellTree = Instance.new("TextButton")
  3815. local SellPlank = Instance.new("TextButton")
  3816. local WipeBase = Instance.new("TextButton")
  3817. local Fastwalk = Instance.new("TextButton")
  3818. local SawmillTp = Instance.new("TextButton")
  3819. local Functions2 = Instance.new("Frame")
  3820. local UIGridLayout_2 = Instance.new("UIGridLayout")
  3821. local PlotTp = Instance.new("TextButton")
  3822. local Noclip = Instance.new("TextButton")
  3823. local WoodTool = Instance.new("TextButton")
  3824. local InfWires = Instance.new("TextButton")
  3825. local BuyItems = Instance.new("TextButton")
  3826. local BuyBlueprints = Instance.new("TextButton")
  3827. local Info = Instance.new("Frame")
  3828. local TextLabel = Instance.new("TextLabel")
  3829. local Teleports = Instance.new("ScrollingFrame")
  3830. local UIGridLayout_3 = Instance.new("UIGridLayout")
  3831. local SpawnPoint = Instance.new("TextButton")
  3832. local SkiLodge = Instance.new("TextButton")
  3833. local TheDen = Instance.new("TextButton")
  3834. local ShrineOfSight = Instance.new("TextButton")
  3835. local Bridge = Instance.new("TextButton")
  3836. local Dock = Instance.new("TextButton")
  3837. local FrostTreeArea = Instance.new("TextButton")
  3838. local SnowGlow = Instance.new("TextButton")
  3839. local VolcanoWin = Instance.new("TextButton")
  3840. local EndTimes = Instance.new("TextButton")
  3841. local BobsShack = Instance.new("TextButton")
  3842. local FineArtsShop = Instance.new("TextButton")
  3843. local BoxedCars = Instance.new("TextButton")
  3844. local FancyFurnishings = Instance.new("TextButton")
  3845. local PalmIsland = Instance.new("TextButton")
  3846. local Swamp = Instance.new("TextButton")
  3847. local Volcano = Instance.new("TextButton")
  3848. local Cave = Instance.new("TextButton")
  3849. local LinksLogic = Instance.new("TextButton")
  3850. local WoodRUs = Instance.new("TextButton")
  3851. local LandStore = Instance.new("TextButton")
  3852. --Properties:
  3853. Hi.Name = "Hi"
  3854. Hi.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  3855. Hi.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  3856.  
  3857. Menu.Name = "Menu"
  3858. Menu.Parent = Hi
  3859. Menu.BackgroundColor3 = Color3.new(0, 0, 0)
  3860. Menu.BackgroundTransparency = 1
  3861. Menu.BorderColor3 = Color3.new(0, 0, 0)
  3862. Menu.BorderSizePixel = 0
  3863. Menu.Size = UDim2.new(0, 100, 0, 100)
  3864.  
  3865. Main.Name = "Main"
  3866. Main.Parent = Menu
  3867. Main.Active = true
  3868. Main.BackgroundColor3 = Color3.new(0.427451, 0.109804, 0.109804)
  3869. Main.BorderColor3 = Color3.new(0, 0, 0)
  3870. Main.BorderSizePixel = 2
  3871. Main.Position = UDim2.new(5.76999998, 0, 1.56000006, 0)
  3872. Main.Selectable = true
  3873. Main.Size = UDim2.new(0, 371, 0, 228)
  3874. Main.ZIndex = 3
  3875. Main.Draggable = true
  3876.  
  3877. CloseB.Name = "CloseB"
  3878. CloseB.Parent = Main
  3879. CloseB.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  3880. CloseB.BorderColor3 = Color3.new(0, 0, 0)
  3881. CloseB.BorderSizePixel = 0
  3882. CloseB.Position = UDim2.new(0.86522913, 0, 0, 0)
  3883. CloseB.Size = UDim2.new(0, 50, 0, 50)
  3884. CloseB.Font = Enum.Font.SourceSans
  3885. CloseB.Text = ""
  3886. CloseB.TextColor3 = Color3.new(0, 0, 0)
  3887. CloseB.TextSize = 14
  3888.  
  3889. MTitle.Name = "MTitle"
  3890. MTitle.Parent = Main
  3891. MTitle.BackgroundColor3 = Color3.new(0, 0, 0)
  3892. MTitle.BackgroundTransparency = 0.99000000953674
  3893. MTitle.BorderColor3 = Color3.new(0, 0, 0)
  3894. MTitle.BorderSizePixel = 0
  3895. MTitle.Position = UDim2.new(0.199460924, 0, 0, 0)
  3896. MTitle.Size = UDim2.new(0, 247, 0, 50)
  3897. MTitle.Font = Enum.Font.SourceSans
  3898. MTitle.Text = "JamesLT2GUI"
  3899. MTitle.TextColor3 = Color3.new(0.309804, 0.0784314, 0.0784314)
  3900. MTitle.TextSize = 40
  3901. MTitle.TextStrokeTransparency = 0.69999998807907
  3902. MTitle.TextWrapped = true
  3903.  
  3904. ExpandButton.Name = "ExpandButton"
  3905. ExpandButton.Parent = Main
  3906. ExpandButton.BackgroundColor3 = Color3.new(0, 0, 0)
  3907. ExpandButton.BackgroundTransparency = 1
  3908. ExpandButton.BorderColor3 = Color3.new(0, 0, 0)
  3909. ExpandButton.BorderSizePixel = 0
  3910. ExpandButton.Size = UDim2.new(0, 50, 0, 50)
  3911. ExpandButton.ZIndex = 4
  3912. ExpandButton.Image = "rbxassetid://2781388145"
  3913.  
  3914. ExpandFrame.Name = "ExpandFrame"
  3915. ExpandFrame.Parent = Main
  3916. ExpandFrame.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  3917. ExpandFrame.BorderColor3 = Color3.new(0, 0, 0)
  3918. ExpandFrame.BorderSizePixel = 0
  3919. ExpandFrame.Size = UDim2.new(0, 100, 0, 228)
  3920. ExpandFrame.Visible = false
  3921. ExpandFrame.ZIndex = 6
  3922.  
  3923. LabelExpand.Name = "LabelExpand"
  3924. LabelExpand.Parent = ExpandFrame
  3925. LabelExpand.BackgroundColor3 = Color3.new(0, 0, 0)
  3926. LabelExpand.BackgroundTransparency = 1
  3927. LabelExpand.BorderColor3 = Color3.new(0, 0, 0)
  3928. LabelExpand.BorderSizePixel = 0
  3929. LabelExpand.Position = UDim2.new(0, 0, 0.114035085, 0)
  3930. LabelExpand.Size = UDim2.new(0, 100, 0, 36)
  3931. LabelExpand.ZIndex = 7
  3932. LabelExpand.Font = Enum.Font.SourceSans
  3933. LabelExpand.Text = "Features"
  3934. LabelExpand.TextColor3 = Color3.new(0, 0, 0)
  3935. LabelExpand.TextSize = 24
  3936.  
  3937. EXBMain.Name = "EXBMain"
  3938. EXBMain.Parent = ExpandFrame
  3939. EXBMain.BackgroundColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  3940. EXBMain.BackgroundTransparency = 0.5
  3941. EXBMain.BorderColor3 = Color3.new(0, 0, 0)
  3942. EXBMain.BorderSizePixel = 0
  3943. EXBMain.Position = UDim2.new(0, 0, 0.271929801, 0)
  3944. EXBMain.Size = UDim2.new(0, 100, 0, 35)
  3945. EXBMain.ZIndex = 7
  3946. EXBMain.Font = Enum.Font.SourceSans
  3947. EXBMain.Text = "Functions"
  3948. EXBMain.TextColor3 = Color3.new(0, 0, 0)
  3949. EXBMain.TextSize = 18
  3950.  
  3951. EXBTeleports.Name = "EXBTeleports"
  3952. EXBTeleports.Parent = ExpandFrame
  3953. EXBTeleports.BackgroundColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  3954. EXBTeleports.BackgroundTransparency = 0.5
  3955. EXBTeleports.BorderColor3 = Color3.new(0, 0, 0)
  3956. EXBTeleports.BorderSizePixel = 0
  3957. EXBTeleports.Position = UDim2.new(0, 0, 0.425438583, 0)
  3958. EXBTeleports.Size = UDim2.new(0, 100, 0, 35)
  3959. EXBTeleports.ZIndex = 7
  3960. EXBTeleports.Font = Enum.Font.SourceSans
  3961. EXBTeleports.Text = "Teleports"
  3962. EXBTeleports.TextColor3 = Color3.new(0, 0, 0)
  3963. EXBTeleports.TextSize = 18
  3964.  
  3965. EXBInfo.Name = "EXBInfo"
  3966. EXBInfo.Parent = ExpandFrame
  3967. EXBInfo.BackgroundColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  3968. EXBInfo.BackgroundTransparency = 0.5
  3969. EXBInfo.BorderColor3 = Color3.new(0, 0, 0)
  3970. EXBInfo.BorderSizePixel = 0
  3971. EXBInfo.Position = UDim2.new(0, 0, 0.72807014, 0)
  3972. EXBInfo.Size = UDim2.new(0, 100, 0, 35)
  3973. EXBInfo.ZIndex = 7
  3974. EXBInfo.Font = Enum.Font.SourceSans
  3975. EXBInfo.Text = "Info"
  3976. EXBInfo.TextColor3 = Color3.new(0, 0, 0)
  3977. EXBInfo.TextSize = 18
  3978.  
  3979. EXBSecond.Name = "EXBSecond"
  3980. EXBSecond.Parent = ExpandFrame
  3981. EXBSecond.BackgroundColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  3982. EXBSecond.BackgroundTransparency = 0.5
  3983. EXBSecond.BorderColor3 = Color3.new(0, 0, 0)
  3984. EXBSecond.BorderSizePixel = 0
  3985. EXBSecond.Position = UDim2.new(0, 0, 0.578947306, 0)
  3986. EXBSecond.Size = UDim2.new(0, 100, 0, 35)
  3987. EXBSecond.ZIndex = 7
  3988. EXBSecond.Font = Enum.Font.SourceSans
  3989. EXBSecond.Text = "Functions(2)"
  3990. EXBSecond.TextColor3 = Color3.new(0, 0, 0)
  3991. EXBSecond.TextSize = 18
  3992.  
  3993. closeexpand.Name = "closeexpand"
  3994. closeexpand.Parent = ExpandFrame
  3995. closeexpand.BackgroundColor3 = Color3.new(0, 0, 0)
  3996. closeexpand.BackgroundTransparency = 1
  3997. closeexpand.BorderColor3 = Color3.new(0, 0, 0)
  3998. closeexpand.BorderSizePixel = 0
  3999. closeexpand.Size = UDim2.new(0, 100, 0, 36)
  4000. closeexpand.Font = Enum.Font.SourceSans
  4001. closeexpand.Text = "close"
  4002. closeexpand.TextColor3 = Color3.new(1, 1, 1)
  4003. closeexpand.TextSize = 24
  4004. closeexpand.TextWrapped = true
  4005.  
  4006. Functions.Name = "Functions"
  4007. Functions.Parent = Main
  4008. Functions.BackgroundColor3 = Color3.new(0, 0, 0)
  4009. Functions.BackgroundTransparency = 0.89999997615814
  4010. Functions.BorderColor3 = Color3.new(0, 0, 0)
  4011. Functions.BorderSizePixel = 0
  4012. Functions.Position = UDim2.new(0, 0, 0.219298244, 0)
  4013. Functions.Size = UDim2.new(0, 371, 0, 178)
  4014. Functions.Visible = false
  4015. Functions.ZIndex = 4
  4016.  
  4017. UIGridLayout.Parent = Functions
  4018. UIGridLayout.HorizontalAlignment = Enum.HorizontalAlignment.Center
  4019. UIGridLayout.VerticalAlignment = Enum.VerticalAlignment.Center
  4020. UIGridLayout.CellPadding = UDim2.new(0, 7, 0, 7)
  4021. UIGridLayout.CellSize = UDim2.new(0, 100, 0, 50)
  4022.  
  4023. Fly.Name = "Fly"
  4024. Fly.Parent = Functions
  4025. Fly.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4026. Fly.BorderColor3 = Color3.new(0, 0, 0)
  4027. Fly.BorderSizePixel = 0
  4028. Fly.Size = UDim2.new(0, 200, 0, 50)
  4029. Fly.Font = Enum.Font.SourceSans
  4030. Fly.Text = "Fly"
  4031. Fly.TextColor3 = Color3.new(0, 0, 0)
  4032. Fly.TextSize = 20
  4033.  
  4034. MaxLand.Name = "MaxLand"
  4035. MaxLand.Parent = Functions
  4036. MaxLand.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4037. MaxLand.BorderColor3 = Color3.new(0, 0, 0)
  4038. MaxLand.BorderSizePixel = 0
  4039. MaxLand.Size = UDim2.new(0, 200, 0, 50)
  4040. MaxLand.Font = Enum.Font.SourceSans
  4041. MaxLand.Text = "MaxLand"
  4042. MaxLand.TextColor3 = Color3.new(0, 0, 0)
  4043. MaxLand.TextSize = 20
  4044.  
  4045. AntiBlacklist.Name = "AntiBlacklist"
  4046. AntiBlacklist.Parent = Functions
  4047. AntiBlacklist.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4048. AntiBlacklist.BorderColor3 = Color3.new(0, 0, 0)
  4049. AntiBlacklist.BorderSizePixel = 0
  4050. AntiBlacklist.Size = UDim2.new(0, 200, 0, 50)
  4051. AntiBlacklist.Font = Enum.Font.SourceSans
  4052. AntiBlacklist.Text = "AntiBlacklist"
  4053. AntiBlacklist.TextColor3 = Color3.new(0, 0, 0)
  4054. AntiBlacklist.TextSize = 20
  4055.  
  4056. GodAxe.Name = "GodAxe"
  4057. GodAxe.Parent = Functions
  4058. GodAxe.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4059. GodAxe.BorderColor3 = Color3.new(0, 0, 0)
  4060. GodAxe.BorderSizePixel = 0
  4061. GodAxe.Size = UDim2.new(0, 200, 0, 50)
  4062. GodAxe.Font = Enum.Font.SourceSans
  4063. GodAxe.Text = "GodAxe"
  4064. GodAxe.TextColor3 = Color3.new(0, 0, 0)
  4065. GodAxe.TextSize = 20
  4066.  
  4067. SellTree.Name = "SellTree"
  4068. SellTree.Parent = Functions
  4069. SellTree.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4070. SellTree.BorderColor3 = Color3.new(0, 0, 0)
  4071. SellTree.BorderSizePixel = 0
  4072. SellTree.Size = UDim2.new(0, 200, 0, 50)
  4073. SellTree.Font = Enum.Font.SourceSans
  4074. SellTree.Text = "SellTree(H)"
  4075. SellTree.TextColor3 = Color3.new(0, 0, 0)
  4076. SellTree.TextSize = 20
  4077.  
  4078. SellPlank.Name = "SellPlank"
  4079. SellPlank.Parent = Functions
  4080. SellPlank.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4081. SellPlank.BorderColor3 = Color3.new(0, 0, 0)
  4082. SellPlank.BorderSizePixel = 0
  4083. SellPlank.Size = UDim2.new(0, 200, 0, 50)
  4084. SellPlank.Font = Enum.Font.SourceSans
  4085. SellPlank.Text = "SellPlanks(G)"
  4086. SellPlank.TextColor3 = Color3.new(0, 0, 0)
  4087. SellPlank.TextSize = 20
  4088.  
  4089. WipeBase.Name = "WipeBase"
  4090. WipeBase.Parent = Functions
  4091. WipeBase.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4092. WipeBase.BorderColor3 = Color3.new(0, 0, 0)
  4093. WipeBase.BorderSizePixel = 0
  4094. WipeBase.Size = UDim2.new(0, 200, 0, 50)
  4095. WipeBase.Font = Enum.Font.SourceSans
  4096. WipeBase.Text = "WipeBase"
  4097. WipeBase.TextColor3 = Color3.new(0, 0, 0)
  4098. WipeBase.TextSize = 20
  4099.  
  4100. Fastwalk.Name = "Fastwalk"
  4101. Fastwalk.Parent = Functions
  4102. Fastwalk.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4103. Fastwalk.BorderColor3 = Color3.new(0, 0, 0)
  4104. Fastwalk.BorderSizePixel = 0
  4105. Fastwalk.Size = UDim2.new(0, 200, 0, 50)
  4106. Fastwalk.Font = Enum.Font.SourceSans
  4107. Fastwalk.Text = "Fastwalk(X)"
  4108. Fastwalk.TextColor3 = Color3.new(0, 0, 0)
  4109. Fastwalk.TextSize = 20
  4110.  
  4111. SawmillTp.Name = "SawmillTp"
  4112. SawmillTp.Parent = Functions
  4113. SawmillTp.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4114. SawmillTp.BorderColor3 = Color3.new(0, 0, 0)
  4115. SawmillTp.BorderSizePixel = 0
  4116. SawmillTp.Size = UDim2.new(0, 200, 0, 50)
  4117. SawmillTp.Font = Enum.Font.SourceSans
  4118. SawmillTp.Text = "Wood2Sawmill"
  4119. SawmillTp.TextColor3 = Color3.new(0, 0, 0)
  4120. SawmillTp.TextSize = 18
  4121.  
  4122. Functions2.Name = "Functions2"
  4123. Functions2.Parent = Main
  4124. Functions2.BackgroundColor3 = Color3.new(0, 0, 0)
  4125. Functions2.BackgroundTransparency = 0.89999997615814
  4126. Functions2.BorderColor3 = Color3.new(0, 0, 0)
  4127. Functions2.BorderSizePixel = 0
  4128. Functions2.Position = UDim2.new(0, 0, 0.219298244, 0)
  4129. Functions2.Size = UDim2.new(0, 371, 0, 178)
  4130. Functions2.Visible = false
  4131.  
  4132. UIGridLayout_2.Parent = Functions2
  4133. UIGridLayout_2.HorizontalAlignment = Enum.HorizontalAlignment.Center
  4134. UIGridLayout_2.VerticalAlignment = Enum.VerticalAlignment.Center
  4135. UIGridLayout_2.CellPadding = UDim2.new(0, 7, 0, 7)
  4136. UIGridLayout_2.CellSize = UDim2.new(0, 100, 0, 50)
  4137.  
  4138. PlotTp.Name = "PlotTp"
  4139. PlotTp.Parent = Functions2
  4140. PlotTp.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4141. PlotTp.BorderColor3 = Color3.new(0, 0, 0)
  4142. PlotTp.BorderSizePixel = 0
  4143. PlotTp.Size = UDim2.new(0, 200, 0, 50)
  4144. PlotTp.Font = Enum.Font.SourceSans
  4145. PlotTp.Text = "PlotTp(m)"
  4146. PlotTp.TextColor3 = Color3.new(0, 0, 0)
  4147. PlotTp.TextSize = 24
  4148.  
  4149. Noclip.Name = "Noclip"
  4150. Noclip.Parent = Functions2
  4151. Noclip.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4152. Noclip.BorderColor3 = Color3.new(0, 0, 0)
  4153. Noclip.BorderSizePixel = 0
  4154. Noclip.Size = UDim2.new(0, 200, 0, 50)
  4155. Noclip.Font = Enum.Font.SourceSans
  4156. Noclip.Text = "Noclip(n)"
  4157. Noclip.TextColor3 = Color3.new(0, 0, 0)
  4158. Noclip.TextSize = 24
  4159.  
  4160. WoodTool.Name = "WoodTool"
  4161. WoodTool.Parent = Functions2
  4162. WoodTool.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4163. WoodTool.BorderColor3 = Color3.new(0, 0, 0)
  4164. WoodTool.BorderSizePixel = 0
  4165. WoodTool.Size = UDim2.new(0, 200, 0, 50)
  4166. WoodTool.Font = Enum.Font.SourceSans
  4167. WoodTool.Text = "WoodTool"
  4168. WoodTool.TextColor3 = Color3.new(0, 0, 0)
  4169. WoodTool.TextSize = 24
  4170.  
  4171. InfWires.Name = "InfWires"
  4172. InfWires.Parent = Functions2
  4173. InfWires.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4174. InfWires.BorderColor3 = Color3.new(0, 0, 0)
  4175. InfWires.BorderSizePixel = 0
  4176. InfWires.Size = UDim2.new(0, 200, 0, 50)
  4177. InfWires.Font = Enum.Font.SourceSans
  4178. InfWires.Text = "InfWires"
  4179. InfWires.TextColor3 = Color3.new(0, 0, 0)
  4180. InfWires.TextSize = 24
  4181.  
  4182. BuyItems.Name = "BuyItems"
  4183. BuyItems.Parent = Functions2
  4184. BuyItems.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4185. BuyItems.BorderColor3 = Color3.new(0, 0, 0)
  4186. BuyItems.BorderSizePixel = 0
  4187. BuyItems.Size = UDim2.new(0, 200, 0, 50)
  4188. BuyItems.Font = Enum.Font.SourceSans
  4189. BuyItems.Text = "BuyItems"
  4190. BuyItems.TextColor3 = Color3.new(0, 0, 0)
  4191. BuyItems.TextSize = 24
  4192.  
  4193. BuyBlueprints.Name = "BuyBlueprints"
  4194. BuyBlueprints.Parent = Functions2
  4195. BuyBlueprints.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4196. BuyBlueprints.BorderColor3 = Color3.new(0, 0, 0)
  4197. BuyBlueprints.BorderSizePixel = 0
  4198. BuyBlueprints.Size = UDim2.new(0, 200, 0, 50)
  4199. BuyBlueprints.Font = Enum.Font.SourceSans
  4200. BuyBlueprints.Text = "BuyBlueprints"
  4201. BuyBlueprints.TextColor3 = Color3.new(0, 0, 0)
  4202. BuyBlueprints.TextScaled = true
  4203. BuyBlueprints.TextSize = 18
  4204. BuyBlueprints.TextWrapped = true
  4205.  
  4206. Info.Name = "Info"
  4207. Info.Parent = Main
  4208. Info.BackgroundColor3 = Color3.new(0, 0, 0)
  4209. Info.BackgroundTransparency = 0.89999997615814
  4210. Info.BorderColor3 = Color3.new(0, 0, 0)
  4211. Info.BorderSizePixel = 0
  4212. Info.Position = UDim2.new(0, 0, 0.219298244, 0)
  4213. Info.Size = UDim2.new(0, 371, 0, 178)
  4214. Info.Visible = false
  4215.  
  4216. TextLabel.Parent = Info
  4217. TextLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  4218. TextLabel.BackgroundTransparency = 0.97000002861023
  4219. TextLabel.BorderColor3 = Color3.new(0, 0, 0)
  4220. TextLabel.BorderSizePixel = 0
  4221. TextLabel.Size = UDim2.new(0, 371, 0, 178)
  4222. TextLabel.Font = Enum.Font.SourceSans
  4223. TextLabel.Text = "gui by v1pejames disc:Wtrv6UB For more information visit the Thread"
  4224. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  4225. TextLabel.TextSize = 24
  4226. TextLabel.TextWrapped = true
  4227.  
  4228. Teleports.Name = "Teleports"
  4229. Teleports.Parent = Main
  4230. Teleports.BackgroundColor3 = Color3.new(0, 0, 0)
  4231. Teleports.BackgroundTransparency = 0.89999997615814
  4232. Teleports.BorderColor3 = Color3.new(0, 0, 0)
  4233. Teleports.BorderSizePixel = 0
  4234. Teleports.Position = UDim2.new(0, 0, 0.219298244, 0)
  4235. Teleports.Size = UDim2.new(0, 371, 0, 178)
  4236. Teleports.Visible = false
  4237.  
  4238. UIGridLayout_3.Parent = Teleports
  4239. UIGridLayout_3.HorizontalAlignment = Enum.HorizontalAlignment.Center
  4240. UIGridLayout_3.SortOrder = Enum.SortOrder.LayoutOrder
  4241. UIGridLayout_3.CellPadding = UDim2.new(0, 7, 0, 7)
  4242. UIGridLayout_3.CellSize = UDim2.new(0, 100, 0, 50)
  4243.  
  4244. SpawnPoint.Name = "SpawnPoint"
  4245. SpawnPoint.Parent = Teleports
  4246. SpawnPoint.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4247. SpawnPoint.BorderColor3 = Color3.new(0, 0, 0)
  4248. SpawnPoint.BorderSizePixel = 0
  4249. SpawnPoint.Size = UDim2.new(0, 200, 0, 50)
  4250. SpawnPoint.Font = Enum.Font.SourceSans
  4251. SpawnPoint.Text = "SpawnPoint"
  4252. SpawnPoint.TextColor3 = Color3.new(0, 0, 0)
  4253. SpawnPoint.TextSize = 24
  4254.  
  4255. SkiLodge.Name = "SkiLodge"
  4256. SkiLodge.Parent = Teleports
  4257. SkiLodge.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4258. SkiLodge.BorderColor3 = Color3.new(0, 0, 0)
  4259. SkiLodge.BorderSizePixel = 0
  4260. SkiLodge.Size = UDim2.new(0, 200, 0, 50)
  4261. SkiLodge.Font = Enum.Font.SourceSans
  4262. SkiLodge.Text = "SkiLodge"
  4263. SkiLodge.TextColor3 = Color3.new(0, 0, 0)
  4264. SkiLodge.TextSize = 24
  4265.  
  4266. TheDen.Name = "TheDen"
  4267. TheDen.Parent = Teleports
  4268. TheDen.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4269. TheDen.BorderColor3 = Color3.new(0, 0, 0)
  4270. TheDen.BorderSizePixel = 0
  4271. TheDen.Size = UDim2.new(0, 200, 0, 50)
  4272. TheDen.Font = Enum.Font.SourceSans
  4273. TheDen.Text = "TheDen"
  4274. TheDen.TextColor3 = Color3.new(0, 0, 0)
  4275. TheDen.TextSize = 24
  4276.  
  4277. ShrineOfSight.Name = "ShrineOfSight"
  4278. ShrineOfSight.Parent = Teleports
  4279. ShrineOfSight.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4280. ShrineOfSight.BorderColor3 = Color3.new(0, 0, 0)
  4281. ShrineOfSight.BorderSizePixel = 0
  4282. ShrineOfSight.Size = UDim2.new(0, 200, 0, 50)
  4283. ShrineOfSight.Font = Enum.Font.SourceSans
  4284. ShrineOfSight.Text = "ShrineOfSight"
  4285. ShrineOfSight.TextColor3 = Color3.new(0, 0, 0)
  4286. ShrineOfSight.TextSize = 24
  4287.  
  4288. Bridge.Name = "Bridge"
  4289. Bridge.Parent = Teleports
  4290. Bridge.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4291. Bridge.BorderColor3 = Color3.new(0, 0, 0)
  4292. Bridge.BorderSizePixel = 0
  4293. Bridge.Size = UDim2.new(0, 200, 0, 50)
  4294. Bridge.Font = Enum.Font.SourceSans
  4295. Bridge.Text = "Bridge"
  4296. Bridge.TextColor3 = Color3.new(0, 0, 0)
  4297. Bridge.TextSize = 24
  4298.  
  4299. Dock.Name = "Dock"
  4300. Dock.Parent = Teleports
  4301. Dock.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4302. Dock.BorderColor3 = Color3.new(0, 0, 0)
  4303. Dock.BorderSizePixel = 0
  4304. Dock.Size = UDim2.new(0, 200, 0, 50)
  4305. Dock.Font = Enum.Font.SourceSans
  4306. Dock.Text = "Dock"
  4307. Dock.TextColor3 = Color3.new(0, 0, 0)
  4308. Dock.TextSize = 24
  4309.  
  4310. FrostTreeArea.Name = "FrostTreeArea"
  4311. FrostTreeArea.Parent = Teleports
  4312. FrostTreeArea.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4313. FrostTreeArea.BorderColor3 = Color3.new(0, 0, 0)
  4314. FrostTreeArea.BorderSizePixel = 0
  4315. FrostTreeArea.Size = UDim2.new(0, 200, 0, 50)
  4316. FrostTreeArea.Font = Enum.Font.SourceSans
  4317. FrostTreeArea.Text = "FrostTreeArea"
  4318. FrostTreeArea.TextColor3 = Color3.new(0, 0, 0)
  4319. FrostTreeArea.TextSize = 24
  4320.  
  4321. SnowGlow.Name = "SnowGlow"
  4322. SnowGlow.Parent = Teleports
  4323. SnowGlow.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4324. SnowGlow.BorderColor3 = Color3.new(0, 0, 0)
  4325. SnowGlow.BorderSizePixel = 0
  4326. SnowGlow.Size = UDim2.new(0, 200, 0, 50)
  4327. SnowGlow.Font = Enum.Font.SourceSans
  4328. SnowGlow.Text = "SnowGlow"
  4329. SnowGlow.TextColor3 = Color3.new(0, 0, 0)
  4330. SnowGlow.TextSize = 24
  4331.  
  4332. VolcanoWin.Name = "VolcanoWin"
  4333. VolcanoWin.Parent = Teleports
  4334. VolcanoWin.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4335. VolcanoWin.BorderColor3 = Color3.new(0, 0, 0)
  4336. VolcanoWin.BorderSizePixel = 0
  4337. VolcanoWin.Size = UDim2.new(0, 200, 0, 50)
  4338. VolcanoWin.Font = Enum.Font.SourceSans
  4339. VolcanoWin.Text = "VolcanoWin"
  4340. VolcanoWin.TextColor3 = Color3.new(0, 0, 0)
  4341. VolcanoWin.TextSize = 24
  4342.  
  4343. EndTimes.Name = "EndTimes"
  4344. EndTimes.Parent = Teleports
  4345. EndTimes.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4346. EndTimes.BorderColor3 = Color3.new(0, 0, 0)
  4347. EndTimes.BorderSizePixel = 0
  4348. EndTimes.Size = UDim2.new(0, 200, 0, 50)
  4349. EndTimes.Font = Enum.Font.SourceSans
  4350. EndTimes.Text = "EndTimes"
  4351. EndTimes.TextColor3 = Color3.new(0, 0, 0)
  4352. EndTimes.TextSize = 24
  4353.  
  4354. BobsShack.Name = "BobsShack"
  4355. BobsShack.Parent = Teleports
  4356. BobsShack.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4357. BobsShack.BorderColor3 = Color3.new(0, 0, 0)
  4358. BobsShack.BorderSizePixel = 0
  4359. BobsShack.Size = UDim2.new(0, 200, 0, 50)
  4360. BobsShack.Font = Enum.Font.SourceSans
  4361. BobsShack.Text = "BobsShack"
  4362. BobsShack.TextColor3 = Color3.new(0, 0, 0)
  4363. BobsShack.TextSize = 24
  4364.  
  4365. FineArtsShop.Name = "FineArtsShop"
  4366. FineArtsShop.Parent = Teleports
  4367. FineArtsShop.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4368. FineArtsShop.BorderColor3 = Color3.new(0, 0, 0)
  4369. FineArtsShop.BorderSizePixel = 0
  4370. FineArtsShop.Size = UDim2.new(0, 200, 0, 50)
  4371. FineArtsShop.Font = Enum.Font.SourceSans
  4372. FineArtsShop.Text = "FineArtsShop"
  4373. FineArtsShop.TextColor3 = Color3.new(0, 0, 0)
  4374. FineArtsShop.TextSize = 24
  4375.  
  4376. BoxedCars.Name = "BoxedCars"
  4377. BoxedCars.Parent = Teleports
  4378. BoxedCars.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4379. BoxedCars.BorderColor3 = Color3.new(0, 0, 0)
  4380. BoxedCars.BorderSizePixel = 0
  4381. BoxedCars.Size = UDim2.new(0, 200, 0, 50)
  4382. BoxedCars.Font = Enum.Font.SourceSans
  4383. BoxedCars.Text = "BoxedCars"
  4384. BoxedCars.TextColor3 = Color3.new(0, 0, 0)
  4385. BoxedCars.TextSize = 24
  4386.  
  4387. FancyFurnishings.Name = "FancyFurnishings"
  4388. FancyFurnishings.Parent = Teleports
  4389. FancyFurnishings.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4390. FancyFurnishings.BorderColor3 = Color3.new(0, 0, 0)
  4391. FancyFurnishings.BorderSizePixel = 0
  4392. FancyFurnishings.Size = UDim2.new(0, 200, 0, 50)
  4393. FancyFurnishings.Font = Enum.Font.SourceSans
  4394. FancyFurnishings.Text = "FancyFurnishings"
  4395. FancyFurnishings.TextColor3 = Color3.new(0, 0, 0)
  4396. FancyFurnishings.TextScaled = true
  4397. FancyFurnishings.TextSize = 24
  4398. FancyFurnishings.TextWrapped = true
  4399.  
  4400. PalmIsland.Name = "PalmIsland"
  4401. PalmIsland.Parent = Teleports
  4402. PalmIsland.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4403. PalmIsland.BorderColor3 = Color3.new(0, 0, 0)
  4404. PalmIsland.BorderSizePixel = 0
  4405. PalmIsland.Size = UDim2.new(0, 200, 0, 50)
  4406. PalmIsland.Font = Enum.Font.SourceSans
  4407. PalmIsland.Text = "PalmIsland"
  4408. PalmIsland.TextColor3 = Color3.new(0, 0, 0)
  4409. PalmIsland.TextSize = 24
  4410.  
  4411. Swamp.Name = "Swamp"
  4412. Swamp.Parent = Teleports
  4413. Swamp.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4414. Swamp.BorderColor3 = Color3.new(0, 0, 0)
  4415. Swamp.BorderSizePixel = 0
  4416. Swamp.Size = UDim2.new(0, 200, 0, 50)
  4417. Swamp.Font = Enum.Font.SourceSans
  4418. Swamp.Text = "Swamp"
  4419. Swamp.TextColor3 = Color3.new(0, 0, 0)
  4420. Swamp.TextSize = 24
  4421.  
  4422. Volcano.Name = "Volcano"
  4423. Volcano.Parent = Teleports
  4424. Volcano.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4425. Volcano.BorderColor3 = Color3.new(0, 0, 0)
  4426. Volcano.BorderSizePixel = 0
  4427. Volcano.Size = UDim2.new(0, 200, 0, 50)
  4428. Volcano.Font = Enum.Font.SourceSans
  4429. Volcano.Text = "Volcano"
  4430. Volcano.TextColor3 = Color3.new(0, 0, 0)
  4431. Volcano.TextSize = 24
  4432.  
  4433. Cave.Name = "Cave"
  4434. Cave.Parent = Teleports
  4435. Cave.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4436. Cave.BorderColor3 = Color3.new(0, 0, 0)
  4437. Cave.BorderSizePixel = 0
  4438. Cave.Size = UDim2.new(0, 200, 0, 50)
  4439. Cave.Font = Enum.Font.SourceSans
  4440. Cave.Text = "Cave"
  4441. Cave.TextColor3 = Color3.new(0, 0, 0)
  4442. Cave.TextSize = 24
  4443.  
  4444. LinksLogic.Name = "LinksLogic"
  4445. LinksLogic.Parent = Teleports
  4446. LinksLogic.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4447. LinksLogic.BorderColor3 = Color3.new(0, 0, 0)
  4448. LinksLogic.BorderSizePixel = 0
  4449. LinksLogic.Size = UDim2.new(0, 200, 0, 50)
  4450. LinksLogic.Font = Enum.Font.SourceSans
  4451. LinksLogic.Text = "LinksLogic"
  4452. LinksLogic.TextColor3 = Color3.new(0, 0, 0)
  4453. LinksLogic.TextSize = 24
  4454.  
  4455. WoodRUs.Name = "WoodRUs"
  4456. WoodRUs.Parent = Teleports
  4457. WoodRUs.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4458. WoodRUs.BorderColor3 = Color3.new(0, 0, 0)
  4459. WoodRUs.BorderSizePixel = 0
  4460. WoodRUs.Size = UDim2.new(0, 200, 0, 50)
  4461. WoodRUs.Font = Enum.Font.SourceSans
  4462. WoodRUs.Text = "WoodRUs"
  4463. WoodRUs.TextColor3 = Color3.new(0, 0, 0)
  4464. WoodRUs.TextSize = 24
  4465.  
  4466. LandStore.Name = "LandStore"
  4467. LandStore.Parent = Teleports
  4468. LandStore.BackgroundColor3 = Color3.new(0.384314, 0.2, 0.2)
  4469. LandStore.BorderColor3 = Color3.new(0, 0, 0)
  4470. LandStore.BorderSizePixel = 0
  4471. LandStore.Size = UDim2.new(0, 200, 0, 50)
  4472. LandStore.Font = Enum.Font.SourceSans
  4473. LandStore.Text = "LandStore"
  4474. LandStore.TextColor3 = Color3.new(0, 0, 0)
  4475. LandStore.TextSize = 24
  4476. -- Scripts:
  4477.  
  4478. closeexpand.MouseButton1Down:Connect(function()
  4479. ExpandFrame.Visible = false
  4480. end)
  4481. EXBMain.MouseButton1Down:Connect(function()
  4482. Functions.Visible = true
  4483. Info.Visible = false
  4484. Teleports.Visible = false
  4485. Functions2.Visible = false
  4486. end)
  4487. EXBSecond.MouseButton1Down:Connect(function()
  4488. Functions2.Visible = true
  4489. Functions.Visible = false
  4490. Info.Visible = false
  4491. Teleports.Visible = false
  4492. end)
  4493. EXBTeleports.MouseButton1Down:Connect(function()
  4494. Functions.Visible = false
  4495. Info.Visible = false
  4496. Functions2.Visible = false
  4497. Teleports.Visible = true
  4498. end)
  4499. EXBInfo.MouseButton1Down:Connect(function()
  4500. Teleports.Visible = false
  4501. Functions.Visible = false
  4502. Functions2.Visible = false
  4503. Info.Visible = true
  4504. end)
  4505. CloseB.MouseButton1Down:Connect(function()
  4506. Hi:Destroy()
  4507. end)
  4508. Mouse = game.Players.LocalPlayer:GetMouse()
  4509. Mouse.KeyDown:connect(function(key)
  4510. if key:lower() == "k" then
  4511. if Main.Visible == true then
  4512. Main.Visible = false
  4513. else Main.Visible = true
  4514. end
  4515. end
  4516. end)
  4517.  
  4518. function fly()
  4519. for i,v in pairs(script:GetChildren()) do
  4520. pcall(function() v.Value = "" end)
  4521. game:GetService("Debris"):AddItem(v,.1)
  4522. end
  4523.  
  4524. function weld(p0,p1,c0,c1,par)
  4525. local w = Instance.new("Weld",p0 or par)
  4526. w.Part0 = p0
  4527. w.Part1 = p1
  4528. w.C0 = c0 or CFrame.new()
  4529. w.C1 = c1 or CFrame.new()
  4530. return w
  4531. end
  4532.  
  4533. local motors = {}
  4534.  
  4535. function motor(p0,p1,c0,c1,des,vel,par)
  4536. local w = Instance.new("Motor6D",p0 or par)
  4537. w.Part0 = p0
  4538. w.Part1 = p1
  4539. w.C0 = c0 or CFrame.new()
  4540. w.C1 = c1 or CFrame.new()
  4541. w.MaxVelocity = tonumber(vel) or .05
  4542. w.DesiredAngle = tonumber(des) or 0
  4543. return w
  4544. end
  4545.  
  4546. function lerp(a,b,c)
  4547. return a+(b-a)*c
  4548. end
  4549.  
  4550. function clerp(c1,c2,al)
  4551. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  4552. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  4553. for i,v in pairs(com1) do
  4554. com1[i] = lerp(v,com2[i],al)
  4555. end
  4556. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  4557. end
  4558.  
  4559. function ccomplerp(c1,c2,al)
  4560. local com1 = {c1:components()}
  4561. local com2 = {c2:components()}
  4562. for i,v in pairs(com1) do
  4563. com1[i] = lerp(v,com2[i],al)
  4564. end
  4565. return CFrame.new(unpack(com1))
  4566. end
  4567.  
  4568. function tickwave(time,length,offset)
  4569. return (math.abs((tick()+(offset or 0))%time-time/2)*2-time/2)/time/2*length
  4570. end
  4571.  
  4572. function invcol(c)
  4573. c = c.Color
  4574. return BrickColor.new(Color3.new(1-c.b,1-c.g,1-c.r))
  4575. end
  4576. local oc = oc or function(...) return ... end
  4577. local plr = game.Players.LocalPlayer
  4578. local char = plr.Character
  4579. local tor = char.Torso
  4580. local hum = char.Humanoid
  4581. hum.PlatformStand = false
  4582. pcall(function()
  4583. char.Wings:Destroy()
  4584. end)
  4585. pcall(function()
  4586. char.Angel:Destroy() -- hat
  4587. end)
  4588. local mod = Instance.new("Model",char)
  4589. mod.Name = "Wings"
  4590. local special = {
  4591. [game.Players.LocalPlayer.Name] = {"Black","Bright red",.5,0,false,Color3.new(1,0,0),Color3.new(0,0,0)},
  4592. }
  4593. local topcolor = BrickColor.new("Really black")
  4594. local feacolor = BrickColor.new("Black")
  4595. local ptrans = 0
  4596. local pref = 0
  4597. local fire = true
  4598. local fmcol = Color3.new()
  4599. local fscol = Color3.new()
  4600. local spec = special[plr.Name:lower()]
  4601. if spec then
  4602. 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]
  4603. end
  4604. local part = Instance.new("Part")
  4605. part.FormFactor = "Custom"
  4606. part.Size = Vector3.new(.2,.2,.2)
  4607. part.TopSurface,part.BottomSurface = 0,0
  4608. part.CanCollide = false
  4609. part.BrickColor = BrickColor.new("Black")
  4610. part.Transparency = ptrans
  4611. part.Reflectance = pref
  4612. local ef = Instance.new("Fire",fire and part or nil)
  4613. ef.Size = .15
  4614. ef.Color = BrickColor.new("Black").Color
  4615. ef.SecondaryColor = BrickColor.new("Bright red").Color
  4616. part:BreakJoints()
  4617. function newpart()
  4618. local clone = part:Clone()
  4619. clone.Parent = mod
  4620. clone:BreakJoints()
  4621. return clone
  4622. end
  4623. local feath = newpart()
  4624. feath.BrickColor = feacolor
  4625. feath.Transparency = 0
  4626. Instance.new("SpecialMesh",feath).MeshType = "Sphere"
  4627. function newfeather()
  4628. local clone = feath:Clone()
  4629. clone.Parent = mod
  4630. clone:BreakJoints()
  4631. return clone
  4632. end
  4633. flying = false
  4634. moving = false
  4635. for i,v in pairs(tor:GetChildren()) do
  4636. if v.ClassName:lower():match("body") then
  4637. v:Destroy()
  4638. end
  4639. end
  4640. local ctor = tor:Clone()
  4641. ctor:ClearAllChildren()
  4642. ctor.Name = "cTorso"
  4643. ctor.Transparency = 1
  4644. ctor.CanCollide = false
  4645. ctor.FormFactor = "Custom"
  4646. ctor.Size = Vector3.new(.2,.2,.2)
  4647. ctor.Parent = mod
  4648. weld(tor,ctor)
  4649. local bg = Instance.new("BodyGyro",ctor)
  4650. bg.maxTorque = Vector3.new()
  4651. bg.P = 15000
  4652. bg.D = 1000
  4653. local bv = Instance.new("BodyVelocity",ctor)
  4654. bv.maxForce = Vector3.new()
  4655. bv.P = 15000
  4656. vel = Vector3.new()
  4657. cf = CFrame.new()
  4658. flspd = 0
  4659. keysdown = {}
  4660. keypressed = {}
  4661. ktime = {}
  4662. descendtimer = 0
  4663. jumptime = tick()
  4664. hum.Jumping:connect(function()
  4665. jumptime = tick()
  4666. end)
  4667. cam = workspace.CurrentCamera
  4668. kd = plr:GetMouse().KeyDown:connect(oc(function(key)
  4669. keysdown[key] = true
  4670. keypressed[key] = true
  4671. if key == "q" then
  4672. descendtimer = tick()
  4673. elseif key == " " and not hum.Jump then
  4674. jumptime = tick()
  4675. elseif (key == "a" or key == "d") and ktime[key] and tick()-ktime[key] < .3 and math.abs(reqrotx) < .3 then
  4676. reqrotx = key == "a" and math.pi*2 or -math.pi*2
  4677. end
  4678. ktime[key] = tick()
  4679. end))
  4680.  
  4681. ku = plr:GetMouse().KeyUp:connect(function(key)
  4682. keysdown[key] = false
  4683. if key == " " then
  4684. descendtimer = tick()
  4685. end
  4686. end)
  4687. function mid(a,b,c)
  4688. return math.max(a,math.min(b,c or -a))
  4689. end
  4690. function bn(a)
  4691. return a and 1 or 0
  4692. end
  4693. function gm(tar)
  4694. local m = 0
  4695. for i,v in pairs(tar:GetChildren()) do
  4696. if v:IsA("BasePart") then
  4697. m = m + v:GetMass()
  4698. end
  4699. m = m + gm(v)
  4700. end
  4701. return m
  4702. end
  4703. reqrotx = 0
  4704. local grav = 196.2
  4705. local con
  4706. con = game:GetService("RunService").Stepped:connect(oc(function()
  4707. local obvel = tor.CFrame:vectorToObjectSpace(tor.Velocity)
  4708. local sspd, uspd,fspd = obvel.X,obvel.Y,obvel.Z
  4709. if flying then
  4710. local lfldir = fldir
  4711. fldir = cam.CoordinateFrame:vectorToWorldSpace(Vector3.new(bn(keysdown.d)-bn(keysdown.a),0,bn(keysdown.s)-bn(keysdown.w))).unit
  4712. local lmoving = moving
  4713. moving = fldir.magnitude > .1
  4714. if lmoving and not moving then
  4715. idledir = lfldir*Vector3.new(1,0,1)
  4716. descendtimer = tick()
  4717. end
  4718. local dbomb = fldir.Y < -.6 or (moving and keysdown["1"])
  4719. if moving and keysdown["0"] and lmoving then
  4720. fldir = (Vector3.new(lfldir.X,math.min(fldir.Y,lfldir.Y+.01)-.1,lfldir.Z)+(fldir*Vector3.new(1,0,1))*.05).unit
  4721. end
  4722. local down = tor.CFrame:vectorToWorldSpace(Vector3.new(0,-1,0))
  4723. local descending = (not moving and keysdown["q"] and not keysdown[" "])
  4724. cf = ccomplerp(cf,CFrame.new(tor.Position,tor.Position+(not moving and idledir or fldir)),keysdown["0"] and .02 or .07)
  4725. local gdown = not dbomb and cf.lookVector.Y < -.2 and tor.Velocity.unit.Y < .05
  4726. hum.PlatformStand = true
  4727. bg.maxTorque = Vector3.new(1,1,1)*9e5
  4728. local rotvel = CFrame.new(Vector3.new(),tor.Velocity):toObjectSpace(CFrame.new(Vector3.new(),fldir)).lookVector
  4729. 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)
  4730. reqrotx = reqrotx - reqrotx/10
  4731. bv.maxForce = Vector3.new(1,1,1)*9e4*.5
  4732. local anioff =(bn(keysdown[" "])-bn(keysdown["q"]))/2
  4733. local ani = tickwave(1.5-anioff,1)
  4734. 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)
  4735. vel = moving and cf.lookVector*flspd or Vector3.new()
  4736. 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))
  4737. local hit,ray = workspace:FindPartOnRayWithIgnoreList(Ray.new(tor.Position,Vector3.new(0,-3.5+math.min(0,bv.velocity.y)/30,0)),{char})
  4738. if hit and down.Y < -.85 and tick()-flystart > 1 then
  4739. flying = false
  4740. hum.PlatformStand = false
  4741. tor.Velocity = Vector3.new()
  4742. end
  4743. else
  4744. bg.maxTorque = Vector3.new()
  4745. bv.maxForce = Vector3.new()
  4746. local x,y,z = fspd/160,uspd/700,sspd/900
  4747. if keypressed[" "] and not flying and (tick()-jumptime > .05 and (tick()-jumptime < 3 or hum.Jump)) then
  4748. vel = Vector3.new(0,50,0)
  4749. bv.velocity = vel
  4750. idledir = cam.CoordinateFrame.lookVector*Vector3.new(1,0,1)
  4751. cf = tor.CFrame * CFrame.Angles(-.01,0,0)
  4752. tor.CFrame = cf
  4753. bg.cframe = cf
  4754. flystart = tick()
  4755. flying = true
  4756. end
  4757. end
  4758. keypressed = {}
  4759. end))
  4760. end
  4761. Fly.MouseButton1Down:Connect(function()
  4762. fly()
  4763. end)
  4764. local WayPoints = {
  4765. ["Wood R Us"] = CFrame.new(265, 5, 57),
  4766. ["SpawnPoint"] = CFrame.new(155, 5, 74),
  4767. ["Land Store"] = CFrame.new(258, 5, -99),
  4768. ["Link's Logic"] = CFrame.new(4607, 9, -798),
  4769. ["Cave"] = CFrame.new(3581, -177, 430),
  4770. ["Volcano"] = CFrame.new(-1585, 625, 1140),
  4771. ["Swamp"] = CFrame.new(-1209, 138, -801),
  4772. ["Palm Island"] = CFrame.new(2549, 5, -42),
  4773. ["Fancy Furnishings"] = CFrame.new(491, 13, -1720),
  4774. ["Boxed Cars"] = CFrame.new(509, 5.2, -1463),
  4775. ["Fine Arts Shop"] = CFrame.new(5207, -156, 719),
  4776. ["Bob's Shack"] = CFrame.new(260, 10, -2542),
  4777. ["Dock"] = CFrame.new(1114, 3.2, -197),
  4778. ["Bridge"] = CFrame.new(113, 15, -977),
  4779. ["End Times"] = CFrame.new(113, -204, -951),
  4780. ["Shrine Of Sight"] = CFrame.new(-1600, 205, 919),
  4781. ["The Den"] = CFrame.new(323, 49, 1930),
  4782. ["Volcano Win"] = CFrame.new(-1675, 358, 1476),
  4783. ["Ski Lodge"] = CFrame.new(1244, 66, 2306),
  4784. ["Strange Man"] = CFrame.new(1061, 20, 1131),
  4785. ["Frost Tree"] = CFrame.new(1448.3, 413, 3185.2),
  4786. ["SnowGlow Tree"] = CFrame.new(-1105.9, -6, -894)
  4787. }
  4788.  
  4789. WoodRUs.MouseButton1Down:connect(function()
  4790. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  4791. uTorso.CFrame = WayPoints["Wood R Us"]
  4792. end)
  4793.  
  4794. SpawnPoint.MouseButton1Down:connect(function()
  4795. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  4796. uTorso.CFrame = WayPoints["SpawnPoint"]
  4797. end)
  4798.  
  4799. LandStore.MouseButton1Down:connect(function()
  4800. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  4801. uTorso.CFrame = WayPoints["Land Store"]
  4802. end)
  4803.  
  4804. LinksLogic.MouseButton1Down:connect(function()
  4805. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  4806. uTorso.CFrame = WayPoints["Link's Logic"]
  4807. end)
  4808.  
  4809. Cave.MouseButton1Down:connect(function()
  4810. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  4811. uTorso.CFrame = WayPoints["Cave"]
  4812. end)
  4813.  
  4814. Volcano.MouseButton1Down:connect(function()
  4815. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  4816. uTorso.CFrame = WayPoints["Volcano"]
  4817. end)
  4818.  
  4819. Swamp.MouseButton1Down:connect(function()
  4820. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  4821. uTorso.CFrame = WayPoints["Swamp"]
  4822. end)
  4823.  
  4824. PalmIsland.MouseButton1Down:connect(function()
  4825. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  4826. uTorso.CFrame = WayPoints["Palm Island"]
  4827. end)
  4828.  
  4829. FancyFurnishings.MouseButton1Down:connect(function()
  4830. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  4831. uTorso.CFrame = WayPoints["Fancy Furnishings"]
  4832. end)
  4833.  
  4834. BoxedCars.MouseButton1Down:connect(function()
  4835. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  4836. uTorso.CFrame = WayPoints["Boxed Cars"]
  4837. end)
  4838.  
  4839. FineArtsShop.MouseButton1Down:connect(function()
  4840. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  4841. uTorso.CFrame = WayPoints["Fine Arts Shop"]
  4842. end)
  4843.  
  4844. BobsShack.MouseButton1Down:connect(function()
  4845. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  4846. uTorso.CFrame = WayPoints["Bob's Shack"]
  4847. end)
  4848.  
  4849. Dock.MouseButton1Down:connect(function()
  4850. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  4851. uTorso.CFrame = WayPoints["Dock"]
  4852. end)
  4853.  
  4854. Bridge.MouseButton1Down:connect(function()
  4855. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  4856. uTorso.CFrame = WayPoints["Bridge"]
  4857. end)
  4858.  
  4859. EndTimes.MouseButton1Down:connect(function()
  4860. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  4861. uTorso.CFrame = WayPoints["End Times"]
  4862. end)
  4863.  
  4864. ShrineOfSight.MouseButton1Down:connect(function()
  4865. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  4866. uTorso.CFrame = WayPoints["Shrine Of Sight"]
  4867. end)
  4868.  
  4869. TheDen.MouseButton1Down:connect(function()
  4870. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  4871. uTorso.CFrame = WayPoints["The Den"]
  4872. end)
  4873.  
  4874. VolcanoWin.MouseButton1Down:connect(function()
  4875. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  4876. uTorso.CFrame = WayPoints["Volcano Win"]
  4877. end)
  4878.  
  4879. SkiLodge.MouseButton1Down:connect(function()
  4880. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  4881. uTorso.CFrame = WayPoints["Ski Lodge"]
  4882. end)
  4883.  
  4884.  
  4885.  
  4886. FrostTreeArea.MouseButton1Down:connect(function()
  4887. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  4888. uTorso.CFrame = WayPoints["Frost Tree"]
  4889. end)
  4890.  
  4891. SnowGlow.MouseButton1Down:connect(function()
  4892. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  4893. uTorso.CFrame = WayPoints["SnowGlow Tree"]
  4894. end)
  4895.  
  4896. MaxLand.MouseButton1Down:Connect(function()
  4897. for i, v in pairs(game:GetService("Workspace").Properties:GetChildren()) do
  4898. if v:FindFirstChild("Owner") and v.Owner.Value == game.Players.LocalPlayer then
  4899. base = v
  4900. square = v.OriginSquare
  4901. end
  4902. end
  4903. function makebase(pos)
  4904. local Event = game:GetService("ReplicatedStorage").PropertyPurchasing.ClientExpandedProperty
  4905. Event:FireServer(base, pos)
  4906. end
  4907. spos = square.Position
  4908. makebase(CFrame.new(spos.X + 40, spos.Y, spos.Z))
  4909. makebase(CFrame.new(spos.X - 40, spos.Y, spos.Z))
  4910. makebase(CFrame.new(spos.X, spos.Y, spos.Z + 40))
  4911. makebase(CFrame.new(spos.X, spos.Y, spos.Z - 40))
  4912. makebase(CFrame.new(spos.X + 40, spos.Y, spos.Z + 40))
  4913. makebase(CFrame.new(spos.X + 40, spos.Y, spos.Z - 40))
  4914. makebase(CFrame.new(spos.X - 40, spos.Y, spos.Z + 40))
  4915. makebase(CFrame.new(spos.X - 40, spos.Y, spos.Z - 40))
  4916. makebase(CFrame.new(spos.X + 80, spos.Y, spos.Z))
  4917. makebase(CFrame.new(spos.X - 80, spos.Y, spos.Z))
  4918. makebase(CFrame.new(spos.X, spos.Y, spos.Z + 80))
  4919. makebase(CFrame.new(spos.X, spos.Y, spos.Z - 80))
  4920. --Corners--
  4921. makebase(CFrame.new(spos.X + 80, spos.Y, spos.Z + 80))
  4922. makebase(CFrame.new(spos.X + 80, spos.Y, spos.Z - 80))
  4923. makebase(CFrame.new(spos.X - 80, spos.Y, spos.Z + 80))
  4924. makebase(CFrame.new(spos.X - 80, spos.Y, spos.Z - 80))
  4925. --Corners--
  4926. makebase(CFrame.new(spos.X + 40, spos.Y, spos.Z + 80))
  4927. makebase(CFrame.new(spos.X - 40, spos.Y, spos.Z + 80))
  4928. makebase(CFrame.new(spos.X + 80, spos.Y, spos.Z + 40))
  4929. makebase(CFrame.new(spos.X + 80, spos.Y, spos.Z - 40))
  4930. makebase(CFrame.new(spos.X - 80, spos.Y, spos.Z + 40))
  4931. makebase(CFrame.new(spos.X - 80, spos.Y, spos.Z - 40))
  4932. makebase(CFrame.new(spos.X + 40, spos.Y, spos.Z - 80))
  4933. makebase(CFrame.new(spos.X - 40, spos.Y, spos.Z - 80))
  4934.  
  4935. end)
  4936.  
  4937. InfWires.MouseButton1Down:Connect(function()
  4938. for i,v in next,game.ReplicatedStorage.Purchasables.WireObjects:GetChildren() do
  4939. if v:FindFirstChild("Type") then
  4940. if v.Type.Value == "Wire" then
  4941. v.Type.Parent.OtherInfo.MaxLength.Value = math.huge
  4942. end
  4943. end
  4944. end
  4945. end)
  4946. GodAxe.MouseButton1Down:Connect(function()
  4947. Detect = coroutine.wrap(function()
  4948. Player = game.Players.LocalPlayer
  4949. mouse = Player:GetMouse()
  4950. mouse.Button1Down:connect(function()
  4951. MouseDown = true
  4952. end)
  4953. mouse.Button1Up:connect(function()
  4954. MouseDown = false
  4955. end)
  4956. end)
  4957. Detect()
  4958. Player = game.Players.LocalPlayer
  4959.  
  4960. mouse = Player:GetMouse()
  4961. for i = 1,50 do
  4962. wait(.5)
  4963. game:GetService('RunService').RenderStepped:connect(function()
  4964. if Player.Character:FindFirstChild("Tool") then
  4965. if MouseDown == true then
  4966. if mouse.Target.Name == "WoodSection" then
  4967. targetWood = mouse.Target
  4968. Tool=Player.Character.Tool
  4969. ---FaceVector
  4970. Height = targetWood.CFrame:pointToObjectSpace(mouse.Hit.p).Y + targetWood.Size.Y/2
  4971. 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)
  4972. part,_,p = workspace:FindPartOnRay(ray, Player.Character)
  4973. function fixVector(V)
  4974. return Vector3.new(math.floor(V.X + 0.5), math.floor(V.Y + 0.5), math.floor(V.Z + 0.5))
  4975. end
  4976. local faceVector = fixVector(targetWood.CFrame:vectorToObjectSpace(p))
  4977. if faceVector.Y ~= 0 then
  4978. return
  4979. end
  4980. local lookAtCFrame = CFrame.new(Player.Character.Head.Position, mouse.Hit.p)
  4981. local relativeCFrame = lookAtCFrame:toObjectSpace(targetWood.CFrame * CFrame.Angles(math.pi/2, 0, 0))
  4982. local relativeLookVector = relativeCFrame.lookVector
  4983. local m = relativeLookVector.Y >= 0 and 1 or -1
  4984. if faceVector.X == 1 then
  4985. faceVector = Vector3.new(0, 0, -1) * m
  4986. elseif faceVector.X == -1 then
  4987. faceVector = Vector3.new(0, 0, 1) * m
  4988. elseif faceVector.Z == 1 then
  4989. faceVector = Vector3.new(1, 0, 0) * m
  4990. elseif faceVector.Z == -1 then
  4991. faceVector = Vector3.new(-1, 0, 0) * m
  4992. end
  4993. local cutEvent = targetWood.Parent.CutEvent
  4994. 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})
  4995. end
  4996. end
  4997. end
  4998. end)
  4999. end
  5000. end)
  5001. WipeBase.Text = "GlitchShopItems"
  5002. WipeBase.MouseButton1Down:Connect(function()
  5003. local plr = game.Players.LocalPlayer
  5004. local torso = plr.Character.HumanoidRootPart
  5005.  
  5006. local delaybeweenchecks = 0.5
  5007. local opendistance = 10
  5008.  
  5009. for i, v in pairs(game:GetService("Workspace").Stores.ShopItems:GetChildren()) do
  5010. local A_1 = v
  5011. local Event = game:GetService("ReplicatedStorage").Interaction.ClientIsDragging
  5012. Event:FireServer(A_1)
  5013. end
  5014. end)
  5015. SellTree.MouseButton1Down:Connect(function()
  5016. Mouse = game.Players.LocalPlayer:GetMouse()
  5017.  
  5018. Mouse.KeyDown:connect(function(key)
  5019. if key:lower() == "h" then
  5020. for _, Log in pairs(game.Workspace.LogModels:GetChildren()) do
  5021. if Log.Name:sub(1, 6) == "Loose_" and Log:findFirstChild("Owner") then
  5022. if Log.Owner.Value == game.Players.LocalPlayer then
  5023. for i,v in pairs(Log:GetChildren()) do
  5024. if v.Name=="WoodSection" then
  5025. spawn(function()
  5026. for i=1,10 do
  5027. wait()
  5028. v.CFrame=CFrame.new(Vector3.new(315, -0.296, 85.791))*CFrame.Angles(math.rad(90),0,0)
  5029. end
  5030. end)
  5031. end
  5032. end
  5033. spawn(function()
  5034. for i=1,20 do
  5035. wait()
  5036. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Log)
  5037. end
  5038. end)
  5039. end
  5040. end
  5041. end
  5042. end
  5043. end)
  5044. end)
  5045. SellPlank.MouseButton1Down:Connect(function()
  5046.  
  5047. Mouse = game.Players.LocalPlayer:GetMouse()
  5048. Mouse.KeyDown:Connect(function(key)
  5049. for _, Plank in pairs(service.Workspace.PlayerModels:GetChildren()) do
  5050. if Plank.Name=="Plank" and Plank:findFirstChild("Owner") then
  5051. if Plank.Owner.Value == service.Players.LocalPlayer then
  5052. for i,v in pairs(Plank:GetChildren()) do
  5053. if key:lower() == "g" then
  5054. if Mouse.Target == v then
  5055. v.Name="WoodSection"
  5056. spawn(function()
  5057. for i=1,10 do
  5058. wait()
  5059. v.CFrame=CFrame.new(Vector3.new(315, -0.296, 85.791))*CFrame.Angles(math.rad(90),0,0)
  5060. end
  5061. end)
  5062. end
  5063. end
  5064. end
  5065. spawn(function()
  5066. for i=1,20 do
  5067. wait()
  5068. service.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Plank)
  5069. end
  5070. end)
  5071. end
  5072. end
  5073. end
  5074. end)
  5075. end)
  5076.  
  5077. PlotTp.MouseButton1Down:connect(function()
  5078. Mouse.KeyDown:Connect(function(key)
  5079. if key:lower() =="m" then
  5080. for i,v in pairs(game.Workspace.Properties:GetChildren()) do
  5081. if v.Owner.Value == game.Players.LocalPlayer then
  5082. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.OriginSquare.CFrame + Vector3.new(0,10,0)
  5083. end
  5084. end
  5085. end
  5086. end)
  5087. end)
  5088. AntiBlacklist.MouseButton1Down:Connect(function()
  5089. local plr = game.Players.LocalPlayer
  5090. local cframe
  5091. for i,v in next, workspace:GetDescendants() do
  5092. if v:IsA("SpawnLocation") then
  5093. v.Touched:Connect(function(h)
  5094. if h.Parent == plr.Character and cframe then
  5095. plr.Character:SetPrimaryPartCFrame(cframe)
  5096. end
  5097. end)
  5098. end
  5099. end
  5100.  
  5101. game:GetService("RunService"):BindToRenderStep("NO HACKS",Enum.RenderPriority.Last.Value,function()
  5102. if game.Players.LocalPlayer.Character.PrimaryPart then
  5103. cframe = game.Players.LocalPlayer.Character.PrimaryPart.CFrame
  5104. end
  5105. end)
  5106.  
  5107. for i,v in next, debug.getregistry() do
  5108. if type(v)=='function' and debug.getupvalues(v).lastUpdate then
  5109. debug.setupvalue(v,"lastUpdate",math.huge)
  5110. break
  5111. end
  5112. end
  5113. wait(2)
  5114. for i,v in next, workspace.Effects:GetChildren() do
  5115. if v:IsA("BasePart") and v.Name == "BlacklistWall" then
  5116. v:Destroy()
  5117. end
  5118. end
  5119. end)
  5120. WoodTool.MouseButton1Down:Connect(function()
  5121. -- Instances:
  5122. local ColorPicker = Instance.new("ScreenGui")
  5123. local ChangeColor = Instance.new("Frame")
  5124. local CurrentColor = Instance.new("ImageButton")
  5125. local Picker = Instance.new("ScrollingFrame")
  5126. local Birch = Instance.new("ImageButton")
  5127. local DropShadow = Instance.new("Frame")
  5128. local Grey = Instance.new("ImageButton")
  5129. local DropShadow_2 = Instance.new("Frame")
  5130. local Walnut = Instance.new("ImageButton")
  5131. local DropShadow_3 = Instance.new("Frame")
  5132. local Generic = Instance.new("ImageButton")
  5133. local DropShadow_4 = Instance.new("Frame")
  5134. local Oak = Instance.new("ImageButton")
  5135. local DropShadow_5 = Instance.new("Frame")
  5136. local Pine = Instance.new("ImageButton")
  5137. local DropShadow_6 = Instance.new("Frame")
  5138. local Palm = Instance.new("ImageButton")
  5139. local DropShadow_7 = Instance.new("Frame")
  5140. local Cherry = Instance.new("ImageButton")
  5141. local DropShadow_8 = Instance.new("Frame")
  5142. local Koa = Instance.new("ImageButton")
  5143. local DropShadow_9 = Instance.new("Frame")
  5144. local Volcano = Instance.new("ImageButton")
  5145. local DropShadow_10 = Instance.new("Frame")
  5146. local GreenSwampy = Instance.new("ImageButton")
  5147. local DropShadow_11 = Instance.new("Frame")
  5148. local GoldSwampy = Instance.new("ImageButton")
  5149. local DropShadow_12 = Instance.new("Frame")
  5150. local GenericSpecial = Instance.new("ImageButton")
  5151. local DropShadow_13 = Instance.new("Frame")
  5152. local SnowGlow = Instance.new("ImageButton")
  5153. local DropShadow_14 = Instance.new("Frame")
  5154. local Frost = Instance.new("ImageButton")
  5155. local DropShadow_15 = Instance.new("Frame")
  5156. local CaveCrawler = Instance.new("ImageButton")
  5157. local DropShadow_16 = Instance.new("Frame")
  5158. local LoneCave = Instance.new("ImageButton")
  5159. local DropShadow_17 = Instance.new("Frame")
  5160. local Spooky = Instance.new("ImageButton")
  5161. local DropShadow_18 = Instance.new("Frame")
  5162. local SpookyNeon = Instance.new("ImageButton")
  5163. local DropShadow_19 = Instance.new("Frame")
  5164. --Properties:
  5165. ColorPicker.Name = "ColorPicker"
  5166. ColorPicker.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  5167.  
  5168. ChangeColor.Name = "ChangeColor"
  5169. ChangeColor.Parent = ColorPicker
  5170. ChangeColor.BackgroundColor3 = Color3.new(0.176471, 0.254902, 0.427451)
  5171. ChangeColor.BorderColor3 = Color3.new(0, 0, 0)
  5172. ChangeColor.BorderSizePixel = 2
  5173. ChangeColor.Position = UDim2.new(0, 10, 1, -110)
  5174. ChangeColor.Size = UDim2.new(0, 100, 0, 100)
  5175. ChangeColor.ZIndex = 2
  5176. ColorPicker.Enabled = false
  5177.  
  5178. CurrentColor.Name = "CurrentColor"
  5179. CurrentColor.Parent = ChangeColor
  5180. CurrentColor.BackgroundColor3 = Color3.new(0.176471, 0.254902, 0.427451)
  5181. CurrentColor.BorderColor3 = Color3.new(0, 0, 0)
  5182. CurrentColor.BorderSizePixel = 2
  5183. CurrentColor.Position = UDim2.new(0, 10, 0, 10)
  5184. CurrentColor.Size = UDim2.new(0, 80, 0, 80)
  5185. CurrentColor.ZIndex = 2
  5186. CurrentColor.Image = "rbxassetid://2712547918"
  5187. CurrentColor.ScaleType = Enum.ScaleType.Crop
  5188.  
  5189. Picker.Name = "Picker"
  5190. Picker.Parent = ColorPicker
  5191. Picker.BackgroundColor3 = Color3.new(0.176471, 0.254902, 0.427451)
  5192. Picker.BorderColor3 = Color3.new(0, 0, 0)
  5193. Picker.BorderSizePixel = 2
  5194. Picker.Position = UDim2.new(0, 10, 1, -320)
  5195. Picker.Size = UDim2.new(0, 100, 0, 200)
  5196. Picker.CanvasPosition = Vector2.new(0, 700)
  5197. Picker.CanvasSize = UDim2.new(0, 0, 0, 900)
  5198. Picker.ScrollBarThickness = 7
  5199. Picker.VerticalScrollBarPosition = Enum.VerticalScrollBarPosition.Left
  5200. Picker.Visible = false
  5201.  
  5202. Birch.Name = "Birch"
  5203. Birch.Parent = Picker
  5204. Birch.BackgroundColor3 = Color3.new(1, 1, 1)
  5205. Birch.BorderColor3 = Color3.new(0, 0, 0)
  5206. Birch.Position = UDim2.new(0, 10, 0, 5)
  5207. Birch.Size = UDim2.new(0, 80, 0, 40)
  5208. Birch.ZIndex = 3
  5209. Birch.Image = "rbxassetid://2712547918"
  5210. Birch.ScaleType = Enum.ScaleType.Crop
  5211.  
  5212. DropShadow.Name = "DropShadow"
  5213. DropShadow.Parent = Birch
  5214. DropShadow.BackgroundColor3 = Color3.new(0, 0, 0)
  5215. DropShadow.BorderSizePixel = 0
  5216. DropShadow.Position = UDim2.new(0, 4, 0, 4)
  5217. DropShadow.Size = UDim2.new(1, 0, 1, 0)
  5218. DropShadow.ZIndex = 2
  5219.  
  5220. Grey.Name = "Grey"
  5221. Grey.Parent = Picker
  5222. Grey.BackgroundColor3 = Color3.new(1, 1, 1)
  5223. Grey.BorderColor3 = Color3.new(0, 0, 0)
  5224. Grey.Position = UDim2.new(0, 10, 0, 55)
  5225. Grey.Size = UDim2.new(0, 80, 0, 40)
  5226. Grey.ZIndex = 3
  5227. Grey.Image = "rbxassetid://924320031"
  5228. Grey.ScaleType = Enum.ScaleType.Crop
  5229.  
  5230. DropShadow_2.Name = "DropShadow"
  5231. DropShadow_2.Parent = Grey
  5232. DropShadow_2.BackgroundColor3 = Color3.new(0, 0, 0)
  5233. DropShadow_2.BorderSizePixel = 0
  5234. DropShadow_2.Position = UDim2.new(0, 4, 0, 4)
  5235. DropShadow_2.Size = UDim2.new(1, 0, 1, 0)
  5236. DropShadow_2.ZIndex = 2
  5237.  
  5238. Walnut.Name = "Walnut"
  5239. Walnut.Parent = Picker
  5240. Walnut.BackgroundColor3 = Color3.new(1, 1, 1)
  5241. Walnut.BorderColor3 = Color3.new(0, 0, 0)
  5242. Walnut.Position = UDim2.new(0, 10, 0, 105)
  5243. Walnut.Size = UDim2.new(0, 80, 0, 40)
  5244. Walnut.ZIndex = 3
  5245. Walnut.Image = "rbxassetid://2712559790"
  5246. Walnut.ScaleType = Enum.ScaleType.Crop
  5247.  
  5248. DropShadow_3.Name = "DropShadow"
  5249. DropShadow_3.Parent = Walnut
  5250. DropShadow_3.BackgroundColor3 = Color3.new(0, 0, 0)
  5251. DropShadow_3.BorderSizePixel = 0
  5252. DropShadow_3.Position = UDim2.new(0, 4, 0, 4)
  5253. DropShadow_3.Size = UDim2.new(1, 0, 1, 0)
  5254. DropShadow_3.ZIndex = 2
  5255.  
  5256. Generic.Name = "Generic"
  5257. Generic.Parent = Picker
  5258. Generic.BackgroundColor3 = Color3.new(1, 1, 1)
  5259. Generic.BorderColor3 = Color3.new(0, 0, 0)
  5260. Generic.Position = UDim2.new(0, 10, 0, 155)
  5261. Generic.Size = UDim2.new(0, 80, 0, 40)
  5262. Generic.ZIndex = 3
  5263. Generic.Image = "rbxassetid://2712568624"
  5264. Generic.ScaleType = Enum.ScaleType.Crop
  5265.  
  5266. DropShadow_4.Name = "DropShadow"
  5267. DropShadow_4.Parent = Generic
  5268. DropShadow_4.BackgroundColor3 = Color3.new(0, 0, 0)
  5269. DropShadow_4.BorderSizePixel = 0
  5270. DropShadow_4.Position = UDim2.new(0, 4, 0, 4)
  5271. DropShadow_4.Size = UDim2.new(1, 0, 1, 0)
  5272. DropShadow_4.ZIndex = 2
  5273.  
  5274. Oak.Name = "Oak"
  5275. Oak.Parent = Picker
  5276. Oak.BackgroundColor3 = Color3.new(1, 1, 1)
  5277. Oak.BorderColor3 = Color3.new(0, 0, 0)
  5278. Oak.Position = UDim2.new(0, 10, 0, 205)
  5279. Oak.Size = UDim2.new(0, 80, 0, 40)
  5280. Oak.ZIndex = 3
  5281. Oak.Image = "rbxassetid://2712579185"
  5282. Oak.ScaleType = Enum.ScaleType.Crop
  5283.  
  5284. DropShadow_5.Name = "DropShadow"
  5285. DropShadow_5.Parent = Oak
  5286. DropShadow_5.BackgroundColor3 = Color3.new(0, 0, 0)
  5287. DropShadow_5.BorderSizePixel = 0
  5288. DropShadow_5.Position = UDim2.new(0, 4, 0, 4)
  5289. DropShadow_5.Size = UDim2.new(1, 0, 1, 0)
  5290. DropShadow_5.ZIndex = 2
  5291.  
  5292. Pine.Name = "Pine"
  5293. Pine.Parent = Picker
  5294. Pine.BackgroundColor3 = Color3.new(1, 1, 1)
  5295. Pine.BorderColor3 = Color3.new(0, 0, 0)
  5296. Pine.Position = UDim2.new(0, 10, 0, 255)
  5297. Pine.Size = UDim2.new(0, 80, 0, 40)
  5298. Pine.ZIndex = 3
  5299. Pine.Image = "rbxassetid://2712591183"
  5300. Pine.ScaleType = Enum.ScaleType.Crop
  5301.  
  5302. DropShadow_6.Name = "DropShadow"
  5303. DropShadow_6.Parent = Pine
  5304. DropShadow_6.BackgroundColor3 = Color3.new(0, 0, 0)
  5305. DropShadow_6.BorderSizePixel = 0
  5306. DropShadow_6.Position = UDim2.new(0, 4, 0, 4)
  5307. DropShadow_6.Size = UDim2.new(1, 0, 1, 0)
  5308. DropShadow_6.ZIndex = 2
  5309.  
  5310. Palm.Name = "Palm"
  5311. Palm.Parent = Picker
  5312. Palm.BackgroundColor3 = Color3.new(1, 1, 1)
  5313. Palm.BorderColor3 = Color3.new(0, 0, 0)
  5314. Palm.Position = UDim2.new(0, 10, 0, 305)
  5315. Palm.Size = UDim2.new(0, 80, 0, 40)
  5316. Palm.ZIndex = 3
  5317. Palm.Image = "rbxassetid://2712597395"
  5318. Palm.ScaleType = Enum.ScaleType.Crop
  5319.  
  5320. DropShadow_7.Name = "DropShadow"
  5321. DropShadow_7.Parent = Palm
  5322. DropShadow_7.BackgroundColor3 = Color3.new(0, 0, 0)
  5323. DropShadow_7.BorderSizePixel = 0
  5324. DropShadow_7.Position = UDim2.new(0, 4, 0, 4)
  5325. DropShadow_7.Size = UDim2.new(1, 0, 1, 0)
  5326. DropShadow_7.ZIndex = 2
  5327.  
  5328. Cherry.Name = "Cherry"
  5329. Cherry.Parent = Picker
  5330. Cherry.BackgroundColor3 = Color3.new(1, 1, 1)
  5331. Cherry.BorderColor3 = Color3.new(0, 0, 0)
  5332. Cherry.Position = UDim2.new(0, 10, 0, 355)
  5333. Cherry.Size = UDim2.new(0, 80, 0, 40)
  5334. Cherry.ZIndex = 3
  5335. Cherry.Image = "rbxassetid://2712608599"
  5336. Cherry.ScaleType = Enum.ScaleType.Crop
  5337.  
  5338. DropShadow_8.Name = "DropShadow"
  5339. DropShadow_8.Parent = Cherry
  5340. DropShadow_8.BackgroundColor3 = Color3.new(0, 0, 0)
  5341. DropShadow_8.BorderSizePixel = 0
  5342. DropShadow_8.Position = UDim2.new(0, 4, 0, 4)
  5343. DropShadow_8.Size = UDim2.new(1, 0, 1, 0)
  5344. DropShadow_8.ZIndex = 2
  5345.  
  5346. Koa.Name = "Koa"
  5347. Koa.Parent = Picker
  5348. Koa.BackgroundColor3 = Color3.new(1, 1, 1)
  5349. Koa.BorderColor3 = Color3.new(0, 0, 0)
  5350. Koa.Position = UDim2.new(0, 10, 0, 355)
  5351. Koa.Size = UDim2.new(0, 80, 0, 40)
  5352. Koa.ZIndex = 3
  5353. Koa.Image = "rbxassetid://2712612798"
  5354. Koa.ScaleType = Enum.ScaleType.Crop
  5355.  
  5356. DropShadow_9.Name = "DropShadow"
  5357. DropShadow_9.Parent = Koa
  5358. DropShadow_9.BackgroundColor3 = Color3.new(0, 0, 0)
  5359. DropShadow_9.BorderSizePixel = 0
  5360. DropShadow_9.Position = UDim2.new(0, 4, 0, 4)
  5361. DropShadow_9.Size = UDim2.new(1, 0, 1, 0)
  5362. DropShadow_9.ZIndex = 2
  5363.  
  5364. Volcano.Name = "Volcano"
  5365. Volcano.Parent = Picker
  5366. Volcano.BackgroundColor3 = Color3.new(1, 1, 1)
  5367. Volcano.BorderColor3 = Color3.new(0, 0, 0)
  5368. Volcano.Position = UDim2.new(0, 10, 0, 405)
  5369. Volcano.Size = UDim2.new(0, 80, 0, 40)
  5370. Volcano.ZIndex = 3
  5371. Volcano.Image = "rbxassetid://2712618609"
  5372. Volcano.ScaleType = Enum.ScaleType.Crop
  5373.  
  5374. DropShadow_10.Name = "DropShadow"
  5375. DropShadow_10.Parent = Volcano
  5376. DropShadow_10.BackgroundColor3 = Color3.new(0, 0, 0)
  5377. DropShadow_10.BorderSizePixel = 0
  5378. DropShadow_10.Position = UDim2.new(0, 4, 0, 4)
  5379. DropShadow_10.Size = UDim2.new(1, 0, 1, 0)
  5380. DropShadow_10.ZIndex = 2
  5381.  
  5382. GreenSwampy.Name = "GreenSwampy"
  5383. GreenSwampy.Parent = Picker
  5384. GreenSwampy.BackgroundColor3 = Color3.new(1, 1, 1)
  5385. GreenSwampy.BorderColor3 = Color3.new(0, 0, 0)
  5386. GreenSwampy.Position = UDim2.new(0, 10, 0, 455)
  5387. GreenSwampy.Size = UDim2.new(0, 80, 0, 40)
  5388. GreenSwampy.ZIndex = 3
  5389. GreenSwampy.Image = "rbxassetid://2712623896"
  5390. GreenSwampy.ScaleType = Enum.ScaleType.Crop
  5391.  
  5392. DropShadow_11.Name = "DropShadow"
  5393. DropShadow_11.Parent = GreenSwampy
  5394. DropShadow_11.BackgroundColor3 = Color3.new(0, 0, 0)
  5395. DropShadow_11.BorderSizePixel = 0
  5396. DropShadow_11.Position = UDim2.new(0, 4, 0, 4)
  5397. DropShadow_11.Size = UDim2.new(1, 0, 1, 0)
  5398. DropShadow_11.ZIndex = 2
  5399.  
  5400. GoldSwampy.Name = "GoldSwampy"
  5401. GoldSwampy.Parent = Picker
  5402. GoldSwampy.BackgroundColor3 = Color3.new(1, 1, 1)
  5403. GoldSwampy.BorderColor3 = Color3.new(0, 0, 0)
  5404. GoldSwampy.Position = UDim2.new(0, 10, 0, 505)
  5405. GoldSwampy.Size = UDim2.new(0, 80, 0, 40)
  5406. GoldSwampy.ZIndex = 3
  5407. GoldSwampy.Image = "rbxassetid://2712631457"
  5408. GoldSwampy.ScaleType = Enum.ScaleType.Crop
  5409.  
  5410. DropShadow_12.Name = "DropShadow"
  5411. DropShadow_12.Parent = GoldSwampy
  5412. DropShadow_12.BackgroundColor3 = Color3.new(0, 0, 0)
  5413. DropShadow_12.BorderSizePixel = 0
  5414. DropShadow_12.Position = UDim2.new(0, 4, 0, 4)
  5415. DropShadow_12.Size = UDim2.new(1, 0, 1, 0)
  5416. DropShadow_12.ZIndex = 2
  5417.  
  5418. GenericSpecial.Name = "GenericSpecial"
  5419. GenericSpecial.Parent = Picker
  5420. GenericSpecial.BackgroundColor3 = Color3.new(1, 1, 1)
  5421. GenericSpecial.BorderColor3 = Color3.new(0, 0, 0)
  5422. GenericSpecial.Position = UDim2.new(0, 10, 0, 555)
  5423. GenericSpecial.Size = UDim2.new(0, 80, 0, 40)
  5424. GenericSpecial.ZIndex = 3
  5425. GenericSpecial.Image = "rbxassetid://2712639396"
  5426. GenericSpecial.ScaleType = Enum.ScaleType.Crop
  5427.  
  5428. DropShadow_13.Name = "DropShadow"
  5429. DropShadow_13.Parent = GenericSpecial
  5430. DropShadow_13.BackgroundColor3 = Color3.new(0, 0, 0)
  5431. DropShadow_13.BorderSizePixel = 0
  5432. DropShadow_13.Position = UDim2.new(0, 4, 0, 4)
  5433. DropShadow_13.Size = UDim2.new(1, 0, 1, 0)
  5434. DropShadow_13.ZIndex = 2
  5435.  
  5436. SnowGlow.Name = "SnowGlow"
  5437. SnowGlow.Parent = Picker
  5438. SnowGlow.BackgroundColor3 = Color3.new(1, 1, 1)
  5439. SnowGlow.BorderColor3 = Color3.new(0, 0, 0)
  5440. SnowGlow.Position = UDim2.new(0, 10, 0, 605)
  5441. SnowGlow.Size = UDim2.new(0, 80, 0, 40)
  5442. SnowGlow.ZIndex = 3
  5443. SnowGlow.Image = "rbxassetid://2712651454"
  5444. SnowGlow.ScaleType = Enum.ScaleType.Crop
  5445.  
  5446. DropShadow_14.Name = "DropShadow"
  5447. DropShadow_14.Parent = SnowGlow
  5448. DropShadow_14.BackgroundColor3 = Color3.new(0, 0, 0)
  5449. DropShadow_14.BorderSizePixel = 0
  5450. DropShadow_14.Position = UDim2.new(0, 4, 0, 4)
  5451. DropShadow_14.Size = UDim2.new(1, 0, 1, 0)
  5452. DropShadow_14.ZIndex = 2
  5453.  
  5454. Frost.Name = "Frost"
  5455. Frost.Parent = Picker
  5456. Frost.BackgroundColor3 = Color3.new(1, 1, 1)
  5457. Frost.BorderColor3 = Color3.new(0, 0, 0)
  5458. Frost.Position = UDim2.new(0, 10, 0, 655)
  5459. Frost.Size = UDim2.new(0, 80, 0, 40)
  5460. Frost.ZIndex = 3
  5461. Frost.Image = "rbxassetid://2712667804"
  5462. Frost.ScaleType = Enum.ScaleType.Crop
  5463.  
  5464. DropShadow_15.Name = "DropShadow"
  5465. DropShadow_15.Parent = Frost
  5466. DropShadow_15.BackgroundColor3 = Color3.new(0, 0, 0)
  5467. DropShadow_15.BorderSizePixel = 0
  5468. DropShadow_15.Position = UDim2.new(0, 4, 0, 4)
  5469. DropShadow_15.Size = UDim2.new(1, 0, 1, 0)
  5470. DropShadow_15.ZIndex = 2
  5471.  
  5472. CaveCrawler.Name = "CaveCrawler"
  5473. CaveCrawler.Parent = Picker
  5474. CaveCrawler.BackgroundColor3 = Color3.new(1, 1, 1)
  5475. CaveCrawler.BorderColor3 = Color3.new(0, 0, 0)
  5476. CaveCrawler.Position = UDim2.new(0, 10, 0, 705)
  5477. CaveCrawler.Size = UDim2.new(0, 80, 0, 40)
  5478. CaveCrawler.ZIndex = 3
  5479. CaveCrawler.Image = "rbxassetid://2712673980"
  5480. CaveCrawler.ScaleType = Enum.ScaleType.Crop
  5481.  
  5482. DropShadow_16.Name = "DropShadow"
  5483. DropShadow_16.Parent = CaveCrawler
  5484. DropShadow_16.BackgroundColor3 = Color3.new(0, 0, 0)
  5485. DropShadow_16.BorderSizePixel = 0
  5486. DropShadow_16.Position = UDim2.new(0, 4, 0, 4)
  5487. DropShadow_16.Size = UDim2.new(1, 0, 1, 0)
  5488. DropShadow_16.ZIndex = 2
  5489.  
  5490. LoneCave.Name = "LoneCave"
  5491. LoneCave.Parent = Picker
  5492. LoneCave.BackgroundColor3 = Color3.new(1, 1, 1)
  5493. LoneCave.BorderColor3 = Color3.new(0, 0, 0)
  5494. LoneCave.Position = UDim2.new(0, 10, 0, 755)
  5495. LoneCave.Size = UDim2.new(0, 80, 0, 40)
  5496. LoneCave.ZIndex = 3
  5497. LoneCave.Image = "rbxassetid://2712693147"
  5498. LoneCave.ScaleType = Enum.ScaleType.Crop
  5499.  
  5500. DropShadow_17.Name = "DropShadow"
  5501. DropShadow_17.Parent = LoneCave
  5502. DropShadow_17.BackgroundColor3 = Color3.new(0, 0, 0)
  5503. DropShadow_17.BorderSizePixel = 0
  5504. DropShadow_17.Position = UDim2.new(0, 4, 0, 4)
  5505. DropShadow_17.Size = UDim2.new(1, 0, 1, 0)
  5506. DropShadow_17.ZIndex = 2
  5507.  
  5508. Spooky.Name = "Spooky"
  5509. Spooky.Parent = Picker
  5510. Spooky.BackgroundColor3 = Color3.new(1, 1, 1)
  5511. Spooky.BorderColor3 = Color3.new(0, 0, 0)
  5512. Spooky.Position = UDim2.new(0, 10, 0, 805)
  5513. Spooky.Size = UDim2.new(0, 80, 0, 40)
  5514. Spooky.ZIndex = 3
  5515. Spooky.Image = "rbxassetid://2712696822"
  5516. Spooky.ScaleType = Enum.ScaleType.Crop
  5517.  
  5518. DropShadow_18.Name = "DropShadow"
  5519. DropShadow_18.Parent = Spooky
  5520. DropShadow_18.BackgroundColor3 = Color3.new(0, 0, 0)
  5521. DropShadow_18.BorderSizePixel = 0
  5522. DropShadow_18.Position = UDim2.new(0, 4, 0, 4)
  5523. DropShadow_18.Size = UDim2.new(1, 0, 1, 0)
  5524. DropShadow_18.ZIndex = 2
  5525.  
  5526. SpookyNeon.Name = "SpookyNeon"
  5527. SpookyNeon.Parent = Picker
  5528. SpookyNeon.BackgroundColor3 = Color3.new(1, 1, 1)
  5529. SpookyNeon.BorderColor3 = Color3.new(0, 0, 0)
  5530. SpookyNeon.Position = UDim2.new(0, 10, 0, 855)
  5531. SpookyNeon.Size = UDim2.new(0, 80, 0, 40)
  5532. SpookyNeon.ZIndex = 3
  5533. SpookyNeon.Image = "rbxassetid://2712700047"
  5534. SpookyNeon.ScaleType = Enum.ScaleType.Crop
  5535.  
  5536. DropShadow_19.Name = "DropShadow"
  5537. DropShadow_19.Parent = SpookyNeon
  5538. DropShadow_19.BackgroundColor3 = Color3.new(0, 0, 0)
  5539. DropShadow_19.BorderSizePixel = 0
  5540. DropShadow_19.Position = UDim2.new(0, 4, 0, 4)
  5541. DropShadow_19.Size = UDim2.new(1, 0, 1, 0)
  5542. DropShadow_19.ZIndex = 2
  5543. -- Scripts:
  5544. woodtype = "Birch"
  5545.  
  5546. local tool = Instance.new("Tool", game.Players.LocalPlayer.Backpack)
  5547. tool.RequiresHandle = false
  5548. --tool.RobloxLocked = true
  5549. tool.Name = "Paint"
  5550. tool.ToolTip = "Changes A Stucture's Wood Type"
  5551. tool.Equipped:connect(function(Mouse)
  5552. ColorPicker.Enabled = true
  5553. Mouse.Button1Down:connect(function()
  5554. if Mouse.Target.Parent:FindFirstChild("Type") or Mouse.Target.Parent:FindFirstChild("BlueprintWoodClass") then
  5555. local Cframe
  5556. if Mouse.Target.Parent:FindFirstChild("MainCFrame") then
  5557. Cframe = Mouse.Target.Parent.MainCFrame.Value
  5558. else
  5559. Cframe = Mouse.Target.Parent.PrimaryPart.CFrame
  5560. end
  5561. if Mouse.Target.Parent ~= nil then
  5562. game.ReplicatedStorage.PlaceStructure.ClientPlacedStructure:FireServer(Mouse.Target.Parent.ItemName.Value, Cframe, game.Players.LocalPlayer, woodtype, Mouse.Target.Parent, false)
  5563. end
  5564. else
  5565. --do nothing
  5566. end
  5567. end)
  5568. end)
  5569.  
  5570. tool.Unequipped:connect(function(mouse)
  5571. ColorPicker.Enabled = false
  5572. end)
  5573.  
  5574.  
  5575. Birch.MouseButton1Click:Connect(function()
  5576. CurrentColor.Image = Birch.Image
  5577. woodtype = "Birch"
  5578. end)
  5579.  
  5580. Grey.MouseButton1Click:Connect(function()
  5581. CurrentColor.Image = Grey.Image
  5582. woodtype = nil
  5583. end)
  5584.  
  5585. Walnut.MouseButton1Click:Connect(function()
  5586. CurrentColor.Image = Walnut.Image
  5587. woodtype = "Walnut"
  5588. end)
  5589.  
  5590. Generic.MouseButton1Click:Connect(function()
  5591. CurrentColor.Image = Generic.Image
  5592. woodtype = "Generic"
  5593. end)
  5594.  
  5595. Oak.MouseButton1Click:Connect(function()
  5596. CurrentColor.Image = Oak.Image
  5597. woodtype = "Oak"
  5598. end)
  5599.  
  5600. Pine.MouseButton1Click:Connect(function()
  5601. CurrentColor.Image = Pine.Image
  5602. woodtype = "Pine"
  5603. end)
  5604.  
  5605. Palm.MouseButton1Click:Connect(function()
  5606. CurrentColor.Image = Palm.Image
  5607. woodtype = "Palm"
  5608. end)
  5609.  
  5610. Koa.MouseButton1Click:Connect(function()
  5611. CurrentColor.Image = Koa.Image
  5612. woodtype = "Koa"
  5613. end)
  5614.  
  5615. Volcano.MouseButton1Click:Connect(function()
  5616. CurrentColor.Image = Volcano.Image
  5617. woodtype = "Volcano"
  5618. end)
  5619.  
  5620. GreenSwampy.MouseButton1Click:Connect(function()
  5621. CurrentColor.Image = GreenSwampy.Image
  5622. woodtype = "GreenSwampy"
  5623. end)
  5624.  
  5625. GoldSwampy.MouseButton1Click:Connect(function()
  5626. CurrentColor.Image = GoldSwampy.Image
  5627. woodtype = "GoldSwampy"
  5628. end)
  5629.  
  5630. GenericSpecial.MouseButton1Click:Connect(function()
  5631. CurrentColor.Image = GenericSpecial.Image
  5632. woodtype = "GenericSpecial"
  5633. end)
  5634.  
  5635. SnowGlow.MouseButton1Click:Connect(function()
  5636. CurrentColor.Image = SnowGlow.Image
  5637. woodtype = "SnowGlow"
  5638. end)
  5639.  
  5640. Frost.MouseButton1Click:Connect(function()
  5641. CurrentColor.Image = Frost.Image
  5642. woodtype = "Frost"
  5643. end)
  5644.  
  5645. CaveCrawler.MouseButton1Click:Connect(function()
  5646. CurrentColor.Image = CaveCrawler.Image
  5647. woodtype = "CaveCrawler"
  5648. end)
  5649.  
  5650. LoneCave.MouseButton1Click:Connect(function()
  5651. CurrentColor.Image = LoneCave.Image
  5652. woodtype = "LoneCave"
  5653. end)
  5654.  
  5655. Spooky.MouseButton1Click:Connect(function()
  5656. CurrentColor.Image = Spooky.Image
  5657. woodtype = "Spooky"
  5658. end)
  5659.  
  5660. SpookyNeon.MouseButton1Click:Connect(function()
  5661. CurrentColor.Image = SpookyNeon.Image
  5662. woodtype = "SpookyNeon"
  5663. end)
  5664.  
  5665. --bring up menu
  5666. CurrentColor.MouseButton1Click:Connect(function()
  5667. if Picker.Visible == false then
  5668. Picker.Visible = true
  5669. else
  5670. Picker.Visible = false
  5671. end
  5672. end)
  5673.  
  5674. end)
  5675.  
  5676. Fastwalk.MouseButton1Down:Connect(function()
  5677. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  5678. down = false
  5679. velocity = Instance.new("BodyVelocity")
  5680. velocity.maxForce = Vector3.new(100000, 0, 100000)
  5681. local speed = 35
  5682. gyro = Instance.new("BodyGyro")
  5683. gyro.maxTorque = Vector3.new(100000, 0, 100000)
  5684.  
  5685. local hum = game.Players.LocalPlayer.Character.Humanoid
  5686.  
  5687. function onButton1Down(mouse)
  5688. down = true
  5689. velocity.Parent = game.Players.LocalPlayer.Character.Torso
  5690. velocity.velocity = (hum.MoveDirection) * speed
  5691. gyro.Parent = game.Players.LocalPlayer.Character.Torso
  5692. while down do
  5693. if not down then break end
  5694. velocity.velocity = (hum.MoveDirection) * speed
  5695. local refpos = gyro.Parent.Position + (gyro.Parent.Position - workspace.CurrentCamera.CoordinateFrame.p).unit * 5
  5696. gyro.cframe = CFrame.new(gyro.Parent.Position, Vector3.new(refpos.x, gyro.Parent.Position.y, refpos.z))
  5697. wait(0.1)
  5698. end
  5699. end
  5700.  
  5701. function onButton1Up(mouse)
  5702. velocity.Parent = nil
  5703. gyro.Parent = nil
  5704. down = false
  5705. end
  5706.  
  5707. function onSelected(mouse)
  5708. mouse.KeyDown:connect(function(k) if k:lower()=="x"then onButton1Down(mouse)end end)
  5709. mouse.KeyUp:connect(function(k) if k:lower()=="x"then onButton1Up(mouse)end end)
  5710. end
  5711.  
  5712. onSelected(game.Players.LocalPlayer:GetMouse())
  5713. end)
  5714. BuyItems.Text = "CopyBase"
  5715. ExpandButton.MouseButton1Down:Connect(function()
  5716. ExpandFrame.Visible = true
  5717. ExpandButton.Visible = true
  5718. end)
  5719. SawmillTp.MouseButton1Down:Connect(function()
  5720. SawmillC = false
  5721. Mouse = game.Players.LocalPlayer:GetMouse()
  5722. _G.MAIN=Instance.new("ScreenGui",game.Players.LocalPlayer.PlayerGui)
  5723. Instruction = Instance.new("TextLabel",_G.MAIN)
  5724. Instruction.Position = UDim2.new(0,200,0,400)
  5725. Instruction.Size = UDim2.new(0,250,0,50)
  5726. Instruction.TextWrapped = true
  5727. Instruction.TextScaled = true
  5728. Instruction.Text = "'Q' to select a tree, Press P to select a sawmill!(Credits to austin k) Select Tree first also works with any item as long as you select the sawmill after selecting the item."
  5729. Instruction.Active = true
  5730. Instruction.Draggable = true
  5731. Instruction.ZIndex = 2
  5732. Exit = Instance.new("TextButton",Instruction)
  5733. Exit.Position=UDim2.new(1,0,0,0)
  5734. Exit.Size = UDim2.new(0,30,0,30)
  5735. Exit.Text = "Exit"
  5736. Exit.MouseButton1Click:connect(function()
  5737. _G.MAIN:Destroy()
  5738. end)
  5739. Mouse.KeyDown:connect(function(key)
  5740. if key:lower() == "q" then
  5741. Treee = Mouse.Target
  5742. end
  5743. end)
  5744. Mouse.KeyDown:connect(function(key)
  5745. if key:lower() == "p" then
  5746. if Mouse.Target.Parent:FindFirstChild("BlockageAlert") then
  5747. Sawmill = Mouse.Target.Parent
  5748. else
  5749. Sawmill=Mouse.Target.Parent.Parent
  5750. end
  5751. if Sawmill:FindFirstChild("BlockageAlert") and Sawmill:FindFirstChild("Owner") then
  5752. SawmillC = true
  5753. else
  5754. SawmillC = false
  5755. print"Something went wrong while setting the sawmill!"
  5756. end
  5757. if Treee ~= nil then
  5758. Mod(Treee)
  5759. else
  5760. print("Select tree with 'Q'!")
  5761. end
  5762. end
  5763. end)
  5764.  
  5765. function Mod(SelectedPart)
  5766. if SawmillC ~= true then
  5767. print'Set the sawmill with "P"!'
  5768. return
  5769. end
  5770. if SelectedPart.Parent:FindFirstChild("TreeClass") and SelectedPart.Parent:FindFirstChild("Owner") then
  5771. print("Tree: "..SelectedPart.Parent.TreeClass.Value)
  5772. Tree = SelectedPart.Parent
  5773. Tree.PrimaryPart = SelectedPart
  5774. game.ReplicatedStorage.Interaction.Verify:FireServer('Item owned by player',Tree)
  5775. Tree:SetPrimaryPartCFrame(Sawmill.Particles.CFrame)
  5776. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Tree)
  5777. end
  5778. end
  5779. end)
  5780. Noclip.MouseButton1Down:Connect(function()
  5781. local noclipplayer = game:GetService("Players").LocalPlayer
  5782. local noclipmouse = noclipplayer:GetMouse()
  5783.  
  5784. local donoclip = false
  5785. local noclip = false
  5786.  
  5787. function b_noclip(key)
  5788. if (key == "b") then
  5789. if noclip == false then
  5790. donoclip = true
  5791.  
  5792. noclip = true
  5793. elseif noclip == true then
  5794. donoclip = false
  5795.  
  5796. noclip = false
  5797. end
  5798. end
  5799. end
  5800.  
  5801. noclipmouse.KeyDown:connect(b_noclip)
  5802.  
  5803. game:GetService("Players").LocalPlayer.Character.Head.Touched:connect(function(obj)
  5804. if obj ~= workspace.Terrain then
  5805. if donoclip == true then
  5806. obj.CanCollide = false
  5807. else
  5808. obj.CanCollide = true
  5809. end
  5810. end
  5811. end)
  5812. end)
  5813.  
  5814. local CopyBase = Instance.new("TextBox")
  5815. CopyBase.Name = "CopyBase"
  5816. CopyBase.Parent = Menu
  5817. CopyBase.BackgroundColor3 = Color3.new(1, 1, 0.498039)
  5818. CopyBase.BorderSizePixel = 3
  5819. CopyBase.Position = UDim2.new(0.0424746051, 0, 0.40607211, 0)
  5820. CopyBase.Size = UDim2.new(0, 200, 0, 50)
  5821. CopyBase.Font = Enum.Font.SourceSans
  5822. CopyBase.PlaceholderColor3 = Color3.new(0.454902, 0.454902, 0.454902)
  5823. CopyBase.PlaceholderText = "Type PlayersNameHere"
  5824. CopyBase.Text = ""
  5825. CopyBase.TextColor3 = Color3.new(0, 0, 0)
  5826. CopyBase.TextSize = 14
  5827. CopyBase.Visible = false
  5828. CopyBase.Draggable = true
  5829.  
  5830. BuyItems.MouseButton1Down:Connect(function()
  5831. CopyBase.Visible = true
  5832. plr = CopyBase.Text
  5833. pmds = game.Workspace.PlayerModels
  5834. PlaceR = game.ReplicatedStorage.PlaceStructure.ClientPlacedBlueprint
  5835. PlaceS = game.ReplicatedStorage.PlaceStructure.ClientPlacedStructure
  5836. Property = nil
  5837. MProperty = nil
  5838.  
  5839. for i, v in pairs(game.Workspace.Properties:GetChildren()) do
  5840. if v:FindFirstChild("Owner") and v.Owner.Value ~= nil and v.Owner.Value == game.Players[plr] then
  5841. Property = v.OriginSquare
  5842. end
  5843. end
  5844.  
  5845. for i, v in pairs(game.Workspace.Properties:GetChildren()) do
  5846. if v:FindFirstChild("Owner") and v.Owner.Value ~= nil and v.Owner.Value == game.Players.LocalPlayer then
  5847. MProperty = v.OriginSquare
  5848. end
  5849. end
  5850.  
  5851.  
  5852. function copypart(mod)
  5853. if mod:FindFirstChild("MainCFrame") then
  5854. Cframe = mod.MainCFrame.Value
  5855. else
  5856. Cframe = mod.PrimaryPart.CFrame
  5857. end
  5858. X = Property.Position.X - Cframe.X
  5859. Y = Property.Position.Y - Cframe.Y
  5860. Z = Property.Position.Z - Cframe.Z
  5861. PlaceR:FireServer(mod.ItemName.Value, (CFrame.new(MProperty.Position.X, MProperty.Position.Y, MProperty.Position.Z)*CFrame.Angles(Cframe:toEulerAnglesXYZ())) - Vector3.new(X, Y, Z), game.Players.LocalPlayer)
  5862. wait()
  5863. end
  5864.  
  5865.  
  5866.  
  5867. for i, v in pairs(pmds:GetChildren()) do
  5868. if v:FindFirstChild("Owner") and v.Owner.Value ~= nil and v.Owner.Value == game.Players[plr] and v:FindFirstChild("ItemName") and v:FindFirstChild("Type") and (v.PrimaryPart ~= nil or v:FindFirstChild("MainCFrame")) then
  5869. copypart(v)
  5870. end
  5871. end
  5872. wait(.1)
  5873. if CopyBase.Text ~= nil then
  5874. CopyBase.Visible = false
  5875. end
  5876. end)
  5877. BuyBlueprints.Text = "WipeBase(BP)"
  5878.  
  5879.  
  5880. BuyBlueprints.MouseButton1Down:Connect(function()
  5881.  
  5882. plr = game.Players.LocalPlayer.Name
  5883. pmds = game.Workspace.PlayerModels
  5884. PlaceR = game.ReplicatedStorage.Interaction.DestroyStructure
  5885.  
  5886.  
  5887.  
  5888. for i, v in pairs(pmds:GetChildren()) do
  5889. if v:FindFirstChild("Owner") and v.Owner.Value ~= nil and v.Owner.Value == game.Players[plr] and v:FindFirstChild("ItemName") and v:FindFirstChild("Type") and (v.PrimaryPart ~= nil or v:FindFirstChild("MainCFrame")) then
  5890. PlaceR:FireServer(v)
  5891. end
  5892. end
  5893.  
  5894. end)
  5895. Noclip.MouseButton1Down:Connet(function()
  5896. local noclipplayer = game:GetService("Players").LocalPlayer
  5897. local noclipmouse = noclipplayer:GetMouse()
  5898.  
  5899. local donoclip = false
  5900. local noclip = false
  5901.  
  5902. function b_noclip(key)
  5903. if (key == "n") then
  5904. if noclip == false then
  5905. donoclip = true
  5906.  
  5907. noclip = true
  5908. elseif noclip == true then
  5909. donoclip = false
  5910.  
  5911. noclip = false
  5912. end
  5913. end
  5914. end
  5915.  
  5916. noclipmouse.KeyDown:connect(b_noclip)
  5917.  
  5918. game:GetService("Players").LocalPlayer.Character.Head.Touched:connect(function(obj)
  5919. if obj ~= workspace.Terrain then
  5920. if donoclip == true then
  5921. obj.CanCollide = false
  5922. else
  5923. obj.CanCollide = true
  5924. end
  5925. end
  5926. end)
  5927. end)
  5928. end)
  5929.  
  5930. Gui_4.Name = "Gui"
  5931. Gui_4.Parent = Frame
  5932. Gui_4.BackgroundColor3 = Color3.new(0, 0, 0)
  5933. Gui_4.Position = UDim2.new(0.794686019, 0, 0.299578041, 0)
  5934. Gui_4.Size = UDim2.new(0, 85, 0, 37)
  5935. Gui_4.Font = Enum.Font.SourceSans
  5936. Gui_4.Text = "Gui"
  5937. Gui_4.TextColor3 = Color3.new(0, 0, 1)
  5938. Gui_4.TextScaled = true
  5939. Gui_4.TextSize = 14
  5940. Gui_4.TextWrapped = true
  5941. Gui_4.MouseButton1Click:Connect(function()
  5942. -- Farewell Infortality.
  5943. -- Version: 2.82
  5944. -- Instances:
  5945. local ScreenGui = Instance.new("ScreenGui")
  5946. local MainFrame = Instance.new("Frame")
  5947. local ExitButton = Instance.new("TextButton")
  5948. local MiniMazeButton = Instance.new("TextButton")
  5949. local AutoDupe = Instance.new("TextButton")
  5950. local StopDupe = Instance.new("TextButton")
  5951. local TpPlanks = Instance.new("TextButton")
  5952. local SellPlanks = Instance.new("TextButton")
  5953. local BringWood = Instance.new("TextButton")
  5954. local SellWood = Instance.new("TextButton")
  5955. local NormalLand = Instance.new("TextButton")
  5956. local StopLand = Instance.new("TextButton")
  5957. local WayPoint = Instance.new("TextButton")
  5958. local WayPoint_2 = Instance.new("TextButton")
  5959. local TpGifts = Instance.new("TextButton")
  5960. local BringUp = Instance.new("TextButton")
  5961. local HailStone = Instance.new("TextButton")
  5962. local Speed = Instance.new("TextButton")
  5963. local Jpower = Instance.new("TextButton")
  5964. local GoldAxe = Instance.new("TextButton")
  5965. local TextLabel = Instance.new("TextLabel")
  5966. local TextLabel_2 = Instance.new("TextLabel")
  5967. local LT2GUD = Instance.new("TextButton")
  5968. local DupeGui = Instance.new("TextButton")
  5969. local OpenButton = Instance.new("TextButton")
  5970. --Properties:
  5971. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  5972.  
  5973. MainFrame.Name = "MainFrame"
  5974. MainFrame.Parent = ScreenGui
  5975. MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  5976. MainFrame.Position = UDim2.new(0.0925266892, 0, 0.221343875, 0)
  5977. MainFrame.Size = UDim2.new(0, 560, 0, 218)
  5978. MainFrame.Active = true
  5979. MainFrame.Draggable = true
  5980.  
  5981. ExitButton.Name = "ExitButton"
  5982. ExitButton.Parent = MainFrame
  5983. ExitButton.BackgroundColor3 = Color3.new(0, 0, 0)
  5984. ExitButton.BorderColor3 = Color3.new(0, 1, 0)
  5985. ExitButton.BorderSizePixel = 3
  5986. ExitButton.Position = UDim2.new(0, 0, -0.00917431153, 0)
  5987. ExitButton.Size = UDim2.new(0, 47, 0, 41)
  5988. ExitButton.Font = Enum.Font.SciFi
  5989. ExitButton.Text = "x"
  5990. ExitButton.TextColor3 = Color3.new(0, 1, 0)
  5991. ExitButton.TextScaled = true
  5992. ExitButton.TextSize = 14
  5993. ExitButton.TextWrapped = true
  5994. ExitButton.MouseButton1Click:connect(function()
  5995. MainFrame.Visible = false
  5996. end)
  5997. MiniMazeButton.Name = "MiniMazeButton"
  5998. MiniMazeButton.Parent = MainFrame
  5999. MiniMazeButton.BackgroundColor3 = Color3.new(0, 0, 0)
  6000. MiniMazeButton.BorderColor3 = Color3.new(0, 1, 0)
  6001. MiniMazeButton.BorderSizePixel = 3
  6002. MiniMazeButton.Position = UDim2.new(0.0910714269, 0, -0.00917431153, 0)
  6003. MiniMazeButton.Size = UDim2.new(0, 50, 0, 47)
  6004. MiniMazeButton.Font = Enum.Font.SciFi
  6005. MiniMazeButton.Text = "-"
  6006. MiniMazeButton.TextColor3 = Color3.new(0, 1, 0)
  6007. MiniMazeButton.TextScaled = true
  6008. MiniMazeButton.TextSize = 14
  6009. MiniMazeButton.TextWrapped = true
  6010. MiniMazeButton.MouseButton1Click:connect(function()
  6011. MainFrame.Visible = false
  6012. OpenButton.Visible = true
  6013. end)
  6014. AutoDupe.Name = "AutoDupe"
  6015. AutoDupe.Parent = MainFrame
  6016. AutoDupe.BackgroundColor3 = Color3.new(0, 0, 0)
  6017. AutoDupe.BorderColor3 = Color3.new(0, 1, 0)
  6018. AutoDupe.BorderSizePixel = 5
  6019. AutoDupe.Position = UDim2.new(0.00714285765, 0, 0.426605493, 0)
  6020. AutoDupe.Size = UDim2.new(0, 97, 0, 41)
  6021. AutoDupe.Font = Enum.Font.SciFi
  6022. AutoDupe.Text = "AutoDupe"
  6023. AutoDupe.TextColor3 = Color3.new(0, 1, 0)
  6024. AutoDupe.TextScaled = true
  6025. AutoDupe.TextSize = 14
  6026. AutoDupe.TextWrapped = true
  6027. AutoDupe.MouseButton1Down:connect(function()
  6028. Screen = Instance.new("ScreenGui",game.Players.LocalPlayer.PlayerGui)
  6029. Scrolling = Instance.new("ScrollingFrame",Screen)
  6030. Scrolling.Size = UDim2.new(0,300,0,500)
  6031. Scrolling.CanvasSize = UDim2.new(0,300,3,0)
  6032. Exit = Instance.new("TextButton", Scrolling)
  6033. Exit.Size = UDim2.new(0,30,0,20)
  6034. Exit.Position = UDim2.new(1,-40,0,0)
  6035. Exit.Text = "Exit"
  6036. DontTP = Instance.new("TextButton", Scrolling)
  6037. DontTP.Size = UDim2.new(0,40,0,40)
  6038. DontTP.Position = UDim2.new(1,-60,0,50)
  6039. DontTP.Text = "Don't TP back"
  6040. DontTP.TextWrapped = true
  6041. DontTPVar = false
  6042. DontTP.MouseButton1Click:connect(function()
  6043. DontTPVar = true
  6044. end)
  6045. Exit.MouseButton1Click:connect(function()
  6046. Screen:Destroy()
  6047. end)
  6048. g = 0
  6049. Sniggle = false
  6050. gg = {}
  6051. function Start()
  6052. Sniggle = true
  6053. for i,v in pairs(game.Workspace.PlayerModels:GetChildren()) do
  6054. if v:FindFirstChild("Owner") and v.Owner.Value == game.Players.LocalPlayer then
  6055. if v:FindFirstChild("TreeClass") then
  6056. game:GetService("RunService").RenderStepped:wait()
  6057. if Scrolling:FindFirstChild(v.TreeClass.Value) then
  6058. if not gg[i] then
  6059. Scrolling[v.TreeClass.Value.." Value"].Value = Scrolling[v.TreeClass.Value.." Value"].Value+1
  6060. Scrolling[v.TreeClass.Value].Text = v.TreeClass.Value.." ("..Scrolling[v.TreeClass.Value.." Value"].Value..")"
  6061. end
  6062. else
  6063. g = g+1
  6064. TreeButton = Instance.new("TextButton",Scrolling)
  6065. TreeButton.Size = UDim2.new(0,100,0,50)
  6066. TreeButton.Position = UDim2.new(0,10,0,70*g)
  6067. TreeButton.Name = v.TreeClass.Value
  6068. TreeButton.Text = v.TreeClass.Value.." (1)"
  6069. TreeButton.MouseButton1Click:connect(function()
  6070. Scrolling.Visible = false
  6071. TP(TreeButton.Name)
  6072. end)
  6073. TreeVal = Instance.new("NumberValue",Scrolling)
  6074. TreeVal.Name = v.TreeClass.Value.." Value"
  6075. TreeVal.Value = 1
  6076. gg[i] = v.TreeClass.Value
  6077. end
  6078. end
  6079. end
  6080. end
  6081. end
  6082. if not Sniggle then
  6083. Start()
  6084. end
  6085. --[[game.Workspace.PlayerModels.ChildAdded:connect(function(Item)
  6086. Item:WaitForChild("Owner")
  6087. if Item.Owner.Value == game.Players.LocalPlayer then
  6088. Start()
  6089. end
  6090. end)]]
  6091. game.Workspace.PlayerModels.ChildRemoved:connect(function(Item)
  6092. if Item:FindFirstChild("Owner") and Item.Owner.Value == game.Players.LocalPlayer and Item:FindFirstChild("TreeClass") and Scrolling[Item.TreeClass.Value.." Value"] then
  6093. Scrolling[Item.TreeClass.Value.." Value"].Value = Scrolling[Item.TreeClass.Value.." Value"].Value-1
  6094. if Scrolling[Item.TreeClass.Value.." Value"].Value == 0 then
  6095. Scrolling[Item.TreeClass.Value]:Destroy()
  6096. Scrolling[Item.TreeClass.Value.." Value"]:Destroy()
  6097. else
  6098. Scrolling[Item.TreeClass.Value].Text = Item.TreeClass.Value.." ("..Scrolling[Item.TreeClass.Value.." Value"].Value..")"
  6099. end
  6100. end
  6101. end)
  6102.  
  6103. function TP(Name)
  6104. sendNotice = game.ReplicatedStorage.Notices.SendUserNotice
  6105. sendNotice:Fire("Click on a whitelisted base")
  6106. local ButtonPress
  6107. ButtonPress = game.Players.LocalPlayer:GetMouse().Button1Down:Connect(function()
  6108. Square = game.Players.LocalPlayer:GetMouse().Target
  6109. if (Square.Name == "OriginSquare" or Square.Name == "Square") then
  6110. ButtonPress:Disconnect()
  6111. game.ReplicatedStorage.LoadSaveRequests.RequestSave:InvokeServer(game.Players.LocalPlayer.CurrentSaveSlot.Value)
  6112. local success, errorMessage = game.ReplicatedStorage.LoadSaveRequests.RequestLoad:InvokeServer(game.Players.LocalPlayer.CurrentSaveSlot.Value,game.Players.LocalPlayer)
  6113. if success then
  6114. print'Initial Reload Success'
  6115. sendNotice:Fire("Reload success", 0.8)
  6116. game.Players.LocalPlayer.CurrentSaveSlot.RobloxLocked = true
  6117. game.Players.LocalPlayer.CurrentSaveSlot.Set.RobloxLocked = true
  6118. for i,v in pairs(game.Workspace.PlayerModels:GetChildren()) do
  6119. if v:FindFirstChild("TreeClass") and v.TreeClass.Value == Name and v.Owner.Value == game.Players.LocalPlayer then
  6120. v:MoveTo(Square.Position)
  6121. v.Name = "TpMe"
  6122. for i=1,10 do
  6123. game:GetService("RunService").RenderStepped:wait()
  6124. for i=1,10 do
  6125. v.WoodSection.CFrame = (CFrame.new(Vector3.new(Square.Position.X,Square.Position.Y+5,Square.Position.Z))*CFrame.Angles(math.rad(90),0,0))
  6126. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(v)
  6127. end
  6128. end
  6129. end
  6130. end
  6131. Wait = 0
  6132. while Wait < 60 do
  6133. Wait = Wait + 1
  6134. sendNotice:Fire("Waiting: "..60-Wait,1)
  6135. wait(1)
  6136. end
  6137. local succes, errormessage = game.ReplicatedStorage.LoadSaveRequests.RequestLoad:InvokeServer(game.Players.LocalPlayer.CurrentSaveSlot.Value,game.Players.LocalPlayer)
  6138. if succes then
  6139. sendNotice:Fire("Reload success", 0.8)
  6140. game.Players.LocalPlayer.CurrentSaveSlot.RobloxLocked = false
  6141. game.Players.LocalPlayer.CurrentSaveSlot.Set.RobloxLocked = false
  6142. if not DontTPVar then
  6143. DontTPVar = false
  6144. for i,v in pairs(game.Workspace.Properties:GetChildren()) do
  6145. if v.Owner and v.Owner.Value == game.Players.LocalPlayer and v:FindFirstChild("OriginSquare") then
  6146. Square = v.OriginSquare
  6147. for i,v in pairs(game.Workspace.PlayerModels:GetChildren()) do
  6148. if v.Name == "TpMe" then
  6149. v.Name = "Model"
  6150. print'Secondary Reload Success'
  6151. game.Players.LocalPlayer.CurrentSaveSlot.RobloxLocked = false
  6152. game.Players.LocalPlayer.CurrentSaveSlot.Set.RobloxLocked = false
  6153. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(v)
  6154. v:MoveTo(Square.Position)
  6155. for i=1,10 do
  6156. game:GetService("RunService").RenderStepped:wait()
  6157. for i=1,10 do
  6158. v.WoodSection.CFrame = (CFrame.new(Vector3.new(Square.Position.X,Square.Position.Y+5,Square.Position.Z))*CFrame.Angles(math.rad(90),0,0))
  6159. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(v)
  6160. end
  6161. end
  6162. Scrolling.Visible = true
  6163. end
  6164. end
  6165. end
  6166. end
  6167. end
  6168. else
  6169. print('Secondary Reload Error: '..errormessage)
  6170. sendNotice:Fire(errormessage)
  6171. end
  6172. else
  6173. OOF = true
  6174. while OOF do
  6175. wait(0.5)
  6176. local _,Fail = game.ReplicatedStorage.LoadSaveRequests.RequestLoad:InvokeServer(game.Players.LocalPlayer.CurrentSaveSlot.Value,game.Players.LocalPlayer)
  6177. print(string.sub(Fail,49,50))
  6178. if tonumber(string.sub(Fail,49,50)) == 1 then
  6179. OOF = false
  6180. end
  6181. print('Initial Reload Error: '..Fail)
  6182. Deb = true
  6183. sendNotice:Fire("Wait "..string.sub(Fail,49,50),1)
  6184. end
  6185. if Deb then
  6186. Deb = false
  6187. TP(Name)
  6188. end
  6189. end
  6190. end
  6191. end)
  6192. game.Players.LocalPlayer.CurrentSaveSlot.RobloxLocked = false
  6193. game.Players.LocalPlayer.CurrentSaveSlot.Set.RobloxLocked = false
  6194. end
  6195.  
  6196. function restartStart()
  6197.  
  6198. end
  6199. --game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer()
  6200. --v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position)
  6201.  
  6202. --game.Players.LocalPlayer.PlayerGui.ScreenGui:Destroy()
  6203. end)
  6204. StopDupe.Name = "StopDupe"
  6205. StopDupe.Parent = MainFrame
  6206. StopDupe.BackgroundColor3 = Color3.new(0, 0, 0)
  6207. StopDupe.BorderColor3 = Color3.new(0, 1, 0)
  6208. StopDupe.BorderSizePixel = 5
  6209. StopDupe.Position = UDim2.new(0.00714285718, 0, 0.848623872, 0)
  6210. StopDupe.Size = UDim2.new(0, 97, 0, 28)
  6211. StopDupe.Font = Enum.Font.SciFi
  6212. StopDupe.Text = "StopDupe"
  6213. StopDupe.TextColor3 = Color3.new(0, 1, 0)
  6214. StopDupe.TextScaled = true
  6215. StopDupe.TextSize = 14
  6216. StopDupe.TextWrapped = true
  6217. StopDupe.MouseButton1Down:connect(function()
  6218. option = false
  6219.  
  6220. a = game.Players.LocalPlayer.CurrentSaveSlot
  6221. a.RobloxLocked = option
  6222. a.Set.RobloxLocked = option
  6223. print(a.Value)
  6224.  
  6225. if a.RobloxLocked == true then
  6226. print("CurrentSaveSlot RobloxLocked = true, save file won't save")
  6227. print("Set RobloxLocked = true, save file won't save")
  6228.  
  6229. else
  6230.  
  6231. print("CurrentSaveSlot RobloxLocked = false, save file will save")
  6232. print("Set RobloxLocked = false, save file will save")
  6233. end
  6234. end)
  6235. TpPlanks.Name = "TpPlanks"
  6236. TpPlanks.Parent = MainFrame
  6237. TpPlanks.BackgroundColor3 = Color3.new(0, 0, 0)
  6238. TpPlanks.BorderColor3 = Color3.new(0, 1, 0)
  6239. TpPlanks.BorderSizePixel = 5
  6240. TpPlanks.Position = UDim2.new(0.18928571, 0, 0.848623872, 0)
  6241. TpPlanks.Size = UDim2.new(0, 96, 0, 28)
  6242. TpPlanks.Font = Enum.Font.SciFi
  6243. TpPlanks.Text = "Tp Planks"
  6244. TpPlanks.TextColor3 = Color3.new(0, 1, 0)
  6245. TpPlanks.TextScaled = true
  6246. TpPlanks.TextSize = 14
  6247. TpPlanks.TextWrapped = true
  6248. TpPlanks.MouseButton1Down:connect(function()
  6249. for _, Plank in pairs(service.Workspace.PlayerModels:GetChildren()) do
  6250. if Plank.Name == "Plank" and Plank.Owner.Value==service.Players.LocalPlayer then
  6251. Plank:MoveTo(service.Players.LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0, 20, 0))
  6252. for i=1,100 do
  6253. service.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Plank)
  6254. end
  6255. end
  6256. end
  6257. end)
  6258. SellPlanks.Name = "SellPlanks"
  6259. SellPlanks.Parent = MainFrame
  6260. SellPlanks.BackgroundColor3 = Color3.new(0, 0, 0)
  6261. SellPlanks.BorderColor3 = Color3.new(0, 1, 0)
  6262. SellPlanks.BorderSizePixel = 5
  6263. SellPlanks.Position = UDim2.new(0.5625, 0, 0.646789014, 0)
  6264. SellPlanks.Size = UDim2.new(0, 92, 0, 34)
  6265. SellPlanks.Font = Enum.Font.SciFi
  6266. SellPlanks.Text = "SellPlanks"
  6267. SellPlanks.TextColor3 = Color3.new(0, 1, 0)
  6268. SellPlanks.TextScaled = true
  6269. SellPlanks.TextSize = 14
  6270. SellPlanks.TextWrapped = true
  6271. SellPlanks.MouseButton1Down:connect(function()
  6272. for _, Plank in pairs(service.Workspace.PlayerModels:GetChildren()) do
  6273. if Plank.Name=="Plank" and Plank.Owner.Value==service.Players.LocalPlayer then
  6274. for i,v in pairs(Plank:GetChildren()) do
  6275. if v.Name=="WoodSection" then
  6276. spawn(function()
  6277. for i=1,10 do
  6278. wait()
  6279. v.CFrame=CFrame.new(Vector3.new(315, -0.296, 85.791))*CFrame.Angles(math.rad(90),0,0)
  6280. end
  6281. end)
  6282. end
  6283. end
  6284. spawn(function()
  6285. for i=1,20 do
  6286. wait()
  6287. service.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Plank)
  6288. end
  6289. end)
  6290. end
  6291. end
  6292. end)
  6293. BringWood.Name = "BringWood"
  6294. BringWood.Parent = MainFrame
  6295. BringWood.BackgroundColor3 = Color3.new(0, 0, 0)
  6296. BringWood.BorderColor3 = Color3.new(0, 1, 0)
  6297. BringWood.BorderSizePixel = 5
  6298. BringWood.Position = UDim2.new(0.5625, 0, 0.211009175, 0)
  6299. BringWood.Size = UDim2.new(0, 92, 0, 38)
  6300. BringWood.Font = Enum.Font.SciFi
  6301. BringWood.Text = "BringWood"
  6302. BringWood.TextColor3 = Color3.new(0, 1, 0)
  6303. BringWood.TextScaled = true
  6304. BringWood.TextSize = 14
  6305. BringWood.TextWrapped = true
  6306. BringWood.MouseButton1Down:connect(function()
  6307. for _, Log in pairs(game.Workspace.LogModels:GetChildren()) do
  6308. if Log.Name:sub(1,6) == "Loose_" and Log:findFirstChild("Owner") then
  6309. if Log.Owner.Value == game.Players.LocalPlayer then
  6310. Log:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(0,15,0))
  6311. end
  6312. end
  6313. end
  6314. end)
  6315. SellWood.Name = "SellWood"
  6316. SellWood.Parent = MainFrame
  6317. SellWood.BackgroundColor3 = Color3.new(0, 0, 0)
  6318. SellWood.BorderColor3 = Color3.new(0, 1, 0)
  6319. SellWood.BorderSizePixel = 5
  6320. SellWood.Position = UDim2.new(0.00714285765, 0, 0.646789014, 0)
  6321. SellWood.Size = UDim2.new(0, 97, 0, 34)
  6322. SellWood.Font = Enum.Font.SciFi
  6323. SellWood.Text = "SellWood"
  6324. SellWood.TextColor3 = Color3.new(0.333333, 1, 0)
  6325. SellWood.TextScaled = true
  6326. SellWood.TextSize = 14
  6327. SellWood.TextWrapped = true
  6328. SellWood.MouseButton1Click:Connect(function()
  6329. for _, Log in pairs(service.Workspace.LogModels:GetChildren()) do
  6330. if Log.Name:sub(1, 6) == "Loose_" and Log:findFirstChild("Owner") then
  6331. if Log.Owner.Value == service.Players.LocalPlayer then
  6332. for i,v in pairs(Log:GetChildren()) do
  6333. if v.Name=="WoodSection" then
  6334. spawn(function()
  6335. for i=1,10 do
  6336. wait()
  6337. v.CFrame=CFrame.new(Vector3.new(315, -0.296, 85.791))*CFrame.Angles(math.rad(90),0,0)
  6338. end
  6339. end)
  6340. end
  6341. end
  6342. spawn(function()
  6343. for i=1,20 do
  6344. wait()
  6345. Service.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Log)
  6346. end
  6347. end)
  6348. end
  6349. end
  6350. end
  6351. end)
  6352. NormalLand.Name = "Normal Land"
  6353. NormalLand.Parent = MainFrame
  6354. NormalLand.BackgroundColor3 = Color3.new(0, 0, 0)
  6355. NormalLand.BorderColor3 = Color3.new(0, 1, 0)
  6356. NormalLand.BorderSizePixel = 5
  6357. NormalLand.Position = UDim2.new(0.18928571, 0, 0.211009175, 0)
  6358. NormalLand.Size = UDim2.new(0, 96, 0, 38)
  6359. NormalLand.Font = Enum.Font.SciFi
  6360. NormalLand.Text = "Normal Land"
  6361. NormalLand.TextColor3 = Color3.new(0, 1, 0)
  6362. NormalLand.TextScaled = true
  6363. NormalLand.TextSize = 14
  6364. NormalLand.TextWrapped = true
  6365. NormalLand.MouseButton1Down:connect(function()
  6366. _G.TPStuff = true
  6367. while _G.TPStuff == true do
  6368. wait(5)
  6369. for i,v in pairs(game.Workspace.Properties:GetChildren()) do
  6370. if v.Owner.Value == game.Players.LocalPlayer then
  6371. game.ReplicatedStorage.PropertyPurchasing.ClientExpandedProperty:FireServer(v,CFrame.new(game.Players.LocalPlayer.Character["Left Leg"].Position))
  6372. end
  6373. end
  6374. end
  6375. end)
  6376. StopLand.Name = "StopLand"
  6377. StopLand.Parent = MainFrame
  6378. StopLand.BackgroundColor3 = Color3.new(0, 0, 0)
  6379. StopLand.BorderColor3 = Color3.new(0, 1, 0)
  6380. StopLand.BorderSizePixel = 5
  6381. StopLand.Position = UDim2.new(0.375, 0, 0.426605493, 0)
  6382. StopLand.Size = UDim2.new(0, 95, 0, 41)
  6383. StopLand.Font = Enum.Font.SciFi
  6384. StopLand.Text = "StopLand"
  6385. StopLand.TextColor3 = Color3.new(0, 1, 0)
  6386. StopLand.TextScaled = true
  6387. StopLand.TextSize = 14
  6388. StopLand.TextWrapped = true
  6389. StopLand.MouseButton1Down:connect(function()
  6390. _G.TPStuff = false
  6391. while _G.TPStuff == true do
  6392. wait(5)
  6393. for i,v in pairs(game.Workspace.Properties:GetChildren()) do
  6394. if v.Owner.Value == game.Players.LocalPlayer then
  6395. game.ReplicatedStorage.PropertyPurchasing.ClientExpandedProperty:FireServer(v,CFrame.new(game.Players.LocalPlayer.Character["Left Leg"].Position))
  6396. end
  6397. end
  6398. end
  6399. end)
  6400. WayPoint.Name = "WayPoint"
  6401. WayPoint.Parent = MainFrame
  6402. WayPoint.BackgroundColor3 = Color3.new(0, 0, 0)
  6403. WayPoint.BorderColor3 = Color3.new(0, 1, 0)
  6404. WayPoint.BorderSizePixel = 5
  6405. WayPoint.Position = UDim2.new(0.00714285765, 0, 0.206422016, 0)
  6406. WayPoint.Size = UDim2.new(0, 97, 0, 38)
  6407. WayPoint.Font = Enum.Font.SciFi
  6408. WayPoint.Text = "WayPoints"
  6409. WayPoint.TextColor3 = Color3.new(0, 1, 0)
  6410. WayPoint.TextScaled = true
  6411. WayPoint.TextSize = 14
  6412. WayPoint.TextStrokeColor3 = Color3.new(0, 1, 0)
  6413. WayPoint.TextWrapped = true
  6414. WayPoint.MouseButton1Down:connect(function()
  6415. -- Farewell Infortality.
  6416. -- Version: 2.82
  6417. -- Instances:
  6418. local ScreenGui = Instance.new("ScreenGui")
  6419. local WayPointFrame = Instance.new("Frame")
  6420. local ExitButton = Instance.new("TextButton")
  6421. local MiniMazeButton = Instance.new("TextButton")
  6422. local TopBar = Instance.new("Frame")
  6423. local EndTimes = Instance.new("TextButton")
  6424. local Cave = Instance.new("TextButton")
  6425. local Volcano = Instance.new("TextButton")
  6426. local Palm = Instance.new("TextButton")
  6427. local Swamp = Instance.new("TextButton")
  6428. local bobshack = Instance.new("TextButton")
  6429. local SkiiLodge = Instance.new("TextButton")
  6430. local WoodRus = Instance.new("TextButton")
  6431. local Cars = Instance.new("TextButton")
  6432. local LinksLogic = Instance.new("TextButton")
  6433. local FancyFurnishing = Instance.new("TextButton")
  6434. local StrangeMan = Instance.new("TextButton")
  6435. local Den = Instance.new("TextButton")
  6436. local Spawn = Instance.new("TextButton")
  6437. local FineArt = Instance.new("TextButton")
  6438. local YellowWood = Instance.new("TextButton")
  6439. local IceTree = Instance.new("TextButton")
  6440. local OpenButton = Instance.new("TextButton")
  6441. --Properties:
  6442. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  6443.  
  6444. WayPointFrame.Name = "WayPointFrame"
  6445. WayPointFrame.Parent = ScreenGui
  6446. WayPointFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  6447. WayPointFrame.BorderColor3 = Color3.new(0, 1, 0)
  6448. WayPointFrame.BorderSizePixel = 5
  6449. WayPointFrame.Position = UDim2.new(0.774614453, 0, 0.0355731249, 0)
  6450. WayPointFrame.Size = UDim2.new(0, 125, 0, 469)
  6451. WayPointFrame.Active = true
  6452. WayPointFrame.Draggable = true
  6453.  
  6454. ExitButton.Name = "ExitButton"
  6455. ExitButton.Parent = WayPointFrame
  6456. ExitButton.BackgroundColor3 = Color3.new(0, 0, 0)
  6457. ExitButton.BorderColor3 = Color3.new(0, 1, 0)
  6458. ExitButton.BorderSizePixel = 2
  6459. ExitButton.Position = UDim2.new(0.744000018, 0, 0, 0)
  6460. ExitButton.Size = UDim2.new(0, 32, 0, 12)
  6461. ExitButton.Font = Enum.Font.SciFi
  6462. ExitButton.Text = "x"
  6463. ExitButton.TextColor3 = Color3.new(0, 1, 0)
  6464. ExitButton.TextScaled = true
  6465. ExitButton.TextSize = 14
  6466. ExitButton.TextWrapped = true
  6467. ExitButton.MouseButton1Click:connect(function()
  6468. WayPointFrame.Visible = false
  6469. end)
  6470. MiniMazeButton.Name = "MiniMazeButton"
  6471. MiniMazeButton.Parent = WayPointFrame
  6472. MiniMazeButton.BackgroundColor3 = Color3.new(0, 0, 0)
  6473. MiniMazeButton.BorderColor3 = Color3.new(0, 1, 0)
  6474. MiniMazeButton.BorderSizePixel = 2
  6475. MiniMazeButton.Position = UDim2.new(0.495999992, 0, 0, 0)
  6476. MiniMazeButton.Size = UDim2.new(0, 31, 0, 12)
  6477. MiniMazeButton.Font = Enum.Font.SciFi
  6478. MiniMazeButton.Text = "-"
  6479. MiniMazeButton.TextColor3 = Color3.new(0, 1, 0)
  6480. MiniMazeButton.TextScaled = true
  6481. MiniMazeButton.TextSize = 14
  6482. MiniMazeButton.TextWrapped = true
  6483. MiniMazeButton.MouseButton1Click:connect(function()
  6484. WayPointFrame.Visible = false
  6485. OpenButton.Visible = true
  6486. end)
  6487. TopBar.Name = "TopBar"
  6488. TopBar.Parent = WayPointFrame
  6489. TopBar.BackgroundColor3 = Color3.new(0, 0, 0)
  6490. TopBar.BorderColor3 = Color3.new(0, 1, 0)
  6491. TopBar.BorderSizePixel = 2
  6492. TopBar.Size = UDim2.new(0, 62, 0, 12)
  6493.  
  6494. EndTimes.Name = "EndTimes"
  6495. EndTimes.Parent = WayPointFrame
  6496. EndTimes.BackgroundColor3 = Color3.new(0, 0, 0)
  6497. EndTimes.BorderColor3 = Color3.new(0, 1, 0)
  6498. EndTimes.BorderSizePixel = 2
  6499. EndTimes.Position = UDim2.new(0.0560000017, 0, 0.0538404807, 0)
  6500. EndTimes.Size = UDim2.new(0, 111, 0, 24)
  6501. EndTimes.Font = Enum.Font.SciFi
  6502. EndTimes.Text = "EndTimes"
  6503. EndTimes.TextColor3 = Color3.new(0, 1, 0)
  6504. EndTimes.TextScaled = true
  6505. EndTimes.TextSize = 14
  6506. EndTimes.TextWrapped = true
  6507. EndTimes.MouseButton1Click:connect(function()
  6508. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(113, -214, -951))end
  6509. )
  6510. Cave.Name = "Cave"
  6511. Cave.Parent = WayPointFrame
  6512. Cave.BackgroundColor3 = Color3.new(0, 0, 0)
  6513. Cave.BorderColor3 = Color3.new(0, 1, 0)
  6514. Cave.BorderSizePixel = 2
  6515. Cave.Position = UDim2.new(0.0560000017, 0, 0.107635289, 0)
  6516. Cave.Size = UDim2.new(0, 111, 0, 24)
  6517. Cave.Font = Enum.Font.SciFi
  6518. Cave.Text = "Cave"
  6519. Cave.TextColor3 = Color3.new(0, 1, 0)
  6520. Cave.TextScaled = true
  6521. Cave.TextSize = 14
  6522. Cave.TextWrapped = true
  6523. Cave.MouseButton1Down:connect(function()
  6524. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(3581,-179,430))end
  6525. )
  6526. Volcano.Name = "Volcano"
  6527. Volcano.Parent = WayPointFrame
  6528. Volcano.BackgroundColor3 = Color3.new(0, 0, 0)
  6529. Volcano.BorderColor3 = Color3.new(0, 1, 0)
  6530. Volcano.BorderSizePixel = 2
  6531. Volcano.Position = UDim2.new(0.0560000017, 0, 0.162899897, 0)
  6532. Volcano.Size = UDim2.new(0, 111, 0, 24)
  6533. Volcano.Font = Enum.Font.SciFi
  6534. Volcano.Text = "Volcano"
  6535. Volcano.TextColor3 = Color3.new(0, 1, 0)
  6536. Volcano.TextScaled = true
  6537. Volcano.TextSize = 14
  6538. Volcano.TextWrapped = true
  6539. Volcano.MouseButton1Down:connect(function()
  6540. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-1585,622,1140))end
  6541. )
  6542. Palm.Name = "Palm"
  6543. Palm.Parent = WayPointFrame
  6544. Palm.BackgroundColor3 = Color3.new(0, 0, 0)
  6545. Palm.BorderColor3 = Color3.new(0, 1, 0)
  6546. Palm.BorderSizePixel = 2
  6547. Palm.Position = UDim2.new(0.0560000017, 0, 0.216694683, 0)
  6548. Palm.Size = UDim2.new(0, 111, 0, 24)
  6549. Palm.Font = Enum.Font.SciFi
  6550. Palm.Text = "Palm"
  6551. Palm.TextColor3 = Color3.new(0, 1, 0)
  6552. Palm.TextScaled = true
  6553. Palm.TextSize = 14
  6554. Palm.TextWrapped = true
  6555. Palm.MouseButton1Click:connect(function()
  6556. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(2549, -5, -42))end
  6557. )
  6558. Swamp.Name = "Swamp"
  6559. Swamp.Parent = WayPointFrame
  6560. Swamp.BackgroundColor3 = Color3.new(0, 0, 0)
  6561. Swamp.BorderColor3 = Color3.new(0, 1, 0)
  6562. Swamp.BorderSizePixel = 2
  6563. Swamp.Position = UDim2.new(0.0560000017, 0, 0.270640463, 0)
  6564. Swamp.Size = UDim2.new(0, 111, 0, 24)
  6565. Swamp.Font = Enum.Font.SciFi
  6566. Swamp.Text = "Swamp"
  6567. Swamp.TextColor3 = Color3.new(0, 1, 0)
  6568. Swamp.TextScaled = true
  6569. Swamp.TextSize = 14
  6570. Swamp.TextWrapped = true
  6571. Swamp.MouseButton1Click:connect(function()
  6572. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-1209,132,-801))end
  6573. )
  6574. bobshack.Name = "bobshack"
  6575. bobshack.Parent = WayPointFrame
  6576. bobshack.BackgroundColor3 = Color3.new(0, 0, 0)
  6577. bobshack.BorderColor3 = Color3.new(0, 1, 0)
  6578. bobshack.BorderSizePixel = 2
  6579. bobshack.Position = UDim2.new(0.0560000017, 0, 0.326247483, 0)
  6580. bobshack.Size = UDim2.new(0, 111, 0, 24)
  6581. bobshack.Font = Enum.Font.SciFi
  6582. bobshack.Text = "Bobshack"
  6583. bobshack.TextColor3 = Color3.new(0, 1, 0)
  6584. bobshack.TextScaled = true
  6585. bobshack.TextSize = 14
  6586. bobshack.TextWrapped = true
  6587. bobshack.MouseButton1Click:connect(function()
  6588. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(260, 8, -2542))end
  6589. )
  6590. SkiiLodge.Name = "SkiiLodge"
  6591. SkiiLodge.Parent = WayPointFrame
  6592. SkiiLodge.BackgroundColor3 = Color3.new(0, 0, 0)
  6593. SkiiLodge.BorderColor3 = Color3.new(0, 1, 0)
  6594. SkiiLodge.BorderSizePixel = 2
  6595. SkiiLodge.Position = UDim2.new(0.0560000017, 0, 0.379968107, 0)
  6596. SkiiLodge.Size = UDim2.new(0, 111, 0, 24)
  6597. SkiiLodge.Font = Enum.Font.SciFi
  6598. SkiiLodge.Text = "SkiiLodge"
  6599. SkiiLodge.TextColor3 = Color3.new(0, 1, 0)
  6600. SkiiLodge.TextScaled = true
  6601. SkiiLodge.TextSize = 14
  6602. SkiiLodge.TextWrapped = true
  6603. SkiiLodge.MouseButton1Click:connect(function()
  6604. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(1244, 62, 2306))end
  6605. )
  6606. WoodRus.Name = "WoodRus"
  6607. WoodRus.Parent = WayPointFrame
  6608. WoodRus.BackgroundColor3 = Color3.new(0, 0, 0)
  6609. WoodRus.BorderColor3 = Color3.new(0, 1, 0)
  6610. WoodRus.BorderSizePixel = 2
  6611. WoodRus.Position = UDim2.new(0.0560000017, 0, 0.435800284, 0)
  6612. WoodRus.Size = UDim2.new(0, 111, 0, 24)
  6613. WoodRus.Font = Enum.Font.SciFi
  6614. WoodRus.Text = "WoodRus"
  6615. WoodRus.TextColor3 = Color3.new(0.333333, 1, 0)
  6616. WoodRus.TextScaled = true
  6617. WoodRus.TextSize = 14
  6618. WoodRus.TextWrapped = true
  6619. WoodRus.MouseButton1Click:connect(function()
  6620. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(265,3,57))end
  6621. )
  6622. Cars.Name = "Cars"
  6623. Cars.Parent = WayPointFrame
  6624. Cars.BackgroundColor3 = Color3.new(0, 0, 0)
  6625. Cars.BorderColor3 = Color3.new(0, 1, 0)
  6626. Cars.BorderSizePixel = 2
  6627. Cars.Position = UDim2.new(0.0560000017, 0, 0.491709232, 0)
  6628. Cars.Size = UDim2.new(0, 111, 0, 24)
  6629. Cars.Font = Enum.Font.SciFi
  6630. Cars.Text = "Cars"
  6631. Cars.TextColor3 = Color3.new(0, 1, 0)
  6632. Cars.TextScaled = true
  6633. Cars.TextSize = 14
  6634. Cars.TextWrapped = true
  6635. Cars.MouseButton1Click:connect(function()
  6636. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(509, 3, -1463))end
  6637. )
  6638. LinksLogic.Name = "LinksLogic"
  6639. LinksLogic.Parent = WayPointFrame
  6640. LinksLogic.BackgroundColor3 = Color3.new(0, 0, 0)
  6641. LinksLogic.BorderColor3 = Color3.new(0, 1, 0)
  6642. LinksLogic.BorderSizePixel = 2
  6643. LinksLogic.Position = UDim2.new(0.0560000017, 0, 0.545429885, 0)
  6644. LinksLogic.Size = UDim2.new(0, 111, 0, 24)
  6645. LinksLogic.Font = Enum.Font.SciFi
  6646. LinksLogic.Text = "LinksLogic"
  6647. LinksLogic.TextColor3 = Color3.new(0, 1, 0)
  6648. LinksLogic.TextScaled = true
  6649. LinksLogic.TextSize = 14
  6650. LinksLogic.TextWrapped = true
  6651. LinksLogic.MouseButton1Click:connect(function()
  6652. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(4607,7.5,-798))end
  6653. )
  6654. FancyFurnishing.Name = "FancyFurnishing"
  6655. FancyFurnishing.Parent = WayPointFrame
  6656. FancyFurnishing.BackgroundColor3 = Color3.new(0, 0, 0)
  6657. FancyFurnishing.BorderColor3 = Color3.new(0, 1, 0)
  6658. FancyFurnishing.BorderSizePixel = 2
  6659. FancyFurnishing.Position = UDim2.new(0.0560000017, 0, 0.59899956, 0)
  6660. FancyFurnishing.Size = UDim2.new(0, 111, 0, 24)
  6661. FancyFurnishing.Font = Enum.Font.SciFi
  6662. FancyFurnishing.Text = "FancyFurnishing "
  6663. FancyFurnishing.TextColor3 = Color3.new(0, 1, 0)
  6664. FancyFurnishing.TextScaled = true
  6665. FancyFurnishing.TextSize = 14
  6666. FancyFurnishing.TextWrapped = true
  6667. FancyFurnishing.MouseButton1Click:connect(function()
  6668. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(491, 3, -1720))end
  6669. )
  6670. StrangeMan.Name = "StrangeMan"
  6671. StrangeMan.Parent = WayPointFrame
  6672. StrangeMan.BackgroundColor3 = Color3.new(0, 0, 0)
  6673. StrangeMan.BorderColor3 = Color3.new(0, 1, 0)
  6674. StrangeMan.BorderSizePixel = 2
  6675. StrangeMan.Position = UDim2.new(0.0560000017, 0, 0.654606581, 0)
  6676. StrangeMan.Size = UDim2.new(0, 111, 0, 24)
  6677. StrangeMan.Font = Enum.Font.SciFi
  6678. StrangeMan.Text = "StrangeMan"
  6679. StrangeMan.TextColor3 = Color3.new(0, 1, 0)
  6680. StrangeMan.TextScaled = true
  6681. StrangeMan.TextSize = 14
  6682. StrangeMan.TextWrapped = true
  6683. StrangeMan.MouseButton1Click:connect(function()
  6684. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(1061, 16, 1131))end
  6685. )
  6686. Den.Name = "Den"
  6687. Den.Parent = WayPointFrame
  6688. Den.BackgroundColor3 = Color3.new(0, 0, 0)
  6689. Den.BorderColor3 = Color3.new(0, 1, 0)
  6690. Den.BorderSizePixel = 2
  6691. Den.Position = UDim2.new(0.0560000017, 0, 0.708422065, 0)
  6692. Den.Size = UDim2.new(0, 111, 0, 24)
  6693. Den.Font = Enum.Font.SciFi
  6694. Den.Text = "Den"
  6695. Den.TextColor3 = Color3.new(0, 1, 0)
  6696. Den.TextScaled = true
  6697. Den.TextSize = 14
  6698. Den.TextWrapped = true
  6699. Den.MouseButton1Down:connect(function()
  6700. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(331, 45, 1941))
  6701. end)
  6702. Spawn.Name = "Spawn"
  6703. Spawn.Parent = WayPointFrame
  6704. Spawn.BackgroundColor3 = Color3.new(0, 0, 0)
  6705. Spawn.BorderColor3 = Color3.new(0, 1, 0)
  6706. Spawn.BorderSizePixel = 2
  6707. Spawn.Position = UDim2.new(0.0560000017, 0, 0.762471676, 0)
  6708. Spawn.Size = UDim2.new(0, 111, 0, 24)
  6709. Spawn.Font = Enum.Font.SciFi
  6710. Spawn.Text = "Spawn"
  6711. Spawn.TextColor3 = Color3.new(0, 1, 0)
  6712. Spawn.TextScaled = true
  6713. Spawn.TextSize = 14
  6714. Spawn.TextWrapped = true
  6715. Spawn.MouseButton1Down:connect(function()
  6716. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(155,3,74))end
  6717. )
  6718. FineArt.Name = "FineArt"
  6719. FineArt.Parent = WayPointFrame
  6720. FineArt.BackgroundColor3 = Color3.new(0, 0, 0)
  6721. FineArt.BorderColor3 = Color3.new(0, 1, 0)
  6722. FineArt.BorderSizePixel = 2
  6723. FineArt.Position = UDim2.new(0.0560000017, 0, 0.815836132, 0)
  6724. FineArt.Size = UDim2.new(0, 111, 0, 24)
  6725. FineArt.Font = Enum.Font.SciFi
  6726. FineArt.Text = "FineArt"
  6727. FineArt.TextColor3 = Color3.new(0, 1, 0)
  6728. FineArt.TextScaled = true
  6729. FineArt.TextSize = 14
  6730. FineArt.TextWrapped = true
  6731. FineArt.MouseButton1Down:connect(function()
  6732. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(5207, -166, 719))end
  6733. )
  6734. YellowWood.Name = "YellowWood"
  6735. YellowWood.Parent = WayPointFrame
  6736. YellowWood.BackgroundColor3 = Color3.new(0, 0, 0)
  6737. YellowWood.BorderColor3 = Color3.new(0, 1, 0)
  6738. YellowWood.BorderSizePixel = 2
  6739. YellowWood.Position = UDim2.new(0.0560000017, 0, 0.870134771, 0)
  6740. YellowWood.Size = UDim2.new(0, 111, 0, 24)
  6741. YellowWood.Font = Enum.Font.SciFi
  6742. YellowWood.Text = "YellowWood"
  6743. YellowWood.TextColor3 = Color3.new(0, 1, 0)
  6744. YellowWood.TextScaled = true
  6745. YellowWood.TextSize = 14
  6746. YellowWood.TextWrapped = true
  6747. YellowWood.MouseButton1Down:connect(function()
  6748. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-1049,-5.9 ,-934.7 ))end
  6749. )
  6750. IceTree.Name = "IceTree"
  6751. IceTree.Parent = WayPointFrame
  6752. IceTree.BackgroundColor3 = Color3.new(0, 0, 0)
  6753. IceTree.BorderColor3 = Color3.new(0, 1, 0)
  6754. IceTree.BorderSizePixel = 2
  6755. IceTree.Position = UDim2.new(0.0560000017, 0, 0.92443341, 0)
  6756. IceTree.Size = UDim2.new(0, 111, 0, 24)
  6757. IceTree.Font = Enum.Font.SciFi
  6758. IceTree.Text = "IceTree"
  6759. IceTree.TextColor3 = Color3.new(0, 1, 0)
  6760. IceTree.TextScaled = true
  6761. IceTree.TextSize = 14
  6762. IceTree.TextWrapped = true
  6763. IceTree.MouseButton1Down:connect(function()
  6764. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(1505.7,412.4 ,3253 ))end
  6765. )
  6766. OpenButton.Name = "OpenButton"
  6767. OpenButton.Parent = ScreenGui
  6768. OpenButton.BackgroundColor3 = Color3.new(0, 0, 0)
  6769. OpenButton.BorderColor3 = Color3.new(0, 1, 0)
  6770. OpenButton.BorderSizePixel = 2
  6771. OpenButton.Position = UDim2.new(0, 0, 0.398740262, 0)
  6772. OpenButton.Size = UDim2.new(0, 82, 0, 19)
  6773. OpenButton.Visible = false
  6774. OpenButton.Font = Enum.Font.SciFi
  6775. OpenButton.Text = "WayPoints"
  6776. OpenButton.TextColor3 = Color3.new(0, 1, 0)
  6777. OpenButton.TextScaled = true
  6778. OpenButton.TextSize = 14
  6779. OpenButton.TextWrapped = true
  6780. OpenButton .MouseButton1Click:connect(function()
  6781. WayPointFrame.Visible = true
  6782. OpenButton.Visible = false
  6783. end)
  6784.  
  6785.  
  6786. end)
  6787. WayPoint_2.Name = "WayPoint"
  6788. WayPoint_2.Parent = MainFrame
  6789. WayPoint_2.BackgroundColor3 = Color3.new(0, 0, 0)
  6790. WayPoint_2.BorderColor3 = Color3.new(0, 1, 0)
  6791. WayPoint_2.BorderSizePixel = 5
  6792. WayPoint_2.Position = UDim2.new(0.18928571, 0, 0.646789014, 0)
  6793. WayPoint_2.Size = UDim2.new(0, 96, 0, 34)
  6794. WayPoint_2.Font = Enum.Font.SciFi
  6795. WayPoint_2.Text = "WayPoints"
  6796. WayPoint_2.TextColor3 = Color3.new(0, 1, 0)
  6797. WayPoint_2.TextScaled = true
  6798. WayPoint_2.TextSize = 14
  6799. WayPoint_2.TextWrapped = true
  6800. WayPoint_2.MouseButton1Down:connect(function()
  6801.  
  6802. end)
  6803. TpGifts.Name = "Tp Gifts"
  6804. TpGifts.Parent = MainFrame
  6805. TpGifts.BackgroundColor3 = Color3.new(0, 0, 0)
  6806. TpGifts.BorderColor3 = Color3.new(0, 1, 0)
  6807. TpGifts.BorderSizePixel = 5
  6808. TpGifts.Position = UDim2.new(0.5625, 0, 0.426605493, 0)
  6809. TpGifts.Size = UDim2.new(0, 92, 0, 41)
  6810. TpGifts.Font = Enum.Font.SciFi
  6811. TpGifts.Text = "TpGifts"
  6812. TpGifts.TextColor3 = Color3.new(0, 1, 0)
  6813. TpGifts.TextScaled = true
  6814. TpGifts.TextSize = 14
  6815. TpGifts.TextWrapped = true
  6816. TpGifts.MouseButton1Down:connect(function()
  6817. for i,v in next,workspace.PlayerModels:GetChildren() do
  6818. if v:FindFirstChild("Main") and v.Owner.Value == game.Players.LocalPlayer then
  6819. for q,p in pairs(v:GetChildren()) do
  6820. if p.Name:lower():match("box") or p.Name == "DraggableItem" then
  6821. wait()
  6822. v.PrimaryPart = v.Main
  6823. game.ReplicatedStorage.Interaction.Verify:FireServer('Item owned by player',v)
  6824. v:SetPrimaryPartCFrame(game.Players.LocalPlayer.Character.Head.CFrame)
  6825. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(v)
  6826. end
  6827. end
  6828. end
  6829. end
  6830. end)
  6831. BringUp.Name = "BringUp"
  6832. BringUp.Parent = MainFrame
  6833. BringUp.BackgroundColor3 = Color3.new(0, 0, 0)
  6834. BringUp.BorderColor3 = Color3.new(0, 1, 0)
  6835. BringUp.BorderSizePixel = 5
  6836. BringUp.Position = UDim2.new(0.375, 0, 0.844036698, 0)
  6837. BringUp.Size = UDim2.new(0, 95, 0, 29)
  6838. BringUp.Font = Enum.Font.SciFi
  6839. BringUp.Text = "BringUp"
  6840. BringUp.TextColor3 = Color3.new(0, 1, 0)
  6841. BringUp.TextScaled = true
  6842. BringUp.TextSize = 14
  6843. BringUp.TextWrapped = true
  6844. BringUp.MouseButton1Down:connect(function()
  6845. loadstring(game:GetObjects("rbxassetid://01925396229")[1].Source)()
  6846.  
  6847. end)
  6848. HailStone.Name = "HailStone"
  6849. HailStone.Parent = MainFrame
  6850. HailStone.BackgroundColor3 = Color3.new(0, 0, 0)
  6851. HailStone.BorderColor3 = Color3.new(0, 1, 0)
  6852. HailStone.BorderSizePixel = 5
  6853. HailStone.Position = UDim2.new(0.18928571, 0, 0.426605493, 0)
  6854. HailStone.Size = UDim2.new(0, 96, 0, 41)
  6855. HailStone.Font = Enum.Font.SciFi
  6856. HailStone.Text = "HailStone"
  6857. HailStone.TextColor3 = Color3.new(0, 1, 0)
  6858. HailStone.TextScaled = true
  6859. HailStone.TextSize = 14
  6860. HailStone.TextWrapped = true
  6861. HailStone.MouseButton1Down:connect(function()
  6862. -- Objects
  6863.  
  6864. local Hailstone = Instance.new("ScreenGui")
  6865. local OpenBtn = Instance.new("TextButton")
  6866. local Drag = Instance.new("Frame")
  6867. local AAPressQ = Instance.new("TextLabel")
  6868. local AnimWelcomeScreen = Instance.new("Frame")
  6869. local ImageLabel = Instance.new("ImageLabel")
  6870. local Main = Instance.new("Frame")
  6871. local HomeLocal = Instance.new("TextButton")
  6872. local HomeTopBar = Instance.new("TextButton")
  6873. local HomePlayers = Instance.new("TextButton")
  6874. local HomeTeleports = Instance.new("TextButton")
  6875. local HomeWood = Instance.new("TextButton")
  6876. local HomeTools = Instance.new("TextButton")
  6877. local HomeChangelog = Instance.new("TextButton")
  6878. local HomeLogo = Instance.new("ImageLabel")
  6879. local HiName = Instance.new("TextLabel")
  6880. local HomeSepBar = Instance.new("TextButton")
  6881. local X = Instance.new("TextButton")
  6882. local WoodScreen = Instance.new("Frame")
  6883. local TeleportCutWood = Instance.new("TextButton")
  6884. local SellCutWood = Instance.new("TextButton")
  6885. local TeleportEndTimesWood = Instance.new("TextButton")
  6886. local TeleportCaveCrawlerWood = Instance.new("TextButton")
  6887. local TeleportGifts = Instance.new("TextButton")
  6888. local ToolsScreen = Instance.new("Frame")
  6889. local Dupe = Instance.new("TextButton")
  6890. local Move = Instance.new("TextButton")
  6891. local GoldAxe = Instance.new("TextButton")
  6892. local LeakedItems = Instance.new("TextButton")
  6893. local TeleportTool = Instance.new("TextButton")
  6894. local GreyWood = Instance.new("TextButton")
  6895. local DupeLabel = Instance.new("TextLabel")
  6896. local TeleportsScreen = Instance.new("Frame")
  6897. local Spawn = Instance.new("TextButton")
  6898. local Den = Instance.new("TextButton")
  6899. local StrangeMan = Instance.new("TextButton")
  6900. local Swamp = Instance.new("TextButton")
  6901. local Fancy = Instance.new("TextButton")
  6902. local BoxedCars = Instance.new("TextButton")
  6903. local Dropoff = Instance.new("TextButton")
  6904. local GreenBox = Instance.new("TextButton")
  6905. local Cave = Instance.new("TextButton")
  6906. local Palm = Instance.new("TextButton")
  6907. local WoodRUs = Instance.new("TextButton")
  6908. local LinksLogic = Instance.new("TextButton")
  6909. local YourPlot = Instance.new("TextButton")
  6910. local BobsShack = Instance.new("TextButton")
  6911. local EndTimes = Instance.new("TextButton")
  6912. local Volcano = Instance.new("TextButton")
  6913. local Lodge = Instance.new("TextButton")
  6914. local Shrine = Instance.new("TextButton")
  6915. local PlayersScreen = Instance.new("Frame")
  6916. local P1 = Instance.new("TextButton")
  6917. local P2 = Instance.new("TextButton")
  6918. local P4 = Instance.new("TextButton")
  6919. local P3 = Instance.new("TextButton")
  6920. local P6 = Instance.new("TextButton")
  6921. local P5 = Instance.new("TextButton")
  6922. local TpToPlayer = Instance.new("TextButton")
  6923. local TpToPlayerBase = Instance.new("TextButton")
  6924. local PSelected = Instance.new("TextLabel")
  6925. local LocalScreen = Instance.new("Frame")
  6926. local God = Instance.new("TextButton")
  6927. local Noclip = Instance.new("TextButton")
  6928. local Walkspeed = Instance.new("TextButton")
  6929. local Jumppower = Instance.new("TextButton")
  6930. local NoclipLabel = Instance.new("TextLabel")
  6931. local WalkspeedValue = Instance.new("TextBox")
  6932. local JumppowerValue = Instance.new("TextBox")
  6933. local EtoFly = Instance.new("TextLabel")
  6934. local HomeScreen = Instance.new("Frame")
  6935. local WelcomeName = Instance.new("TextLabel")
  6936. local WelcomeMOTD = Instance.new("TextLabel")
  6937. local WelcomeAuthor = Instance.new("TextLabel")
  6938. local ChangelogScreen = Instance.new("Frame")
  6939. local Logs = Instance.new("TextLabel")
  6940. local Logs2 = Instance.new("TextLabel")
  6941. local Logs3 = Instance.new("TextLabel")
  6942. local Log1and2Div = Instance.new("TextButton")
  6943. local Log2and3Div = Instance.new("TextButton")
  6944.  
  6945. -- Properties
  6946.  
  6947. Hailstone.Name = "Hailstone"
  6948. Hailstone.Parent = game.CoreGui
  6949. Hailstone.ResetOnSpawn = false
  6950.  
  6951. OpenBtn.Name = "OpenBtn"
  6952. OpenBtn.Parent = Hailstone
  6953. OpenBtn.BackgroundColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  6954. OpenBtn.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  6955. OpenBtn.BorderSizePixel = 3
  6956. OpenBtn.Position = UDim2.new(0, 0, 0.826086938, 0)
  6957. OpenBtn.Size = UDim2.new(0, 79, 0, 23)
  6958. OpenBtn.Visible = false
  6959. OpenBtn.Font = Enum.Font.SourceSans
  6960. OpenBtn.Text = "Open"
  6961. OpenBtn.TextColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  6962. OpenBtn.TextSize = 14
  6963. OpenBtn.TextWrapped = true
  6964.  
  6965. Drag.Name = "Drag"
  6966. Drag.Parent = Hailstone
  6967. Drag.Active = true
  6968. Drag.BackgroundColor3 = Color3.new(1, 1, 1)
  6969. Drag.BackgroundTransparency = 1
  6970. Drag.BorderSizePixel = 0
  6971. Drag.Draggable = true
  6972. Drag.Position = UDim2.new(0.373752683, 0, 0.267786592, 0)
  6973. Drag.Selectable = true
  6974. Drag.Size = UDim2.new(0, 451, 0, 234)
  6975.  
  6976. AAPressQ.Name = "AAPressQ"
  6977. AAPressQ.Parent = Hailstone
  6978. AAPressQ.BackgroundColor3 = Color3.new(1, 1, 1)
  6979. AAPressQ.BackgroundTransparency = 1
  6980. AAPressQ.BorderSizePixel = 0
  6981. AAPressQ.Position = UDim2.new(0.283759117, 0, 0.252964437, 0)
  6982. AAPressQ.Size = UDim2.new(0, 573, 0, 257)
  6983. AAPressQ.Font = Enum.Font.SourceSans
  6984. AAPressQ.Text = "Press \"Q\""
  6985. AAPressQ.TextSize = 100
  6986.  
  6987. AnimWelcomeScreen.Name = "AnimWelcomeScreen"
  6988. AnimWelcomeScreen.Parent = Drag
  6989. AnimWelcomeScreen.BackgroundColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  6990. AnimWelcomeScreen.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  6991. AnimWelcomeScreen.BorderSizePixel = 3
  6992. AnimWelcomeScreen.Position = UDim2.new(0.328511298, 0, -0.20692715, 0)
  6993. AnimWelcomeScreen.Size = UDim2.new(0, 209, 0, 199)
  6994. AnimWelcomeScreen.Visible = false
  6995.  
  6996. ImageLabel.Parent = AnimWelcomeScreen
  6997. ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  6998. ImageLabel.BackgroundTransparency = 1
  6999. ImageLabel.BorderSizePixel = 0
  7000. ImageLabel.Size = UDim2.new(0, 209, 0, 199)
  7001. ImageLabel.Image = "rbxassetid://1393851029"
  7002.  
  7003. Main.Name = "Main"
  7004. Main.Parent = Drag
  7005. Main.BackgroundColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  7006. Main.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7007. Main.BorderSizePixel = 3
  7008. Main.Position = UDim2.new(-0.00221729279, 0, 0.0128205121, 0)
  7009. Main.Size = UDim2.new(0, 450, 0, 232)
  7010. Main.Visible = false
  7011.  
  7012. HomeLocal.Name = "HomeLocal"
  7013. HomeLocal.Parent = Main
  7014. HomeLocal.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7015. HomeLocal.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7016. HomeLocal.BorderSizePixel = 2
  7017. HomeLocal.Position = UDim2.new(0.0244444441, 0, 0.206896558, 0)
  7018. HomeLocal.Size = UDim2.new(0, 84, 0, 21)
  7019. HomeLocal.Font = Enum.Font.SourceSans
  7020. HomeLocal.Text = "Local"
  7021. HomeLocal.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7022. HomeLocal.TextSize = 24
  7023. HomeLocal.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7024.  
  7025. HomeTopBar.Name = "HomeTopBar"
  7026. HomeTopBar.Parent = Main
  7027. HomeTopBar.BackgroundColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7028. HomeTopBar.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7029. HomeTopBar.Position = UDim2.new(0, 0, 0.159482777, 0)
  7030. HomeTopBar.Size = UDim2.new(0, 450, 0, 1)
  7031. HomeTopBar.Font = Enum.Font.SourceSans
  7032. HomeTopBar.Text = ""
  7033. HomeTopBar.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7034. HomeTopBar.TextSize = 24
  7035. HomeTopBar.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7036.  
  7037. HomePlayers.Name = "HomePlayers"
  7038. HomePlayers.Parent = Main
  7039. HomePlayers.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7040. HomePlayers.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7041. HomePlayers.BorderSizePixel = 2
  7042. HomePlayers.Position = UDim2.new(0.0244444441, 0, 0.331896544, 0)
  7043. HomePlayers.Size = UDim2.new(0, 84, 0, 21)
  7044. HomePlayers.Font = Enum.Font.SourceSans
  7045. HomePlayers.Text = "Players"
  7046. HomePlayers.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7047. HomePlayers.TextSize = 24
  7048. HomePlayers.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7049.  
  7050. HomeTeleports.Name = "HomeTeleports"
  7051. HomeTeleports.Parent = Main
  7052. HomeTeleports.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7053. HomeTeleports.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7054. HomeTeleports.BorderSizePixel = 2
  7055. HomeTeleports.Position = UDim2.new(0.0244444441, 0, 0.459051698, 0)
  7056. HomeTeleports.Size = UDim2.new(0, 84, 0, 21)
  7057. HomeTeleports.Font = Enum.Font.SourceSans
  7058. HomeTeleports.Text = "Teleports"
  7059. HomeTeleports.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7060. HomeTeleports.TextSize = 24
  7061. HomeTeleports.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7062.  
  7063. HomeWood.Name = "HomeWood"
  7064. HomeWood.Parent = Main
  7065. HomeWood.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7066. HomeWood.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7067. HomeWood.BorderSizePixel = 2
  7068. HomeWood.Position = UDim2.new(0.0244444441, 0, 0.594827592, 0)
  7069. HomeWood.Size = UDim2.new(0, 84, 0, 21)
  7070. HomeWood.Font = Enum.Font.SourceSans
  7071. HomeWood.Text = "Wood"
  7072. HomeWood.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7073. HomeWood.TextSize = 24
  7074. HomeWood.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7075.  
  7076. HomeTools.Name = "HomeTools"
  7077. HomeTools.Parent = Main
  7078. HomeTools.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7079. HomeTools.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7080. HomeTools.BorderSizePixel = 2
  7081. HomeTools.Position = UDim2.new(0.0244444441, 0, 0.732758641, 0)
  7082. HomeTools.Size = UDim2.new(0, 84, 0, 21)
  7083. HomeTools.Font = Enum.Font.SourceSans
  7084. HomeTools.Text = "Tools"
  7085. HomeTools.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7086. HomeTools.TextSize = 24
  7087. HomeTools.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7088.  
  7089. HomeChangelog.Name = "HomeChangelog"
  7090. HomeChangelog.Parent = Main
  7091. HomeChangelog.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7092. HomeChangelog.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7093. HomeChangelog.BorderSizePixel = 2
  7094. HomeChangelog.Position = UDim2.new(0.0244444441, 0, 0.875, 0)
  7095. HomeChangelog.Size = UDim2.new(0, 84, 0, 21)
  7096. HomeChangelog.Font = Enum.Font.SourceSans
  7097. HomeChangelog.Text = "Changelog"
  7098. HomeChangelog.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7099. HomeChangelog.TextSize = 22
  7100. HomeChangelog.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7101.  
  7102. HomeLogo.Name = "HomeLogo"
  7103. HomeLogo.Parent = Main
  7104. HomeLogo.BackgroundColor3 = Color3.new(1, 1, 1)
  7105. HomeLogo.BackgroundTransparency = 1
  7106. HomeLogo.BorderSizePixel = 0
  7107. HomeLogo.Position = UDim2.new(0.456999987, 0, -0.11896389, 0)
  7108. HomeLogo.Size = UDim2.new(0, 156, 0, 99)
  7109. HomeLogo.Image = "rbxassetid://1393851029"
  7110.  
  7111. HiName.Name = "HiName"
  7112. HiName.Parent = Main
  7113. HiName.BackgroundColor3 = Color3.new(1, 1, 1)
  7114. HiName.BackgroundTransparency = 1
  7115. HiName.BorderSizePixel = 0
  7116. HiName.Position = UDim2.new(0.0244444441, 0, 0.0258620698, 0)
  7117. HiName.Size = UDim2.new(0, 189, 0, 25)
  7118. HiName.Font = Enum.Font.SourceSans
  7119. HiName.Text = "Hi"
  7120. HiName.TextColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7121. HiName.TextScaled = true
  7122. HiName.TextSize = 14
  7123. HiName.TextStrokeColor3 = Color3.new(0.000153787, 0.000246059, 0.000322953)
  7124. HiName.TextStrokeTransparency = 0.64899998903275
  7125. HiName.TextWrapped = true
  7126. HiName.TextXAlignment = Enum.TextXAlignment.Left
  7127.  
  7128. HomeSepBar.Name = "HomeSepBar"
  7129. HomeSepBar.Parent = Main
  7130. HomeSepBar.BackgroundColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7131. HomeSepBar.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7132. HomeSepBar.Position = UDim2.new(0.24888888, 0, 0.206896558, 0)
  7133. HomeSepBar.Size = UDim2.new(0, 1, 0, 176)
  7134. HomeSepBar.Font = Enum.Font.SourceSans
  7135. HomeSepBar.Text = ""
  7136. HomeSepBar.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7137. HomeSepBar.TextSize = 24
  7138. HomeSepBar.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7139.  
  7140. X.Name = "X"
  7141. X.Parent = Main
  7142. X.BackgroundColor3 = Color3.new(1, 1, 1)
  7143. X.BackgroundTransparency = 1
  7144. X.BorderSizePixel = 0
  7145. X.Position = UDim2.new(0.937777758, 0, 0, 0)
  7146. X.Size = UDim2.new(0, 28, 0, 25)
  7147. X.Font = Enum.Font.SourceSans
  7148. X.Text = "X"
  7149. X.TextColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7150. X.TextScaled = true
  7151. X.TextSize = 14
  7152. X.TextWrapped = true
  7153.  
  7154. WoodScreen.Name = "WoodScreen"
  7155. WoodScreen.Parent = Drag
  7156. WoodScreen.BackgroundColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  7157. WoodScreen.BackgroundTransparency = 1
  7158. WoodScreen.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7159. WoodScreen.BorderSizePixel = 0
  7160. WoodScreen.Draggable = true
  7161. WoodScreen.Position = UDim2.new(0.0164813697, 0, -0.000777035952, 0)
  7162. WoodScreen.Size = UDim2.new(0, 444, 0, 230)
  7163. WoodScreen.Visible = false
  7164.  
  7165. TeleportCutWood.Name = "Teleport Cut Wood"
  7166. TeleportCutWood.Parent = WoodScreen
  7167. TeleportCutWood.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7168. TeleportCutWood.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7169. TeleportCutWood.BorderSizePixel = 2
  7170. TeleportCutWood.Position = UDim2.new(0.457207203, 0, 0.226086959, 0)
  7171. TeleportCutWood.Size = UDim2.new(0, 147, 0, 21)
  7172. TeleportCutWood.Font = Enum.Font.SourceSans
  7173. TeleportCutWood.Text = "Teleport Cut Wood"
  7174. TeleportCutWood.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7175. TeleportCutWood.TextScaled = true
  7176. TeleportCutWood.TextSize = 24
  7177. TeleportCutWood.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7178. TeleportCutWood.TextWrapped = true
  7179.  
  7180. SellCutWood.Name = "Sell Cut Wood"
  7181. SellCutWood.Parent = WoodScreen
  7182. SellCutWood.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7183. SellCutWood.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7184. SellCutWood.BorderSizePixel = 2
  7185. SellCutWood.Position = UDim2.new(0.457207203, 0, 0.391304344, 0)
  7186. SellCutWood.Size = UDim2.new(0, 147, 0, 21)
  7187. SellCutWood.Font = Enum.Font.SourceSans
  7188. SellCutWood.Text = "Sell Cut Wood"
  7189. SellCutWood.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7190. SellCutWood.TextSize = 24
  7191. SellCutWood.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7192.  
  7193. TeleportEndTimesWood.Name = "Teleport End Times Wood"
  7194. TeleportEndTimesWood.Parent = WoodScreen
  7195. TeleportEndTimesWood.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7196. TeleportEndTimesWood.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7197. TeleportEndTimesWood.BorderSizePixel = 2
  7198. TeleportEndTimesWood.Position = UDim2.new(0.457207203, 0, 0.556521714, 0)
  7199. TeleportEndTimesWood.Size = UDim2.new(0, 147, 0, 21)
  7200. TeleportEndTimesWood.Font = Enum.Font.SourceSans
  7201. TeleportEndTimesWood.Text = "Teleport End Times"
  7202. TeleportEndTimesWood.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7203. TeleportEndTimesWood.TextScaled = true
  7204. TeleportEndTimesWood.TextSize = 24
  7205. TeleportEndTimesWood.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7206. TeleportEndTimesWood.TextWrapped = true
  7207.  
  7208. TeleportCaveCrawlerWood.Name = "Teleport Cave Crawler Wood"
  7209. TeleportCaveCrawlerWood.Parent = WoodScreen
  7210. TeleportCaveCrawlerWood.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7211. TeleportCaveCrawlerWood.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7212. TeleportCaveCrawlerWood.BorderSizePixel = 2
  7213. TeleportCaveCrawlerWood.Position = UDim2.new(0.457207203, 0, 0.70869565, 0)
  7214. TeleportCaveCrawlerWood.Size = UDim2.new(0, 147, 0, 21)
  7215. TeleportCaveCrawlerWood.Font = Enum.Font.SourceSans
  7216. TeleportCaveCrawlerWood.Text = "Teleport Cave Crawler"
  7217. TeleportCaveCrawlerWood.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7218. TeleportCaveCrawlerWood.TextScaled = true
  7219. TeleportCaveCrawlerWood.TextSize = 24
  7220. TeleportCaveCrawlerWood.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7221. TeleportCaveCrawlerWood.TextWrapped = true
  7222.  
  7223. TeleportGifts.Name = "Teleport Gifts"
  7224. TeleportGifts.Parent = WoodScreen
  7225. TeleportGifts.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7226. TeleportGifts.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7227. TeleportGifts.BorderSizePixel = 2
  7228. TeleportGifts.Position = UDim2.new(0.456081063, 0, 0.869565248, 0)
  7229. TeleportGifts.Size = UDim2.new(0, 147, 0, 21)
  7230. TeleportGifts.Font = Enum.Font.SourceSans
  7231. TeleportGifts.Text = "Teleport Gifts"
  7232. TeleportGifts.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7233. TeleportGifts.TextScaled = true
  7234. TeleportGifts.TextSize = 24
  7235. TeleportGifts.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7236. TeleportGifts.TextWrapped = true
  7237.  
  7238. ToolsScreen.Name = "ToolsScreen"
  7239. ToolsScreen.Parent = Drag
  7240. ToolsScreen.BackgroundColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  7241. ToolsScreen.BackgroundTransparency = 1
  7242. ToolsScreen.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7243. ToolsScreen.BorderSizePixel = 0
  7244. ToolsScreen.Draggable = true
  7245. ToolsScreen.Position = UDim2.new(0.0164813697, 0, -0.000777035952, 0)
  7246. ToolsScreen.Size = UDim2.new(0, 444, 0, 230)
  7247. ToolsScreen.Visible = false
  7248.  
  7249. Dupe.Name = "Dupe"
  7250. Dupe.Parent = ToolsScreen
  7251. Dupe.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7252. Dupe.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7253. Dupe.BorderSizePixel = 2
  7254. Dupe.Position = UDim2.new(0.457207203, 0, 0.199999988, 0)
  7255. Dupe.Size = UDim2.new(0, 147, 0, 20)
  7256. Dupe.Font = Enum.Font.SourceSans
  7257. Dupe.Text = "Duplication"
  7258. Dupe.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7259. Dupe.TextScaled = true
  7260. Dupe.TextSize = 24
  7261. Dupe.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7262. Dupe.TextWrapped = true
  7263.  
  7264. Move.Name = "Move"
  7265. Move.Parent = ToolsScreen
  7266. Move.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7267. Move.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7268. Move.BorderSizePixel = 2
  7269. Move.Position = UDim2.new(0.457207203, 0, 0.347826093, 0)
  7270. Move.Size = UDim2.new(0, 147, 0, 20)
  7271. Move.Font = Enum.Font.SourceSans
  7272. Move.Text = "Hard Dragger"
  7273. Move.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7274. Move.TextScaled = true
  7275. Move.TextSize = 24
  7276. Move.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7277. Move.TextWrapped = true
  7278.  
  7279. GoldAxe.Name = "Gold Axe"
  7280. GoldAxe.Parent = ToolsScreen
  7281. GoldAxe.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7282. GoldAxe.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7283. GoldAxe.BorderSizePixel = 2
  7284. GoldAxe.Position = UDim2.new(0.457207233, 0, 0.478260875, 0)
  7285. GoldAxe.Size = UDim2.new(0, 147, 0, 20)
  7286. GoldAxe.Font = Enum.Font.SourceSans
  7287. GoldAxe.Text = "Golden Axe"
  7288. GoldAxe.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7289. GoldAxe.TextScaled = true
  7290. GoldAxe.TextSize = 24
  7291. GoldAxe.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7292. GoldAxe.TextWrapped = true
  7293.  
  7294. LeakedItems.Name = "Leaked Items"
  7295. LeakedItems.Parent = ToolsScreen
  7296. LeakedItems.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7297. LeakedItems.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7298. LeakedItems.BorderSizePixel = 2
  7299. LeakedItems.Position = UDim2.new(0.456081092, 0, 0.617391288, 0)
  7300. LeakedItems.Size = UDim2.new(0, 147, 0, 20)
  7301. LeakedItems.Font = Enum.Font.SourceSans
  7302. LeakedItems.Text = "Leaked Items"
  7303. LeakedItems.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7304. LeakedItems.TextScaled = true
  7305. LeakedItems.TextSize = 24
  7306. LeakedItems.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7307. LeakedItems.TextWrapped = true
  7308.  
  7309. TeleportTool.Name = "Teleport Tool"
  7310. TeleportTool.Parent = ToolsScreen
  7311. TeleportTool.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7312. TeleportTool.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7313. TeleportTool.BorderSizePixel = 2
  7314. TeleportTool.Position = UDim2.new(0.456081092, 0, 0.756521761, 0)
  7315. TeleportTool.Size = UDim2.new(0, 147, 0, 20)
  7316. TeleportTool.Font = Enum.Font.SourceSans
  7317. TeleportTool.Text = "Ctrl + Click TP"
  7318. TeleportTool.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7319. TeleportTool.TextScaled = true
  7320. TeleportTool.TextSize = 24
  7321. TeleportTool.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7322. TeleportTool.TextWrapped = true
  7323.  
  7324. GreyWood.Name = "Grey Wood"
  7325. GreyWood.Parent = ToolsScreen
  7326. GreyWood.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7327. GreyWood.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7328. GreyWood.BorderSizePixel = 2
  7329. GreyWood.Position = UDim2.new(0.456081092, 0, 0.900000036, 0)
  7330. GreyWood.Size = UDim2.new(0, 147, 0, 20)
  7331. GreyWood.Font = Enum.Font.SourceSans
  7332. GreyWood.Text = "Grey Wood"
  7333. GreyWood.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7334. GreyWood.TextScaled = true
  7335. GreyWood.TextSize = 24
  7336. GreyWood.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7337. GreyWood.TextWrapped = true
  7338.  
  7339. DupeLabel.Name = "DupeLabel"
  7340. DupeLabel.Parent = ToolsScreen
  7341. DupeLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  7342. DupeLabel.BackgroundTransparency = 1
  7343. DupeLabel.BorderColor3 = Color3.new(0.666667, 0, 0)
  7344. DupeLabel.BorderSizePixel = 0
  7345. DupeLabel.Position = UDim2.new(0.493243247, 0, 0.286956519, 0)
  7346. DupeLabel.Size = UDim2.new(0, 115, 0, 14)
  7347. DupeLabel.Font = Enum.Font.SciFi
  7348. DupeLabel.Text = "Disabled"
  7349. DupeLabel.TextColor3 = Color3.new(0.666667, 0, 0)
  7350. DupeLabel.TextSize = 14
  7351.  
  7352. TeleportsScreen.Name = "TeleportsScreen"
  7353. TeleportsScreen.Parent = Drag
  7354. TeleportsScreen.BackgroundColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  7355. TeleportsScreen.BackgroundTransparency = 1
  7356. TeleportsScreen.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7357. TeleportsScreen.BorderSizePixel = 0
  7358. TeleportsScreen.Draggable = true
  7359. TeleportsScreen.Position = UDim2.new(0.0164813697, 0, -0.000777035952, 0)
  7360. TeleportsScreen.Size = UDim2.new(0, 444, 0, 230)
  7361. TeleportsScreen.Visible = false
  7362.  
  7363. Spawn.Name = "Spawn"
  7364. Spawn.Parent = TeleportsScreen
  7365. Spawn.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7366. Spawn.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7367. Spawn.BorderSizePixel = 2
  7368. Spawn.Position = UDim2.new(0.290540546, 0, 0.226086959, 0)
  7369. Spawn.Size = UDim2.new(0, 84, 0, 21)
  7370. Spawn.Font = Enum.Font.SourceSans
  7371. Spawn.Text = "Spawn"
  7372. Spawn.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7373. Spawn.TextSize = 24
  7374. Spawn.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7375. Spawn.TextWrapped = true
  7376.  
  7377. Den.Name = "Den"
  7378. Den.Parent = TeleportsScreen
  7379. Den.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7380. Den.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7381. Den.BorderSizePixel = 2
  7382. Den.Position = UDim2.new(0.290540546, 0, 0.352173924, 0)
  7383. Den.Size = UDim2.new(0, 84, 0, 21)
  7384. Den.Font = Enum.Font.SourceSans
  7385. Den.Text = "The Den"
  7386. Den.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7387. Den.TextSize = 24
  7388. Den.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7389. Den.TextWrapped = true
  7390.  
  7391. StrangeMan.Name = "Strange Man"
  7392. StrangeMan.Parent = TeleportsScreen
  7393. StrangeMan.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7394. StrangeMan.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7395. StrangeMan.BorderSizePixel = 2
  7396. StrangeMan.Position = UDim2.new(0.290540546, 0, 0.482608676, 0)
  7397. StrangeMan.Size = UDim2.new(0, 84, 0, 21)
  7398. StrangeMan.Font = Enum.Font.SourceSans
  7399. StrangeMan.Text = "Strange Man"
  7400. StrangeMan.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7401. StrangeMan.TextScaled = true
  7402. StrangeMan.TextSize = 24
  7403. StrangeMan.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7404. StrangeMan.TextWrapped = true
  7405.  
  7406. Swamp.Name = "Swamp"
  7407. Swamp.Parent = TeleportsScreen
  7408. Swamp.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7409. Swamp.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7410. Swamp.BorderSizePixel = 2
  7411. Swamp.Position = UDim2.new(0.290540546, 0, 0.617391288, 0)
  7412. Swamp.Size = UDim2.new(0, 84, 0, 21)
  7413. Swamp.Font = Enum.Font.SourceSans
  7414. Swamp.Text = "Swamp"
  7415. Swamp.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7416. Swamp.TextSize = 24
  7417. Swamp.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7418. Swamp.TextWrapped = true
  7419.  
  7420. Fancy.Name = "Fancy"
  7421. Fancy.Parent = TeleportsScreen
  7422. Fancy.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7423. Fancy.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7424. Fancy.BorderSizePixel = 2
  7425. Fancy.Position = UDim2.new(0.290540546, 0, 0.747826099, 0)
  7426. Fancy.Size = UDim2.new(0, 84, 0, 21)
  7427. Fancy.Font = Enum.Font.SourceSans
  7428. Fancy.Text = "Fancy"
  7429. Fancy.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7430. Fancy.TextSize = 24
  7431. Fancy.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7432. Fancy.TextWrapped = true
  7433.  
  7434. BoxedCars.Name = "Boxed Cars"
  7435. BoxedCars.Parent = TeleportsScreen
  7436. BoxedCars.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7437. BoxedCars.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7438. BoxedCars.BorderSizePixel = 2
  7439. BoxedCars.Position = UDim2.new(0.290540546, 0, 0.87391305, 0)
  7440. BoxedCars.Size = UDim2.new(0, 84, 0, 21)
  7441. BoxedCars.Font = Enum.Font.SourceSans
  7442. BoxedCars.Text = "Boxed Cars"
  7443. BoxedCars.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7444. BoxedCars.TextScaled = true
  7445. BoxedCars.TextSize = 24
  7446. BoxedCars.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7447. BoxedCars.TextWrapped = true
  7448.  
  7449. Dropoff.Name = "Dropoff"
  7450. Dropoff.Parent = TeleportsScreen
  7451. Dropoff.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7452. Dropoff.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7453. Dropoff.BorderSizePixel = 2
  7454. Dropoff.Position = UDim2.new(0.538288295, 0, 0.226086959, 0)
  7455. Dropoff.Size = UDim2.new(0, 84, 0, 21)
  7456. Dropoff.Font = Enum.Font.SourceSans
  7457. Dropoff.Text = "Dropoff"
  7458. Dropoff.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7459. Dropoff.TextSize = 24
  7460. Dropoff.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7461. Dropoff.TextWrapped = true
  7462.  
  7463. GreenBox.Name = "Green Box"
  7464. GreenBox.Parent = TeleportsScreen
  7465. GreenBox.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7466. GreenBox.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7467. GreenBox.BorderSizePixel = 2
  7468. GreenBox.Position = UDim2.new(0.538288295, 0, 0.352173924, 0)
  7469. GreenBox.Size = UDim2.new(0, 84, 0, 21)
  7470. GreenBox.Font = Enum.Font.SourceSans
  7471. GreenBox.Text = "Green Box"
  7472. GreenBox.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7473. GreenBox.TextScaled = true
  7474. GreenBox.TextSize = 24
  7475. GreenBox.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7476. GreenBox.TextWrapped = true
  7477.  
  7478. Cave.Name = "Cave"
  7479. Cave.Parent = TeleportsScreen
  7480. Cave.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7481. Cave.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7482. Cave.BorderSizePixel = 2
  7483. Cave.Position = UDim2.new(0.538288295, 0, 0.482608676, 0)
  7484. Cave.Size = UDim2.new(0, 84, 0, 21)
  7485. Cave.Font = Enum.Font.SourceSans
  7486. Cave.Text = "Cave"
  7487. Cave.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7488. Cave.TextSize = 24
  7489. Cave.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7490. Cave.TextWrapped = true
  7491.  
  7492. Palm.Name = "Palm"
  7493. Palm.Parent = TeleportsScreen
  7494. Palm.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7495. Palm.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7496. Palm.BorderSizePixel = 2
  7497. Palm.Position = UDim2.new(0.538288295, 0, 0.617391288, 0)
  7498. Palm.Size = UDim2.new(0, 84, 0, 21)
  7499. Palm.Font = Enum.Font.SourceSans
  7500. Palm.Text = "Palm"
  7501. Palm.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7502. Palm.TextSize = 24
  7503. Palm.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7504. Palm.TextWrapped = true
  7505.  
  7506. WoodRUs.Name = "Wood R Us"
  7507. WoodRUs.Parent = TeleportsScreen
  7508. WoodRUs.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7509. WoodRUs.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7510. WoodRUs.BorderSizePixel = 2
  7511. WoodRUs.Position = UDim2.new(0.538288295, 0, 0.747826099, 0)
  7512. WoodRUs.Size = UDim2.new(0, 84, 0, 21)
  7513. WoodRUs.Font = Enum.Font.SourceSans
  7514. WoodRUs.Text = "Wood R Us"
  7515. WoodRUs.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7516. WoodRUs.TextScaled = true
  7517. WoodRUs.TextSize = 24
  7518. WoodRUs.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7519. WoodRUs.TextWrapped = true
  7520.  
  7521. LinksLogic.Name = "Links Logic"
  7522. LinksLogic.Parent = TeleportsScreen
  7523. LinksLogic.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7524. LinksLogic.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7525. LinksLogic.BorderSizePixel = 2
  7526. LinksLogic.Position = UDim2.new(0.538288295, 0, 0.87391305, 0)
  7527. LinksLogic.Size = UDim2.new(0, 84, 0, 21)
  7528. LinksLogic.Font = Enum.Font.SourceSans
  7529. LinksLogic.Text = "Link's Logic"
  7530. LinksLogic.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7531. LinksLogic.TextScaled = true
  7532. LinksLogic.TextSize = 24
  7533. LinksLogic.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7534. LinksLogic.TextWrapped = true
  7535.  
  7536. YourPlot.Name = "Your Plot"
  7537. YourPlot.Parent = TeleportsScreen
  7538. YourPlot.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7539. YourPlot.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7540. YourPlot.BorderSizePixel = 2
  7541. YourPlot.Position = UDim2.new(0.77477479, 0, 0.87391305, 0)
  7542. YourPlot.Size = UDim2.new(0, 84, 0, 21)
  7543. YourPlot.Font = Enum.Font.SourceSans
  7544. YourPlot.Text = "Your Plot"
  7545. YourPlot.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7546. YourPlot.TextSize = 24
  7547. YourPlot.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7548. YourPlot.TextWrapped = true
  7549.  
  7550. BobsShack.Name = "Bobs Shack"
  7551. BobsShack.Parent = TeleportsScreen
  7552. BobsShack.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7553. BobsShack.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7554. BobsShack.BorderSizePixel = 2
  7555. BobsShack.Position = UDim2.new(0.77477479, 0, 0.747826099, 0)
  7556. BobsShack.Size = UDim2.new(0, 84, 0, 21)
  7557. BobsShack.Font = Enum.Font.SourceSans
  7558. BobsShack.Text = "Bob's Shack"
  7559. BobsShack.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7560. BobsShack.TextScaled = true
  7561. BobsShack.TextSize = 24
  7562. BobsShack.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7563. BobsShack.TextWrapped = true
  7564.  
  7565. EndTimes.Name = "End Times"
  7566. EndTimes.Parent = TeleportsScreen
  7567. EndTimes.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7568. EndTimes.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7569. EndTimes.BorderSizePixel = 2
  7570. EndTimes.Position = UDim2.new(0.77477479, 0, 0.617391288, 0)
  7571. EndTimes.Size = UDim2.new(0, 84, 0, 21)
  7572. EndTimes.Font = Enum.Font.SourceSans
  7573. EndTimes.Text = "End Times"
  7574. EndTimes.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7575. EndTimes.TextScaled = true
  7576. EndTimes.TextSize = 24
  7577. EndTimes.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7578. EndTimes.TextWrapped = true
  7579.  
  7580. Volcano.Name = "Volcano"
  7581. Volcano.Parent = TeleportsScreen
  7582. Volcano.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7583. Volcano.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7584. Volcano.BorderSizePixel = 2
  7585. Volcano.Position = UDim2.new(0.77477479, 0, 0.482608676, 0)
  7586. Volcano.Size = UDim2.new(0, 84, 0, 21)
  7587. Volcano.Font = Enum.Font.SourceSans
  7588. Volcano.Text = "Volcano"
  7589. Volcano.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7590. Volcano.TextSize = 24
  7591. Volcano.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7592. Volcano.TextWrapped = true
  7593.  
  7594. Lodge.Name = "Lodge"
  7595. Lodge.Parent = TeleportsScreen
  7596. Lodge.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7597. Lodge.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7598. Lodge.BorderSizePixel = 2
  7599. Lodge.Position = UDim2.new(0.77477479, 0, 0.352173924, 0)
  7600. Lodge.Size = UDim2.new(0, 84, 0, 21)
  7601. Lodge.Font = Enum.Font.SourceSans
  7602. Lodge.Text = "Lodge"
  7603. Lodge.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7604. Lodge.TextSize = 24
  7605. Lodge.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7606. Lodge.TextWrapped = true
  7607.  
  7608. Shrine.Name = "Shrine"
  7609. Shrine.Parent = TeleportsScreen
  7610. Shrine.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7611. Shrine.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7612. Shrine.BorderSizePixel = 2
  7613. Shrine.Position = UDim2.new(0.77477479, 0, 0.226086959, 0)
  7614. Shrine.Size = UDim2.new(0, 84, 0, 21)
  7615. Shrine.Font = Enum.Font.SourceSans
  7616. Shrine.Text = "Shrine"
  7617. Shrine.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7618. Shrine.TextSize = 24
  7619. Shrine.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7620. Shrine.TextWrapped = true
  7621.  
  7622. PlayersScreen.Name = "PlayersScreen"
  7623. PlayersScreen.Parent = Drag
  7624. PlayersScreen.BackgroundColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  7625. PlayersScreen.BackgroundTransparency = 1
  7626. PlayersScreen.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7627. PlayersScreen.BorderSizePixel = 0
  7628. PlayersScreen.Draggable = true
  7629. PlayersScreen.Position = UDim2.new(0.0164813697, 0, -0.000777035952, 0)
  7630. PlayersScreen.Size = UDim2.new(0, 444, 0, 230)
  7631. PlayersScreen.Visible = false
  7632.  
  7633. P1.Name = "P1"
  7634. P1.Parent = PlayersScreen
  7635. P1.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7636. P1.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7637. P1.BorderSizePixel = 2
  7638. P1.Position = UDim2.new(0.272522509, 0, 0.226086959, 0)
  7639. P1.Size = UDim2.new(0, 147, 0, 21)
  7640. P1.Font = Enum.Font.SourceSans
  7641. P1.Text = " "
  7642. P1.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7643. P1.TextSize = 24
  7644. P1.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7645.  
  7646. P2.Name = "P2"
  7647. P2.Parent = PlayersScreen
  7648. P2.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7649. P2.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7650. P2.BorderSizePixel = 2
  7651. P2.Position = UDim2.new(0.628378332, 0, 0.226086974, 0)
  7652. P2.Size = UDim2.new(0, 158, 0, 21)
  7653. P2.Font = Enum.Font.SourceSans
  7654. P2.Text = " "
  7655. P2.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7656. P2.TextSize = 24
  7657. P2.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7658.  
  7659. P4.Name = "P4"
  7660. P4.Parent = PlayersScreen
  7661. P4.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7662. P4.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7663. P4.BorderSizePixel = 2
  7664. P4.Position = UDim2.new(0.628378332, 0, 0.352173924, 0)
  7665. P4.Size = UDim2.new(0, 158, 0, 21)
  7666. P4.Font = Enum.Font.SourceSans
  7667. P4.Text = " "
  7668. P4.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7669. P4.TextSize = 24
  7670. P4.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7671.  
  7672. P3.Name = "P3"
  7673. P3.Parent = PlayersScreen
  7674. P3.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7675. P3.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7676. P3.BorderSizePixel = 2
  7677. P3.Position = UDim2.new(0.272522509, 0, 0.352173924, 0)
  7678. P3.Size = UDim2.new(0, 147, 0, 21)
  7679. P3.Font = Enum.Font.SourceSans
  7680. P3.Text = " "
  7681. P3.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7682. P3.TextSize = 24
  7683. P3.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7684.  
  7685. P6.Name = "P6"
  7686. P6.Parent = PlayersScreen
  7687. P6.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7688. P6.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7689. P6.BorderSizePixel = 2
  7690. P6.Position = UDim2.new(0.628378332, 0, 0.482608706, 0)
  7691. P6.Size = UDim2.new(0, 158, 0, 21)
  7692. P6.Font = Enum.Font.SourceSans
  7693. P6.Text = ""
  7694. P6.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7695. P6.TextSize = 24
  7696. P6.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7697.  
  7698. P5.Name = "P5"
  7699. P5.Parent = PlayersScreen
  7700. P5.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7701. P5.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7702. P5.BorderSizePixel = 2
  7703. P5.Position = UDim2.new(0.272522509, 0, 0.482608706, 0)
  7704. P5.Size = UDim2.new(0, 147, 0, 21)
  7705. P5.Font = Enum.Font.SourceSans
  7706. P5.Text = " "
  7707. P5.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7708. P5.TextSize = 24
  7709. P5.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7710.  
  7711. TpToPlayer.Name = "TpToPlayer"
  7712. TpToPlayer.Parent = PlayersScreen
  7713. TpToPlayer.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7714. TpToPlayer.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7715. TpToPlayer.BorderSizePixel = 2
  7716. TpToPlayer.Position = UDim2.new(0.405405402, 0, 0.656521738, 0)
  7717. TpToPlayer.Size = UDim2.new(0, 179, 0, 21)
  7718. TpToPlayer.Font = Enum.Font.SourceSans
  7719. TpToPlayer.Text = "Teleport To Player"
  7720. TpToPlayer.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7721. TpToPlayer.TextSize = 24
  7722. TpToPlayer.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7723.  
  7724. TpToPlayerBase.Name = "TpToPlayerBase"
  7725. TpToPlayerBase.Parent = PlayersScreen
  7726. TpToPlayerBase.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7727. TpToPlayerBase.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7728. TpToPlayerBase.BorderSizePixel = 2
  7729. TpToPlayerBase.Position = UDim2.new(0.405405402, 0, 0.813043475, 0)
  7730. TpToPlayerBase.Size = UDim2.new(0, 179, 0, 21)
  7731. TpToPlayerBase.Font = Enum.Font.SourceSans
  7732. TpToPlayerBase.Text = "Teleport To Base"
  7733. TpToPlayerBase.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7734. TpToPlayerBase.TextSize = 24
  7735. TpToPlayerBase.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7736.  
  7737. PSelected.Name = "PSelected"
  7738. PSelected.Parent = PlayersScreen
  7739. PSelected.BackgroundColor3 = Color3.new(1, 1, 1)
  7740. PSelected.BackgroundTransparency = 1
  7741. PSelected.BorderSizePixel = 0
  7742. PSelected.Position = UDim2.new(0.405405402, 0, 0.904347837, 0)
  7743. PSelected.Size = UDim2.new(0, 179, 0, 22)
  7744. PSelected.Font = Enum.Font.SourceSans
  7745. PSelected.Text = ""
  7746. PSelected.TextColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7747. PSelected.TextSize = 20
  7748.  
  7749. LocalScreen.Name = "LocalScreen"
  7750. LocalScreen.Parent = Drag
  7751. LocalScreen.BackgroundColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  7752. LocalScreen.BackgroundTransparency = 1
  7753. LocalScreen.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7754. LocalScreen.BorderSizePixel = 0
  7755. LocalScreen.Draggable = true
  7756. LocalScreen.Position = UDim2.new(0.0164813697, 0, -0.000777035952, 0)
  7757. LocalScreen.Size = UDim2.new(0, 444, 0, 230)
  7758. LocalScreen.Visible = false
  7759.  
  7760. God.Name = "God"
  7761. God.Parent = LocalScreen
  7762. God.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7763. God.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7764. God.BorderSizePixel = 2
  7765. God.Position = UDim2.new(0.457207203, 0, 0.226086944, 0)
  7766. God.Size = UDim2.new(0, 158, 0, 21)
  7767. God.Font = Enum.Font.SourceSans
  7768. God.Text = "God"
  7769. God.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7770. God.TextSize = 24
  7771. God.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7772.  
  7773. Noclip.Name = "Noclip"
  7774. Noclip.Parent = LocalScreen
  7775. Noclip.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7776. Noclip.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7777. Noclip.BorderSizePixel = 2
  7778. Noclip.Position = UDim2.new(0.457207203, 0, 0.352173924, 0)
  7779. Noclip.Size = UDim2.new(0, 158, 0, 21)
  7780. Noclip.Font = Enum.Font.SourceSans
  7781. Noclip.Text = "Noclip"
  7782. Noclip.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7783. Noclip.TextSize = 24
  7784. Noclip.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7785.  
  7786. Walkspeed.Name = "Walkspeed"
  7787. Walkspeed.Parent = LocalScreen
  7788. Walkspeed.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7789. Walkspeed.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7790. Walkspeed.BorderSizePixel = 2
  7791. Walkspeed.Position = UDim2.new(0.457207203, 0, 0.523913026, 0)
  7792. Walkspeed.Size = UDim2.new(0, 158, 0, 21)
  7793. Walkspeed.Font = Enum.Font.SourceSans
  7794. Walkspeed.Text = "Walkspeed"
  7795. Walkspeed.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7796. Walkspeed.TextSize = 24
  7797. Walkspeed.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7798.  
  7799. Jumppower.Name = "Jumppower"
  7800. Jumppower.Parent = LocalScreen
  7801. Jumppower.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7802. Jumppower.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7803. Jumppower.BorderSizePixel = 2
  7804. Jumppower.Position = UDim2.new(0.457207203, 0, 0.70869565, 0)
  7805. Jumppower.Size = UDim2.new(0, 158, 0, 21)
  7806. Jumppower.Font = Enum.Font.SourceSans
  7807. Jumppower.Text = "Jumppower"
  7808. Jumppower.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7809. Jumppower.TextSize = 24
  7810. Jumppower.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7811.  
  7812. NoclipLabel.Name = "NoclipLabel"
  7813. NoclipLabel.Parent = LocalScreen
  7814. NoclipLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  7815. NoclipLabel.BackgroundTransparency = 1
  7816. NoclipLabel.BorderColor3 = Color3.new(0.666667, 0, 0)
  7817. NoclipLabel.BorderSizePixel = 0
  7818. NoclipLabel.Position = UDim2.new(0.504504502, 0, 0.443478256, 0)
  7819. NoclipLabel.Size = UDim2.new(0, 115, 0, 19)
  7820. NoclipLabel.Font = Enum.Font.SciFi
  7821. NoclipLabel.Text = "Disabled"
  7822. NoclipLabel.TextColor3 = Color3.new(0.666667, 0, 0)
  7823. NoclipLabel.TextSize = 14
  7824.  
  7825. WalkspeedValue.Name = "WalkspeedValue"
  7826. WalkspeedValue.Parent = LocalScreen
  7827. WalkspeedValue.BackgroundColor3 = Color3.new(1, 1, 1)
  7828. WalkspeedValue.BackgroundTransparency = 1
  7829. WalkspeedValue.BorderSizePixel = 0
  7830. WalkspeedValue.Position = UDim2.new(0.457207203, 0, 0.617391288, 0)
  7831. WalkspeedValue.Size = UDim2.new(0, 158, 0, 21)
  7832. WalkspeedValue.Font = Enum.Font.SourceSans
  7833. WalkspeedValue.Text = "Walkspeed Value"
  7834. WalkspeedValue.TextColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7835. WalkspeedValue.TextSize = 14
  7836.  
  7837. JumppowerValue.Name = "JumppowerValue"
  7838. JumppowerValue.Parent = LocalScreen
  7839. JumppowerValue.BackgroundColor3 = Color3.new(1, 1, 1)
  7840. JumppowerValue.BackgroundTransparency = 1
  7841. JumppowerValue.BorderSizePixel = 0
  7842. JumppowerValue.Position = UDim2.new(0.457207203, 0, 0.799999952, 0)
  7843. JumppowerValue.Size = UDim2.new(0, 158, 0, 21)
  7844. JumppowerValue.Font = Enum.Font.SourceSans
  7845. JumppowerValue.Text = "Jumppower Value"
  7846. JumppowerValue.TextColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7847. JumppowerValue.TextSize = 14
  7848.  
  7849. EtoFly.Name = "EtoFly"
  7850. EtoFly.Parent = LocalScreen
  7851. EtoFly.BackgroundColor3 = Color3.new(1, 1, 1)
  7852. EtoFly.BackgroundTransparency = 1
  7853. EtoFly.BorderSizePixel = 0
  7854. EtoFly.Position = UDim2.new(0.409909904, 0, 0.895652175, 0)
  7855. EtoFly.Size = UDim2.new(0, 200, 0, 29)
  7856. EtoFly.Font = Enum.Font.SourceSans
  7857. EtoFly.Text = "Press \"Q\" to Fly"
  7858. EtoFly.TextColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7859. EtoFly.TextSize = 14
  7860.  
  7861. HomeScreen.Name = "HomeScreen"
  7862. HomeScreen.Parent = Drag
  7863. HomeScreen.BackgroundColor3 = Color3.new(1, 1, 1)
  7864. HomeScreen.BackgroundTransparency = 1
  7865. HomeScreen.BorderSizePixel = 0
  7866. HomeScreen.Position = UDim2.new(-0.208425716, 0, -0.273504287, 0)
  7867. HomeScreen.Size = UDim2.new(0, 450, 0, 232)
  7868. HomeScreen.Visible = false
  7869.  
  7870. WelcomeName.Name = "WelcomeName"
  7871. WelcomeName.Parent = HomeScreen
  7872. WelcomeName.BackgroundColor3 = Color3.new(1, 1, 1)
  7873. WelcomeName.BackgroundTransparency = 1
  7874. WelcomeName.BorderSizePixel = 0
  7875. WelcomeName.Position = UDim2.new(0.512882888, 0, 0.402361304, 0)
  7876. WelcomeName.Size = UDim2.new(0, 295, 0, 50)
  7877. WelcomeName.Font = Enum.Font.SourceSans
  7878. WelcomeName.Text = "Welcome"
  7879. WelcomeName.TextColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7880. WelcomeName.TextSize = 26
  7881. WelcomeName.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7882. WelcomeName.TextStrokeTransparency = 0.64999997615814
  7883. WelcomeName.TextWrapped = true
  7884.  
  7885. WelcomeMOTD.Name = "WelcomeMOTD"
  7886. WelcomeMOTD.Parent = HomeScreen
  7887. WelcomeMOTD.BackgroundColor3 = Color3.new(1, 1, 1)
  7888. WelcomeMOTD.BackgroundTransparency = 1
  7889. WelcomeMOTD.Position = UDim2.new(0.524598598, 0, 0.615812302, 0)
  7890. WelcomeMOTD.Size = UDim2.new(0, 295, 0, 122)
  7891. WelcomeMOTD.Font = Enum.Font.SourceSans
  7892. WelcomeMOTD.Text = "I heard there are a lot of wild haxors on the lose. Be careful out there."
  7893. WelcomeMOTD.TextColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7894. WelcomeMOTD.TextSize = 30
  7895. WelcomeMOTD.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7896. WelcomeMOTD.TextStrokeTransparency = 0.64999997615814
  7897. WelcomeMOTD.TextWrapped = true
  7898.  
  7899. WelcomeAuthor.Name = "WelcomeAuthor"
  7900. WelcomeAuthor.Parent = HomeScreen
  7901. WelcomeAuthor.BackgroundColor3 = Color3.new(1, 1, 1)
  7902. WelcomeAuthor.BackgroundTransparency = 1
  7903. WelcomeAuthor.BorderSizePixel = 0
  7904. WelcomeAuthor.Position = UDim2.new(0.621117353, 0, 1.14139926, 0)
  7905. WelcomeAuthor.Size = UDim2.new(0, 200, 0, 22)
  7906. WelcomeAuthor.Font = Enum.Font.SourceSans
  7907. WelcomeAuthor.Text = "By Casual#2435"
  7908. WelcomeAuthor.TextColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7909. WelcomeAuthor.TextSize = 12
  7910. WelcomeAuthor.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7911. WelcomeAuthor.TextStrokeTransparency = 0.64999997615814
  7912. WelcomeAuthor.TextWrapped = true
  7913.  
  7914. ChangelogScreen.Name = "ChangelogScreen"
  7915. ChangelogScreen.Parent = Drag
  7916. ChangelogScreen.BackgroundColor3 = Color3.new(1, 1, 1)
  7917. ChangelogScreen.BackgroundTransparency = 1
  7918. ChangelogScreen.BorderSizePixel = 0
  7919. ChangelogScreen.Position = UDim2.new(0.24833703, 0, 0.17521368, 0)
  7920. ChangelogScreen.Size = UDim2.new(0, 337, 0, 193)
  7921. ChangelogScreen.Visible = false
  7922.  
  7923. Logs.Name = "Logs"
  7924. Logs.Parent = ChangelogScreen
  7925. Logs.BackgroundColor3 = Color3.new(1, 1, 1)
  7926. Logs.BackgroundTransparency = 1
  7927. Logs.BorderSizePixel = 0
  7928. Logs.Position = UDim2.new(0.0207715146, 0, 0, 0)
  7929. Logs.Size = UDim2.new(0, 322, 0, 39)
  7930. Logs.Font = Enum.Font.SourceSans
  7931. Logs.Text = "-1.0 Huge Improvement on Look of Gui"
  7932. Logs.TextColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7933. Logs.TextSize = 20
  7934.  
  7935. Logs2.Name = "Logs2"
  7936. Logs2.Parent = ChangelogScreen
  7937. Logs2.BackgroundColor3 = Color3.new(1, 1, 1)
  7938. Logs2.BackgroundTransparency = 1
  7939. Logs2.BorderSizePixel = 0
  7940. Logs2.Position = UDim2.new(0.0296735913, 0, 0.160621762, 0)
  7941. Logs2.Size = UDim2.new(0, 322, 0, 85)
  7942. Logs2.Font = Enum.Font.SourceSans
  7943. Logs2.Text = "-1.1 Fixed bug that caused you not to be able to changewalkspeed and made you walk slow when you turned on god mode."
  7944. Logs2.TextColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7945. Logs2.TextSize = 20
  7946. Logs2.TextWrapped = true
  7947.  
  7948. Logs3.Name = "Logs3"
  7949. Logs3.Parent = ChangelogScreen
  7950. Logs3.BackgroundColor3 = Color3.new(1, 1, 1)
  7951. Logs3.BackgroundTransparency = 1
  7952. Logs3.BorderSizePixel = 0
  7953. Logs3.Position = UDim2.new(0.0296735913, 0, 0.46632123, 0)
  7954. Logs3.Size = UDim2.new(0, 322, 0, 85)
  7955. Logs3.Font = Enum.Font.SourceSans
  7956. Logs3.Text = "-1.2 Added 3 new features - Hard Dragger, Teleport Gifts and Flight"
  7957. Logs3.TextColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  7958. Logs3.TextSize = 20
  7959. Logs3.TextWrapped = true
  7960.  
  7961. Log1and2Div.Name = "Log1and2Div"
  7962. Log1and2Div.Parent = ChangelogScreen
  7963. Log1and2Div.BackgroundColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7964. Log1and2Div.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7965. Log1and2Div.Position = UDim2.new(0.0534124635, 0, 0.196891189, 0)
  7966. Log1and2Div.Size = UDim2.new(0, 306, 0, 1)
  7967. Log1and2Div.Font = Enum.Font.SourceSans
  7968. Log1and2Div.Text = ""
  7969. Log1and2Div.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7970. Log1and2Div.TextSize = 24
  7971. Log1and2Div.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7972.  
  7973. Log2and3Div.Name = "Log2and3Div"
  7974. Log2and3Div.Parent = ChangelogScreen
  7975. Log2and3Div.BackgroundColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7976. Log2and3Div.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7977. Log2and3Div.Position = UDim2.new(0.0534124635, 0, 0.569948196, 0)
  7978. Log2and3Div.Size = UDim2.new(0, 306, 0, 1)
  7979. Log2and3Div.Font = Enum.Font.SourceSans
  7980. Log2and3Div.Text = ""
  7981. Log2and3Div.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7982. Log2and3Div.TextSize = 24
  7983. Log2and3Div.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  7984.  
  7985. --------
  7986. -- Fly
  7987. repeat wait()
  7988. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  7989. local mouse = game.Players.LocalPlayer:GetMouse()
  7990. repeat wait() until mouse
  7991. local plr = game.Players.LocalPlayer
  7992. local torso = plr.Character.Torso
  7993. local flying = true
  7994. local deb = true
  7995. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  7996. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  7997. local maxspeed = 50
  7998. local speed = 0
  7999.  
  8000. function Fly()
  8001. local bg = Instance.new("BodyGyro", torso)
  8002. bg.P = 9e4
  8003. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  8004. bg.cframe = torso.CFrame
  8005. local bv = Instance.new("BodyVelocity", torso)
  8006. bv.velocity = Vector3.new(0,0.1,0)
  8007. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  8008. repeat wait()
  8009. plr.Character.Humanoid.PlatformStand = true
  8010. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  8011. speed = speed+.5+(speed/maxspeed)
  8012. if speed > maxspeed then
  8013. speed = maxspeed
  8014. end
  8015. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  8016. speed = speed-1
  8017. if speed < 0 then
  8018. speed = 0
  8019. end
  8020. end
  8021. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  8022. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  8023. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  8024. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  8025. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  8026. else
  8027. bv.velocity = Vector3.new(0,0.1,0)
  8028. end
  8029. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  8030. until not flying
  8031. ctrl = {f = 0, b = 0, l = 0, r = 0}
  8032. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  8033. speed = 0
  8034. bg:Destroy()
  8035. bv:Destroy()
  8036. plr.Character.Humanoid.PlatformStand = false
  8037. end
  8038. mouse.KeyDown:connect(function(key)
  8039. if key:lower() == "q" then
  8040. if flying then flying = false
  8041. AAPressQ.Visible = false
  8042. else
  8043. flying = true
  8044. Fly()
  8045. end
  8046. elseif key:lower() == "w" then
  8047. ctrl.f = 1
  8048. elseif key:lower() == "s" then
  8049. ctrl.b = -1
  8050. elseif key:lower() == "a" then
  8051. ctrl.l = -1
  8052. elseif key:lower() == "d" then
  8053. ctrl.r = 1
  8054. end
  8055. end)
  8056. mouse.KeyUp:connect(function(key)
  8057. if key:lower() == "w" then
  8058. ctrl.f = 0
  8059. elseif key:lower() == "s" then
  8060. ctrl.b = 0
  8061. elseif key:lower() == "a" then
  8062. ctrl.l = 0
  8063. elseif key:lower() == "d" then
  8064. ctrl.r = 0
  8065. end
  8066. end)
  8067. Fly()
  8068.  
  8069. AnimWelcomeScreen.Visible = true
  8070. AnimWelcomeScreen:TweenSizeAndPosition(UDim2.new(0, 200, 0, 200), UDim2.new(0.5, -100, 0.5, -100), "Out", "Quad", .25)
  8071. wait(2)
  8072. ImageLabel:Destroy()
  8073. AnimWelcomeScreen:TweenSizeAndPosition(UDim2.new(0, 0, 0, 0),UDim2.new(0.5, 0, 0.5, 0), "Out", "Bounce", 0.5);wait(0.5);AnimWelcomeScreen:Destroy();
  8074. wait(2)
  8075. HomeScreen.Visible = true
  8076. Main.Visible = true
  8077.  
  8078.  
  8079. HiName.Text = "Hi "..game.Players.LocalPlayer.Name
  8080. WelcomeName.Text = "Welcome "..game.Players.LocalPlayer.Name
  8081.  
  8082. --Opening Tabs
  8083. P1.MouseButton1Down:connect(function()
  8084. PSelected.Text = P1.Text
  8085. end)
  8086. P2.MouseButton1Down:connect(function()
  8087. PSelected.Text = P2.Text
  8088. end)
  8089. P3.MouseButton1Down:connect(function()
  8090. PSelected.Text = P3.Text
  8091. end)
  8092. P4.MouseButton1Down:connect(function()
  8093. PSelected.Text = P4.Text
  8094. end)
  8095. P5.MouseButton1Down:connect(function()
  8096. PSelected.Text = P5.Text
  8097. end)
  8098. P6.MouseButton1Down:connect(function()
  8099. PSelected.Text = P6.Text
  8100. end)
  8101. local buttons = {
  8102. PlayersScreen.P1,
  8103. PlayersScreen.P2,
  8104. PlayersScreen.P3,
  8105. PlayersScreen.P4,
  8106. PlayersScreen.P5,
  8107. PlayersScreen.P6
  8108. }
  8109.  
  8110. for i, v in pairs(game.Players:GetChildren()) do
  8111. buttons[i].Text = v.Name
  8112. buttons[i].Visible = true
  8113. end
  8114. game.Players.PlayerRemoving:connect(function()
  8115. for i, v in pairs(game.Players:GetChildren()) do
  8116. buttons[i].Text = v.Name
  8117. buttons[i].Visible = true
  8118. end
  8119. end)
  8120. game.Players.PlayerAdded:connect(function()
  8121. for i, v in pairs(game.Players:GetChildren()) do
  8122. buttons[i].Text = v.Name
  8123. buttons[i].Visible = true
  8124. end
  8125. end)
  8126.  
  8127. if PlayersScreen.P1.text == " " then
  8128. P1.Visible = false
  8129. end
  8130.  
  8131. if PlayersScreen.P2.text == " " then
  8132. P2.Visible = false
  8133. end
  8134.  
  8135. if PlayersScreen.P3.text == " " then
  8136. P3.Visible = false
  8137. end
  8138.  
  8139. if PlayersScreen.P4.text == " " then
  8140. P4.Visible = false
  8141. end
  8142.  
  8143. if PlayersScreen.P5.text == " " then
  8144. P5.Visible = false
  8145. end
  8146.  
  8147. if PlayersScreen.P6.text == "" then
  8148. P6.Visible = false
  8149. end
  8150.  
  8151. TpToPlayer.MouseButton1Down:connect(function()
  8152. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace[PSelected.Text].HumanoidRootPart.CFrame
  8153. end)
  8154.  
  8155. TpToPlayerBase.MouseButton1Down:connect(function()
  8156. for i, v in pairs(game.Workspace.Properties:GetChildren()) do
  8157. if v.Owner.Value == game.Players[PSelected.Text] then
  8158. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.OriginSquare.CFrame
  8159. end
  8160. end
  8161. end)
  8162.  
  8163. X.MouseButton1Down:connect(function()
  8164. Drag.Visible = false
  8165. OpenBtn.Visible = true
  8166. end)
  8167.  
  8168. OpenBtn.MouseButton1Down:connect(function()
  8169. Drag.Visible = true
  8170. OpenBtn.Visible = false
  8171. end)
  8172.  
  8173. HomeLocal.MouseButton1Down:connect(function()
  8174. Main.Visible = true
  8175. AnimWelcomeScreen.Visible = false
  8176. HomeScreen.Visible = false
  8177. LocalScreen.Visible = true
  8178. PlayersScreen.Visible = false
  8179. WoodScreen.Visible = false
  8180. TeleportsScreen.Visible = false
  8181. ToolsScreen.Visible = false
  8182. OpenBtn.Visible = false
  8183. ChangelogScreen.Visible = false
  8184. end)
  8185.  
  8186. HomePlayers.MouseButton1Down:connect(function()
  8187. Main.Visible = true
  8188. AnimWelcomeScreen.Visible = false
  8189. HomeScreen.Visible = false
  8190. LocalScreen.Visible = false
  8191. PlayersScreen.Visible = true
  8192. WoodScreen.Visible = false
  8193. TeleportsScreen.Visible = false
  8194. ToolsScreen.Visible = false
  8195. OpenBtn.Visible = false
  8196. ChangelogScreen.Visible = false
  8197. end)
  8198.  
  8199. HomeWood.MouseButton1Down:connect(function()
  8200. Main.Visible = true
  8201. AnimWelcomeScreen.Visible = false
  8202. HomeScreen.Visible = false
  8203. LocalScreen.Visible = false
  8204. PlayersScreen.Visible = false
  8205. WoodScreen.Visible = true
  8206. TeleportsScreen.Visible = false
  8207. ToolsScreen.Visible = false
  8208. OpenBtn.Visible = false
  8209. ChangelogScreen.Visible = false
  8210. end)
  8211.  
  8212. HomeTeleports.MouseButton1Down:connect(function()
  8213. Main.Visible = true
  8214. AnimWelcomeScreen.Visible = false
  8215. HomeScreen.Visible = false
  8216. LocalScreen.Visible = false
  8217. PlayersScreen.Visible = false
  8218. WoodScreen.Visible = false
  8219. TeleportsScreen.Visible = true
  8220. ToolsScreen.Visible = false
  8221. OpenBtn.Visible = false
  8222. ChangelogScreen.Visible = false
  8223. end)
  8224.  
  8225. HomeTools.MouseButton1Down:connect(function()
  8226. Main.Visible = true
  8227. AnimWelcomeScreen.Visible = false
  8228. HomeScreen.Visible = false
  8229. LocalScreen.Visible = false
  8230. PlayersScreen.Visible = false
  8231. WoodScreen.Visible = false
  8232. TeleportsScreen.Visible = false
  8233. ToolsScreen.Visible = true
  8234. OpenBtn.Visible = false
  8235. ChangelogScreen.Visible = false
  8236. end)
  8237.  
  8238. HomeChangelog.MouseButton1Down:connect(function()
  8239. Main.Visible = true
  8240. AnimWelcomeScreen.Visible = false
  8241. HomeScreen.Visible = false
  8242. LocalScreen.Visible = false
  8243. PlayersScreen.Visible = false
  8244. WoodScreen.Visible = false
  8245. TeleportsScreen.Visible = false
  8246. ToolsScreen.Visible = false
  8247. OpenBtn.Visible = false
  8248. ChangelogScreen.Visible = true
  8249. end)
  8250.  
  8251. --Teleports
  8252. Palm.MouseButton1Down:connect(function()
  8253. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(2570, -5, -32))
  8254. end)
  8255.  
  8256. BobsShack.MouseButton1Down:connect(function()
  8257. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(259, 8, -2542))
  8258. end)
  8259.  
  8260. WoodRUs.MouseButton1Down:connect(function()
  8261. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(251, 2, 57))
  8262. end)
  8263.  
  8264. Volcano.MouseButton1Down:connect(function()
  8265. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-1585, 622, 1140))
  8266. end)
  8267.  
  8268. Swamp.MouseButton1Down:connect(function()
  8269. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-1209, 132, -801))
  8270. end)
  8271.  
  8272. StrangeMan.MouseButton1Down:connect(function()
  8273. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(1061, 16, 1130))
  8274. end)
  8275.  
  8276. Spawn.MouseButton1Down:connect(function()
  8277. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(155, 3, 74))
  8278. end)
  8279.  
  8280. Shrine.MouseButton1Down:connect(function()
  8281. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(1606, 195, 929))
  8282. end)
  8283.  
  8284. Lodge.MouseButton1Down:connect(function()
  8285. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(1243, 63, 2305))
  8286. end)
  8287.  
  8288. LinksLogic.MouseButton1Down:connect(function()
  8289. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(4606, 7, -779))
  8290. end)
  8291.  
  8292. GreenBox.MouseButton1Down:connect(function()
  8293. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-1675, 348, 1476))
  8294. end)
  8295.  
  8296. Fancy.MouseButton1Down:connect(function()
  8297. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(491, 3, -1719))
  8298. end)
  8299.  
  8300. EndTimes.MouseButton1Down:connect(function()
  8301. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(113, -213, -950))
  8302. end)
  8303.  
  8304. Dropoff.MouseButton1Down:connect(function()
  8305. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(314, -2, 123))
  8306. end)
  8307.  
  8308. Den.MouseButton1Down:connect(function()
  8309. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(331, 45, 1941))
  8310. end)
  8311.  
  8312. Cave.MouseButton1Down:connect(function()
  8313. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(3581, -179, 430))
  8314. end)
  8315.  
  8316. BoxedCars.MouseButton1Down:connect(function()
  8317. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(508, 3, -1463))
  8318. end)
  8319.  
  8320. YourPlot.MouseButton1Down:connect(function()
  8321. for i, v in pairs(game.Workspace.Properties:GetChildren()) do
  8322. if v.Owner.Value == game.Players.LocalPlayer then
  8323. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.OriginSquare.CFrame
  8324. end
  8325. end
  8326. end)
  8327. --------------
  8328. --LocalPlayer Commands
  8329. -- God
  8330. God.MouseButton1Down:connect(function()
  8331. game.Players.LocalPlayer.Character.Humanoid.Name = "1"
  8332. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  8333. l.Parent = game.Players.LocalPlayer.Character
  8334. l.Name = "Humanoid"
  8335. wait(0.1)
  8336. game.Players.LocalPlayer.Character["1"]:Destroy()
  8337. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  8338. game.Players.LocalPlayer.Character.Animate.Disabled = true
  8339. l.Changed:Connect(function()
  8340. if l then
  8341. l.WalkSpeed=game.Players.LocalPlayer.Character.Humanoid.WalkSpeed
  8342. l.JumpPower=game.Players.LocalPlayer.Character.Humanoid.JumpPower
  8343. end
  8344. end)
  8345. end)
  8346. -- Noclip
  8347. noclip = false
  8348. game:GetService('RunService').Stepped:connect(function()
  8349. if noclip then
  8350. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  8351. NoclipLabel.TextColor3 = Color3.new(0, 1, 0)
  8352. NoclipLabel.Text = "Enabled"
  8353. end
  8354. end)
  8355. Noclip.MouseButton1Down:connect(function()
  8356. noclip = not noclip
  8357. NoclipLabel.TextColor3 = Color3.new(0.7, 0, 0)
  8358. NoclipLabel.Text = "Disabled"
  8359. end)
  8360. -- Walkspeed
  8361. Walkspeed.MouseButton1Down:connect(function()
  8362. while true do
  8363. wait()
  8364. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = WalkspeedValue.Text
  8365. end
  8366. end)
  8367. -- Jumppower
  8368. Jumppower.MouseButton1Down:connect(function()
  8369. while true do
  8370. wait()
  8371. game.Players.LocalPlayer.Character.Humanoid.JumpPower = JumppowerValue.Text
  8372. end
  8373. end)
  8374. --Players Commands
  8375. -- Teleport To Player
  8376. -- teleport To Player Base
  8377.  
  8378. --Wood Commands
  8379. -- Teleport Cut Wood
  8380. TeleportCutWood.MouseButton1Down:connect(function()
  8381. for _, Log in pairs(game.Workspace.LogModels:GetChildren()) do
  8382. if Log.Name:sub(1, 6) == "Loose_" and Log:findFirstChild("Owner") then
  8383. if Log.Owner.Value == game.Players.LocalPlayer then
  8384. Log:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(0, 15, 0))
  8385. end
  8386. end
  8387. end
  8388. end)
  8389.  
  8390. -- Sell Cut Wood
  8391. SellCutWood.MouseButton1Down:connect(function()
  8392. for _, Log in pairs(workspace.LogModels:GetChildren()) do
  8393. if Log.Name:sub(1, 6) == "Loose_" and Log:findFirstChild("Owner") then
  8394. if Log.Owner.Value == game.Players.LocalPlayer then
  8395. for i,v in pairs(Log:GetChildren()) do
  8396. if v.Name=="WoodSection" then
  8397. spawn(function()
  8398. for i=1,10 do
  8399. wait()
  8400. v.CFrame=CFrame.new(Vector3.new(315, -0.296, 85.791))*CFrame.Angles(math.rad(90),0,0)
  8401. end
  8402. end)
  8403. end
  8404. end
  8405. spawn(function()
  8406. for i=1,20 do
  8407. wait()
  8408. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Log)
  8409. end
  8410. end)
  8411. end
  8412. end
  8413. end
  8414. end)
  8415. -- Teleport End Times Wood
  8416. TeleportEndTimesWood.MouseButton1Down:connect(function()
  8417. for i, v in pairs(game.Workspace:GetChildren()) do
  8418. if v.Name == "TreeRegion" then
  8419. for a, b in pairs(v:GetChildren()) do
  8420. tree(b, "LoneCave")
  8421. end
  8422. end
  8423. end
  8424. end)
  8425. -- Teleport Cave Crawler Wood
  8426. TeleportCaveCrawlerWood.MouseButton1Down:connect(function()
  8427. for i, v in pairs(game.Workspace:GetChildren()) do
  8428. if v.Name == "TreeRegion" then
  8429. for a, b in pairs(v:GetChildren()) do
  8430. tree(b, "CaveCrawler")
  8431. end
  8432. end
  8433. end
  8434. end)
  8435.  
  8436. --Tools Commands
  8437. -- Dupe
  8438. Dupe.MouseButton1Down:connect(function()
  8439. plr = game:GetService("Players").LocalPlayer
  8440. slot = plr.CurrentSaveSlot
  8441. if Option == false then
  8442. if slot.Value == -1 then
  8443. Option = true
  8444. slot.RobloxLocked = true
  8445. DupeLabel.TextColor3 = Color3.new(0, 1, 0)
  8446. DupeLabel.Text = "Enabled"
  8447. end
  8448. else
  8449. Option = false
  8450. slot.RobloxLocked = false
  8451. DupeLabel.TextColor3 = Color3.new(0.7, 0, 0)
  8452. DupeLabel.Text = "Disabled"
  8453. end
  8454. end)
  8455. -- Move Tools
  8456. Move.MouseButton1Down:connect(function()
  8457. local player = game.Players.LocalPlayer
  8458. local Character = player.Character or player.CharacterAdded:wait()
  8459. local Humanoid = Character:WaitForChild("Humanoid")
  8460. local walkSpeed = Humanoid.WalkSpeed
  8461. game.Players.LocalPlayer.PlayerGui.ItemDraggingGUI.Dragger.Disabled = true
  8462. _G.dragRangeMin = 5
  8463. fivefour = coroutine.wrap(function()
  8464. EKey = false
  8465. QKey = false
  8466. player:GetMouse().KeyDown:connect(function(key)
  8467. if string.lower(key) == "e" then
  8468. EKey = true
  8469. elseif string.lower(key) == "q" then
  8470. QKey = true
  8471. end
  8472. end)
  8473. player:GetMouse().KeyUp:connect(function(key)
  8474. if string.lower(key) == "e" then
  8475. EKey = false
  8476. elseif string.lower(key) == "q" then
  8477. QKey = false
  8478. end
  8479. end)
  8480. while wait(0.1) do
  8481. if EKey then
  8482. F = FVal
  8483. FVal = FVal + 1000
  8484. ChangeForce(F+1000)
  8485. print(F)
  8486. end
  8487. if QKey then
  8488. F = FVal
  8489. FVal = FVal - 1000
  8490. ChangeForce(F-1000)
  8491. print(F)
  8492. end
  8493. end
  8494.  
  8495. end)
  8496. fivefour()
  8497. local dragPart = Instance.new("Part",game.Players.LocalPlayer.PlayerGui)--game.Players.LocalPlayer.PlayerGui.ItemDraggingGUI.Dragger.Dragger
  8498. dragPart.Size = Vector3.new(0.2,0.2,0.2)
  8499. dragPart.BrickColor = BrickColor.new("Really red")
  8500. player.CharacterAdded:connect(function()
  8501. Character = player.Character
  8502. Humanoid = Character:WaitForChild("Humanoid")
  8503. Humanoid.Died:connect(function()
  8504. dragPart.Parent = nil
  8505. end)
  8506. end)
  8507.  
  8508. wait(1)
  8509. local dragRangeMax = 10000
  8510. local dragRangeMin = _G.dragRangeMin
  8511.  
  8512. local camera = workspace.CurrentCamera
  8513. local mouse = player:GetMouse()
  8514.  
  8515. local button1Down = false
  8516. local dragRange = dragRangeMax
  8517. FVal = 80000
  8518. local bodyPosition = Instance.new("BodyPosition", dragPart)
  8519. bodyPosition.maxForce = Vector3.new(1, 1, 1) * FVal
  8520. bodyPosition.D = 1000
  8521. bodyPosition.P = 4000
  8522. function ChangeForce(F)
  8523. if F > 0 then
  8524. F = bodyPosition.maxForce.X+F
  8525. bodyPosition.maxForce = Vector3.new(1, 1, 1) * F
  8526. else
  8527. F = bodyPosition.maxForce.X-F
  8528. bodyPosition.maxForce = Vector3.new(1, 1, 1) * F
  8529. end
  8530. end
  8531.  
  8532. local bodyGyro = Instance.new("BodyGyro", dragPart)
  8533. bodyGyro.maxTorque = Vector3.new(1, 1, 1) * 200 --4000 -- * 0.000012
  8534. bodyGyro.P = 1200
  8535. bodyGyro.D = 140 --15
  8536.  
  8537. --bodyPosition.P = bodyPosition.P * 1/19
  8538. --bodyPosition.D = bodyPosition.D * 1/19
  8539. --bodyGyro.P = bodyGyro.P * 1/19
  8540. --bodyGyro.D = bodyGyro.D * 1/19
  8541.  
  8542. local rotateCFrame = CFrame.new()
  8543.  
  8544. local weld = Instance.new("Weld", dragPart)
  8545.  
  8546. --local interactPermission = require(game.ReplicatedStorage.Interaction.InteractionPermission)
  8547. local clientIsDragging = game.ReplicatedStorage.Interaction.ClientIsDragging
  8548.  
  8549. local carryAnimationTrack
  8550.  
  8551.  
  8552. --------------------------------[[ Drag Main ]]------------------------------------
  8553.  
  8554. local draggingPart = false
  8555.  
  8556. function click()
  8557. button1Down = true
  8558.  
  8559. local targetObject = game.Players.LocalPlayer:GetMouse().Target
  8560. if not canDrag(targetObject) then
  8561. return
  8562. end
  8563.  
  8564. local mouseHit = game.Players.LocalPlayer:GetMouse().Hit.p
  8565. if (mouseHit - Character.Head.Position).magnitude > dragRangeMax then
  8566. return
  8567. end
  8568.  
  8569. initializeDrag(targetObject, mouseHit)
  8570. rotateCFrame = CFrame.new()
  8571.  
  8572. carryAnimationTrack:Play(0.1, 1, 1)
  8573.  
  8574. local dragIsFailing = 0
  8575. local dragTime = 0
  8576.  
  8577.  
  8578. while button1Down and canDrag(targetObject) do
  8579. local desiredPos = Character.Head.Position + (game.Players.LocalPlayer:GetMouse().Hit.p - Character.Head.Position).unit * dragRange
  8580.  
  8581. local dragRay = Ray.new(Character.Head.Position, desiredPos - Character.Head.Position)
  8582. local part, pos = workspace:FindPartOnRayWithIgnoreList(dragRay, {Character, dragPart, targetObject.Parent})
  8583.  
  8584. if part then
  8585. desiredPos = pos
  8586. end
  8587.  
  8588. if (camera.CoordinateFrame.p - Character.Head.Position).magnitude > 2 then
  8589. desiredPos = desiredPos + Vector3.new(0, 1.8, 0)
  8590. end
  8591.  
  8592. moveDrag(desiredPos)
  8593. bodyGyro.cframe = CFrame.new(dragPart.Position, camera.CoordinateFrame.p) * rotateCFrame
  8594.  
  8595. local targParent = findHighestParent(targetObject) or targetObject
  8596.  
  8597. local attemptingToSurf = false
  8598. for _, check in pairs({{Ray = Ray.new((Character.HumanoidRootPart.CFrame * CFrame.new(0.7, -2.8, 0)).p, Vector3.new(0, -2, 0))},
  8599. {Ray = Ray.new((Character.HumanoidRootPart.CFrame * CFrame.new(0.35, -2.8, 0)).p, Vector3.new(0, -2, 0))},
  8600. {Ray = Ray.new((Character.HumanoidRootPart.CFrame * CFrame.new(0, -2.8, 0)).p, Vector3.new(0, -2, 0))},
  8601. {Ray = Ray.new((Character.HumanoidRootPart.CFrame * CFrame.new(0.35, -2.8, 0)).p, Vector3.new(0, -2, 0))},
  8602. {Ray = Ray.new((Character.HumanoidRootPart.CFrame * CFrame.new(-0.7, -2.8, 0)).p, Vector3.new(0, -2, 0))},
  8603.  
  8604. {Ray = Ray.new((Character.HumanoidRootPart.CFrame * CFrame.new(0.35, -2.8, 0.6)).p, Vector3.new(0, -2, 0))},
  8605. {Ray = Ray.new((Character.HumanoidRootPart.CFrame * CFrame.new(0, -2.8, 0.6)).p, Vector3.new(0, -2, 0))},
  8606. {Ray = Ray.new((Character.HumanoidRootPart.CFrame * CFrame.new(0.35, -2.8, 0.6)).p, Vector3.new(0, -2, 0))},
  8607.  
  8608. {Ray = Ray.new((Character.HumanoidRootPart.CFrame * CFrame.new(0.35, -2.8, -0.6)).p, Vector3.new(0, -2, 0))},
  8609. {Ray = Ray.new((Character.HumanoidRootPart.CFrame * CFrame.new(0, -2.8, -0.6)).p, Vector3.new(0, -2, 0))},
  8610. {Ray = Ray.new((Character.HumanoidRootPart.CFrame * CFrame.new(0.35, -2.8, -0.6)).p, Vector3.new(0, -2, 0))},
  8611.  
  8612. {Ray = Ray.new((Character.HumanoidRootPart.CFrame * CFrame.new(0.5, -0.8, 0)).p, Character.HumanoidRootPart.CFrame.lookVector), State = Enum.HumanoidStateType.Climbing},
  8613. {Ray = Ray.new((Character.HumanoidRootPart.CFrame * CFrame.new(-0.5, -0.8, 0)).p, Character.HumanoidRootPart.CFrame.lookVector), State = Enum.HumanoidStateType.Climbing},
  8614. {Ray = Ray.new((Character.HumanoidRootPart.CFrame * CFrame.new(0.5, -1.3, 0)).p, Character.HumanoidRootPart.CFrame.lookVector), State = Enum.HumanoidStateType.Climbing},
  8615. {Ray = Ray.new((Character.HumanoidRootPart.CFrame * CFrame.new(-0.5, -1.3, 0)).p, Character.HumanoidRootPart.CFrame.lookVector), State = Enum.HumanoidStateType.Climbing}
  8616.  
  8617. }) do
  8618.  
  8619. local ray = check.Ray
  8620. local part, _ = workspace:FindPartOnRayWithIgnoreList(ray, {Character})
  8621. local op = part
  8622. part = part and findHighestParent(part)
  8623.  
  8624. if part and (not check.State or Humanoid:GetState() == check.State) then
  8625. if part == targParent then
  8626. attemptingToSurf = true
  8627. else
  8628. for _, connectedPart in pairs(op:GetConnectedParts(true)) do
  8629.  
  8630. if connectedPart == targetObject--[[targParent]] then
  8631. attemptingToSurf = true
  8632. break
  8633. end
  8634. end
  8635. end
  8636.  
  8637. if attemptingToSurf then
  8638. break
  8639. end
  8640. end
  8641. end
  8642.  
  8643.  
  8644.  
  8645.  
  8646.  
  8647. local falling = Humanoid:GetState() == Enum.HumanoidStateType.Freefall or Humanoid:GetState() == Enum.HumanoidStateType.FallingDown--not part1 and not part2
  8648.  
  8649.  
  8650. if attemptingToSurf then
  8651. dragIsFailing = 0
  8652. elseif falling then
  8653. dragIsFailing = 0
  8654. elseif (dragPart.Position - desiredPos).magnitude > 5 then
  8655. dragIsFailing = 0
  8656. else
  8657. dragIsFailing = 0
  8658. end
  8659. if dragIsFailing > 16 then
  8660. break
  8661. end
  8662.  
  8663.  
  8664. if dragTime % 10 == 0 and targParent.Parent:FindFirstChild("BedInfo") and targParent.Parent:FindFirstChild("Main") then
  8665. game.Players.LocalPlayer.PlayerGui.ItemDraggingGUI.Parent.Scripts.VehicleControl.SetVehicleOwnership:Fire(targParent.Parent.Main)
  8666. end
  8667.  
  8668. clientIsDragging:FireServer(targParent.Parent)
  8669.  
  8670. wait()
  8671. dragTime = 0
  8672. end
  8673.  
  8674. carryAnimationTrack:Stop()
  8675.  
  8676. endDrag()
  8677. end
  8678.  
  8679.  
  8680. function findHighestParent(child)
  8681. if not child or not child.Parent or child.Parent == workspace then
  8682. return nil
  8683. end
  8684.  
  8685. local ret = child.Parent:FindFirstChild("Owner") and child
  8686. return findHighestParent(child.Parent) or ret
  8687. end
  8688.  
  8689.  
  8690.  
  8691. function clickEnded()
  8692. button1Down = false
  8693. end
  8694.  
  8695. function holdDistanceChanged()
  8696. dragRange = dragRangeMax--[[_G.dragRangeMin + (1 - dist) * (dragRangeMax - _G.dragRangeMin)]]
  8697. end
  8698.  
  8699.  
  8700. function canDrag(targetObject)
  8701.  
  8702.  
  8703. if not (targetObject and not targetObject.Anchored and targetObject.Parent and Humanoid.Health > 0) then -- General conditions
  8704. return false
  8705. end
  8706.  
  8707. if targetObject.Name == "LeafPart" then
  8708. return false
  8709. end
  8710.  
  8711. local originTargetObject = targetObject
  8712. targetObject = findHighestParent(targetObject) or targetObject
  8713.  
  8714. bodyGyro.Parent = dragPart
  8715.  
  8716.  
  8717. --[[if not (targetObject.Parent:FindFirstChild("Owner") or targetObject.Parent.Parent:FindFirstChild("Owner")) then
  8718. return otherDraggable(targetObject, originTargetObject)
  8719. end]]
  8720.  
  8721. if targetObject.Parent:FindFirstChild("Owner") or targetObject.Parent.Parent:FindFirstChild("Owner") then
  8722. return true
  8723. end
  8724.  
  8725. if targetObject.Parent:FindFirstChild("TreeClass") then -- Wood class
  8726. return true
  8727. end
  8728. if targetObject.Parent:FindFirstChild("BoxItemName") then -- Shop items
  8729. return true
  8730. end
  8731. if targetObject.Parent:FindFirstChild("PurchasedBoxItemName") then -- Purchased box items
  8732. return true
  8733. end
  8734. if targetObject.Parent:FindFirstChild("Handle") then -- Tool items
  8735. return true
  8736. end
  8737.  
  8738. return otherDraggable(targetObject, originTargetObject)
  8739. end
  8740.  
  8741. function otherDraggable(targetObject, originTargetObject)
  8742. local draggable = targetObject and targetObject.Parent and targetObject.Parent:FindFirstChild("DraggableItem") or originTargetObject and originTargetObject.Parent and originTargetObject.Parent:FindFirstChild("DraggableItem")
  8743. if draggable then -- Other stuff
  8744. if draggable:FindFirstChild("NoRotate") then
  8745. bodyGyro.Parent = nil
  8746. end
  8747. return true
  8748. end
  8749. end
  8750.  
  8751. function initializeDrag(targetObject,mouseHit)
  8752. draggingPart = true
  8753. mouse.TargetFilter = targetObject and findHighestParent(targetObject) and findHighestParent(targetObject).Parent or targetObject
  8754.  
  8755. dragPart.CFrame = CFrame.new(mouseHit, camera.CoordinateFrame.p)
  8756.  
  8757. weld.Part0 = dragPart
  8758. weld.Part1 = targetObject
  8759. weld.C0 = CFrame.new(mouseHit,camera.CoordinateFrame.p):inverse() * targetObject.CFrame
  8760. weld.Parent = dragPart
  8761.  
  8762. dragPart.Parent = workspace
  8763. end
  8764.  
  8765. function endDrag()
  8766. mouse.TargetFilter = nil
  8767. dragPart.Parent = nil
  8768. draggingPart = false
  8769. end
  8770.  
  8771. --------------------------------[[ Do Prompt ]]------------------------------------
  8772.  
  8773.  
  8774. local dragGuiState = ""
  8775. function interactLoop()
  8776. while true do
  8777. wait()
  8778.  
  8779. local newState = ""
  8780.  
  8781. local mouseHit = game.Players.LocalPlayer:GetMouse().Hit.p
  8782. local targetObject = game.Players.LocalPlayer:GetMouse().Target
  8783.  
  8784.  
  8785. if draggingPart then
  8786. newState = "Dragging"
  8787. elseif canDrag(targetObject) and not button1Down and (mouseHit - Character.Head.Position).magnitude < dragRangeMax then
  8788. newState = "Mouseover"
  8789. end
  8790.  
  8791. if true then-- not (newState == dragGuiState) then
  8792. dragGuiState = newState
  8793. setPlatformControls()
  8794.  
  8795. if dragGuiState == "" then
  8796. game.Players.LocalPlayer.PlayerGui.ItemDraggingGUI.CanDrag.Visible = false
  8797. game.Players.LocalPlayer.PlayerGui.ItemDraggingGUI.CanRotate.Visible = false
  8798. elseif dragGuiState == "Mouseover" then
  8799. game.Players.LocalPlayer.PlayerGui.ItemDraggingGUI.CanDrag.Visible = true
  8800. game.Players.LocalPlayer.PlayerGui.ItemDraggingGUI.CanRotate.Visible = false
  8801. elseif dragGuiState == "Dragging" then
  8802. game.Players.LocalPlayer.PlayerGui.ItemDraggingGUI.CanDrag.Visible = false
  8803. game.Players.LocalPlayer.PlayerGui.ItemDraggingGUI.CanRotate.Visible = not (bodyGyro.Parent == nil) and (not player:FindFirstChild("IsChatting") or player.IsChatting.Value < 1)
  8804. end
  8805. end
  8806.  
  8807. end
  8808. end
  8809.  
  8810.  
  8811. --------------------------------[[ Drag Moving ]]------------------------------------
  8812.  
  8813.  
  8814. function moveDrag(pos)
  8815. bodyPosition.position = pos
  8816. end
  8817. local rotateSpeedReduce = 0.036
  8818.  
  8819. local lastRotateTick
  8820. function crotate(amount, speed)
  8821.  
  8822. if not draggingPart then
  8823. if not player:FindFirstChild("IsChatting") or player.IsChatting.Value < 2 then
  8824. Humanoid.WalkSpeed = walkSpeed
  8825. end
  8826. return
  8827. end
  8828.  
  8829. if Humanoid.WalkSpeed > 1 then
  8830. walkSpeed = Humanoid.WalkSpeed
  8831. Humanoid.WalkSpeed = 0
  8832. end
  8833.  
  8834. lastRotateTick = tick()
  8835. local thisRotateTick = lastRotateTick
  8836.  
  8837. while draggingPart and amount.magnitude > 0 and lastRotateTick == thisRotateTick do
  8838. rotateCFrame = CFrame.Angles(0, -amount.X * rotateSpeedReduce, 0) * CFrame.Angles(amount.Y * rotateSpeedReduce, 0, 0) * rotateCFrame
  8839. wait()
  8840. end
  8841.  
  8842. if amount.magnitude == 0 then
  8843. if not player:FindFirstChild("IsChatting") or player.IsChatting.Value < 2 then
  8844. Humanoid.WalkSpeed = walkSpeed
  8845. end
  8846. end
  8847. end
  8848.  
  8849. --------------------------------[[ User Input ]]------------------------------------
  8850.  
  8851. wait(1)
  8852.  
  8853. carryAnimationTrack = Humanoid:LoadAnimation(game.Players.LocalPlayer.PlayerGui.ItemDraggingGUI.Dragger:WaitForChild("CarryItem"))
  8854.  
  8855. --input = require(game.Players.LocalPlayer.PlayerGui.ItemDraggingGUI.Parent:WaitForChild("Scripts"):WaitForChild("UserInput"))
  8856.  
  8857. game.Players.LocalPlayer:GetMouse().Button1Down:connect(function()
  8858. click()
  8859. holdDistanceChanged()
  8860. end)
  8861. game.Players.LocalPlayer:GetMouse().Button1Up:connect(function()
  8862. clickEnded()
  8863. end)
  8864. --input.ClickBegan(click, holdDistanceChanged)
  8865. --input.ClickEnded(clickEnded)
  8866.  
  8867. --input.Rotate(crotate)
  8868.  
  8869.  
  8870. function setPlatformControls()
  8871. game.Players.LocalPlayer.PlayerGui.ItemDraggingGUI.CanDrag.PlatformButton.Image = game.Players.LocalPlayer.PlayerGui.ItemDraggingGUI.CanDrag.PlatformButton.PC.Value
  8872. game.Players.LocalPlayer.PlayerGui.ItemDraggingGUI.CanDrag.PlatformButton.KeyLabel.Text = "CLICK"
  8873. game.Players.LocalPlayer.PlayerGui.ItemDraggingGUI.CanRotate.PlatformButton.Image = game.Players.LocalPlayer.PlayerGui.ItemDraggingGUI.CanRotate.PlatformButton.PC.Value
  8874. game.Players.LocalPlayer.PlayerGui.ItemDraggingGUI.CanRotate.PlatformButton.KeyLabel.Text = "SHIFT + WASD"
  8875. end
  8876.  
  8877.  
  8878. interactLoop()
  8879. end)
  8880. -- Golden Axe
  8881. GoldAxe.MouseButton1Down:connect(function()
  8882.  
  8883. local mouse1 = game:GetService("Players").LocalPlayer:GetMouse()
  8884. mouse1.Button1Down:connect(function(key)
  8885. Pressing=false
  8886. end)
  8887.  
  8888. function GetAxe()
  8889. if game.Players.LocalPlayer.Character:FindFirstChild("Tool") then
  8890. return game.Players.LocalPlayer.Character:FindFirstChild("Tool")
  8891. end
  8892. end
  8893.  
  8894. local HitPoints={
  8895. ['GoldAxe']= 50;
  8896. ['BasicHatchet']= 0.2;
  8897. ['Axe1']= 0.55;
  8898. ['Axe2']= 0.93;
  8899. ['AxeAlphaTesters']= 1.5;
  8900. ['Rukiryaxe']= 1.68;
  8901. ['Axe3']= 1.45;
  8902. ['AxeBetaTesters']= 1.45;
  8903. ['FireAxe']= 0.6;
  8904. ['SilverAxe']= 1.6;
  8905. ['EndTimesAxe']= 10000000;
  8906. ['AxeChicken']= 0.1;
  8907. ['CandyCaneAxe']= 0;
  8908. }
  8909.  
  8910. local Pressing = false
  8911.  
  8912. local mouse1 = game:GetService("Players").LocalPlayer:GetMouse()
  8913. mouse1.Button1Down:connect(function(key)
  8914. Pressing=true
  8915. poop(GetAxe())
  8916. end)
  8917.  
  8918. local mouse1 = game:GetService("Players").LocalPlayer:GetMouse()
  8919. mouse1.Button1Down:connect(function(key)
  8920. Pressing=false
  8921. end)
  8922.  
  8923. function cut(Height,Tool)
  8924. local Tree=game.Players.LocalPlayer:GetMouse().Target
  8925. game.ReplicatedStorage.Interaction.RemoteProxy:FireServer(Tree.Parent.CutEvent,{
  8926. ["cuttingClass"] = "Axe",
  8927. ["cooldown"] = 0,
  8928. ["hitPoints"] = HitPoints[Tool.ToolName.Value],
  8929. ["sectionId"] = 1,
  8930. ["tool"] = Tool,
  8931. ["faceVector"] = Vector3.new(-1,0,0),
  8932. ["height"] = Height})
  8933. end
  8934.  
  8935. function poop(Tool)
  8936. while Pressing do
  8937. for i=1,100 do
  8938. wait()
  8939. cut(_G.SIZE,Tool)
  8940. cut(1,Tool)
  8941. end
  8942. end
  8943. end
  8944. end)
  8945. -- Leaked Items
  8946. LeakedItems.MouseButton1Down:connect(function()
  8947. game.ReplicatedStorage.Purchasables:Clone().Parent = game.Workspace.PlayerModels
  8948. end)
  8949.  
  8950. -- Ctrl + Click TP
  8951. TeleportTool.MouseButton1Down:connect(function()
  8952. local Plr = game:GetService("Players").LocalPlayer
  8953. local Mouse = Plr:GetMouse()
  8954.  
  8955. Mouse.Button1Down:connect(function()
  8956. if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end
  8957. if not Mouse.Target then return end
  8958. Plr.Character:MoveTo(Mouse.Hit.p)
  8959. end)
  8960. end)
  8961. -- Grey Wood
  8962. GreyWood.MouseButton1Down:connect(function()
  8963. for i,v in next,workspace.PlayerModels:GetChildren() do
  8964. if v:FindFirstChild("Type") then
  8965. if v.Type.Value == "Blueprint" then
  8966. v.Type.Value = "Structure"
  8967. end
  8968. end
  8969. end
  8970. end)
  8971. -- Teleport Gifts
  8972. TeleportGifts.MouseButton1Down:connect(function()
  8973. for i,v in next,workspace.PlayerModels:GetChildren() do
  8974. if v:FindFirstChild("Main") and v.Owner.Value == game.Players.LocalPlayer then
  8975. for q,p in pairs(v:GetChildren()) do
  8976. if p.Name:lower():match("box") or p.Name == "DraggableItem" then
  8977. wait()
  8978. v.PrimaryPart = v.Main
  8979. game.ReplicatedStorage.Interaction.Verify:FireServer('Item owned by player',v)
  8980. v:SetPrimaryPartCFrame(game.Players.LocalPlayer.Character.Head.CFrame)
  8981. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(v)
  8982. end
  8983. end
  8984. end
  8985. end
  8986. end)
  8987. end)
  8988. Speed.Name = "Speed"
  8989. Speed.Parent = MainFrame
  8990. Speed.BackgroundColor3 = Color3.new(0, 0, 0)
  8991. Speed.BorderColor3 = Color3.new(0, 1, 0)
  8992. Speed.BorderSizePixel = 5
  8993. Speed.Position = UDim2.new(0.375, 0, 0.211009175, 0)
  8994. Speed.Size = UDim2.new(0, 95, 0, 38)
  8995. Speed.Font = Enum.Font.SciFi
  8996. Speed.Text = "Speed"
  8997. Speed.TextColor3 = Color3.new(0, 1, 0)
  8998. Speed.TextScaled = true
  8999. Speed.TextSize = 14
  9000. Speed.TextWrapped = true
  9001. Speed.MouseButton1Click:connect(function()while wait()do
  9002. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed=200
  9003. end
  9004. end
  9005. )
  9006. Jpower.Name = "Jpower"
  9007. Jpower.Parent = MainFrame
  9008. Jpower.BackgroundColor3 = Color3.new(0, 0, 0)
  9009. Jpower.BorderColor3 = Color3.new(0, 1, 0)
  9010. Jpower.BorderSizePixel = 5
  9011. Jpower.Position = UDim2.new(0.5625, 0, 0.844036698, 0)
  9012. Jpower.Size = UDim2.new(0, 92, 0, 29)
  9013. Jpower.Font = Enum.Font.SciFi
  9014. Jpower.Text = "Jpower"
  9015. Jpower.TextColor3 = Color3.new(0, 1, 0)
  9016. Jpower.TextScaled = true
  9017. Jpower.TextSize = 14
  9018. Jpower.TextWrapped = true
  9019. Jpower.MouseButton1Click:connect(function()while wait()do
  9020. game.Players.LocalPlayer.Character.Humanoid.JumpPower=100 end end)
  9021.  
  9022. GoldAxe.Name = "GoldAxe"
  9023. GoldAxe.Parent = MainFrame
  9024. GoldAxe.BackgroundColor3 = Color3.new(0, 0, 0)
  9025. GoldAxe.BorderColor3 = Color3.new(0, 1, 0)
  9026. GoldAxe.BorderSizePixel = 5
  9027. GoldAxe.Position = UDim2.new(0.375, 0, 0.646789014, 0)
  9028. GoldAxe.Size = UDim2.new(0, 95, 0, 34)
  9029. GoldAxe.Font = Enum.Font.SciFi
  9030. GoldAxe.Text = "GoldAxe"
  9031. GoldAxe.TextColor3 = Color3.new(0, 1, 0)
  9032. GoldAxe.TextScaled = true
  9033. GoldAxe.TextSize = 14
  9034. GoldAxe.TextWrapped = true
  9035. GoldAxe.MouseButton1Down:connect(function()
  9036. -- Objects
  9037.  
  9038. local InfoGUI = Instance.new("ScreenGui")
  9039. local TopBar = Instance.new("Frame")
  9040. local MainFrame = Instance.new("Frame")
  9041. local Info = Instance.new("TextLabel")
  9042. local OkayB = Instance.new("TextButton")
  9043. local Credits = Instance.new("TextLabel")
  9044.  
  9045. -- Properties
  9046.  
  9047. InfoGUI.Name = "InfoGUI"
  9048. InfoGUI.Parent = game.Players.LocalPlayer.PlayerGui
  9049.  
  9050. TopBar.Name = "TopBar"
  9051. TopBar.Parent = InfoGUI
  9052. TopBar.BackgroundColor3 = Color3.new(0.266667, 0.247059, 0.313726)
  9053. TopBar.BorderSizePixel = 0
  9054. TopBar.Position = UDim2.new(0.5, -173, 0.5, -74)
  9055. TopBar.Size = UDim2.new(0, 347, 0, 34)
  9056.  
  9057. MainFrame.Name = "MainFrame"
  9058. MainFrame.Parent = TopBar
  9059. MainFrame.BackgroundColor3 = Color3.new(0.356863, 0.333333, 0.423529)
  9060. MainFrame.BorderSizePixel = 0
  9061. MainFrame.Position = UDim2.new(0, 0, 1, 0)
  9062. MainFrame.Size = UDim2.new(0, 347, 0, 114)
  9063.  
  9064. Info.Name = "Info"
  9065. Info.Parent = MainFrame
  9066. Info.BackgroundColor3 = Color3.new(0.443137, 0.415686, 0.52549)
  9067. Info.BorderSizePixel = 0
  9068. Info.Size = UDim2.new(0, 347, 0, 78)
  9069. Info.Font = Enum.Font.SourceSansLight
  9070. Info.Text = "All you have to do to make this work, is get any axe and spam click on a tree a few times, ANY DISTANCE!"
  9071. Info.TextColor3 = Color3.new(1, 1, 1)
  9072. Info.TextScaled = true
  9073. Info.TextSize = 14
  9074. Info.TextWrapped = true
  9075.  
  9076. OkayB.Name = "OkayB"
  9077. OkayB.Parent = MainFrame
  9078. OkayB.BackgroundColor3 = Color3.new(0.443137, 0.415686, 0.52549)
  9079. OkayB.BorderSizePixel = 0
  9080. OkayB.Position = UDim2.new(0.268000007, 0, 0.709999979, 0)
  9081. OkayB.Size = UDim2.new(0, 161, 0, 29)
  9082. OkayB.Font = Enum.Font.SourceSansLight
  9083. OkayB.Text = "Alright"
  9084. OkayB.TextColor3 = Color3.new(1, 1, 1)
  9085. OkayB.TextScaled = true
  9086. OkayB.TextSize = 14
  9087. OkayB.TextWrapped = true
  9088.  
  9089. Credits.Name = "Credits"
  9090. Credits.Parent = MainFrame
  9091. Credits.BackgroundColor3 = Color3.new(0.443137, 0.415686, 0.52549)
  9092. Credits.BackgroundTransparency = 1
  9093. Credits.BorderSizePixel = 0
  9094. Credits.Position = UDim2.new(-0.0028818443, 0, 1.11403513, 0)
  9095. Credits.Size = UDim2.new(0, 347, 0, 78)
  9096. Credits.Font = Enum.Font.SourceSansLight
  9097. Credits.Text = "GUI made by HowToBasic666/Hoofer"
  9098. Credits.TextColor3 = Color3.new(1, 1, 1)
  9099. Credits.TextScaled = true
  9100. Credits.TextSize = 14
  9101. Credits.TextWrapped = true
  9102.  
  9103. OkayB.MouseButton1Click:connect(function()
  9104. InfoGUI.Enabled = false
  9105. end)
  9106.  
  9107. local mouse1 = game:GetService("Players").LocalPlayer:GetMouse()
  9108. mouse1.Button1Down:connect(function(key)
  9109. Pressing=false
  9110. end)
  9111.  
  9112. function GetAxe()
  9113. if game.Players.LocalPlayer.Character:FindFirstChild("Tool") then
  9114. return game.Players.LocalPlayer.Character:FindFirstChild("Tool")
  9115. end
  9116. end
  9117.  
  9118. local HitPoints={
  9119. ['GoldAxe']= 50;
  9120. ['BasicHatchet']= 0.2;
  9121. ['Axe1']= 0.55;
  9122. ['Axe2']= 0.93;
  9123. ['AxeAlphaTesters']= 1.5;
  9124. ['Rukiryaxe']= 1.68;
  9125. ['Axe3']= 1.45;
  9126. ['AxeBetaTesters']= 1.45;
  9127. ['FireAxe']= 0.6;
  9128. ['SilverAxe']= 1.6;
  9129. ['EndTimesAxe']= 10000000;
  9130. ['AxeChicken']= 0.1;
  9131. ['CandyCaneAxe']= 0;
  9132. }
  9133.  
  9134. local Pressing = false
  9135.  
  9136. local mouse1 = game:GetService("Players").LocalPlayer:GetMouse()
  9137. mouse1.Button1Down:connect(function(key)
  9138. Pressing=true
  9139. poop(GetAxe())
  9140. end)
  9141.  
  9142. local mouse1 = game:GetService("Players").LocalPlayer:GetMouse()
  9143. mouse1.Button1Down:connect(function(key)
  9144. Pressing=false
  9145. end)
  9146.  
  9147. function cut(Height,Tool)
  9148. local Tree=game.Players.LocalPlayer:GetMouse().Target
  9149. game.ReplicatedStorage.Interaction.RemoteProxy:FireServer(Tree.Parent.CutEvent,{
  9150. ["cuttingClass"] = "Axe",
  9151. ["cooldown"] = 0,
  9152. ["hitPoints"] = HitPoints[Tool.ToolName.Value],
  9153. ["sectionId"] = 1,
  9154. ["tool"] = Tool,
  9155. ["faceVector"] = Vector3.new(-1,0,0),
  9156. ["height"] = Height})
  9157. end
  9158.  
  9159. function poop(Tool)
  9160. while Pressing do
  9161. for i=1,100 do
  9162. wait()
  9163. cut(_G.SIZE,Tool)
  9164. cut(1,Tool)
  9165. end
  9166. end
  9167. end
  9168. end)
  9169. TextLabel.Parent = MainFrame
  9170. TextLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  9171. TextLabel.BorderColor3 = Color3.new(0, 1, 0)
  9172. TextLabel.BorderSizePixel = 5
  9173. TextLabel.Position = UDim2.new(0.18928571, 0, 0, 0)
  9174. TextLabel.Size = UDim2.new(0, 448, 0, 39)
  9175. TextLabel.Font = Enum.Font.SciFi
  9176. TextLabel.Text = "LUMBER TYCOON 2 GUI"
  9177. TextLabel.TextColor3 = Color3.new(0, 1, 0)
  9178. TextLabel.TextScaled = true
  9179. TextLabel.TextSize = 14
  9180. TextLabel.TextWrapped = true
  9181. TextLabel.TextXAlignment = Enum.TextXAlignment.Left
  9182.  
  9183. TextLabel_2.Parent = MainFrame
  9184. TextLabel_2.BackgroundColor3 = Color3.new(0, 0, 0)
  9185. TextLabel_2.BorderColor3 = Color3.new(0, 1, 0)
  9186. TextLabel_2.BorderSizePixel = 5
  9187. TextLabel_2.Position = UDim2.new(0.744642854, 0, 0.637614667, 0)
  9188. TextLabel_2.Size = UDim2.new(0, 94, 0, 74)
  9189. TextLabel_2.Font = Enum.Font.SciFi
  9190. TextLabel_2.Text = "Gui Made By MrIpop "
  9191. TextLabel_2.TextColor3 = Color3.new(0, 1, 0)
  9192. TextLabel_2.TextScaled = true
  9193. TextLabel_2.TextSize = 14
  9194. TextLabel_2.TextWrapped = true
  9195.  
  9196. LT2GUD.Name = "LT2GUD"
  9197. LT2GUD.Parent = MainFrame
  9198. LT2GUD.BackgroundColor3 = Color3.new(0, 0, 0)
  9199. LT2GUD.BorderColor3 = Color3.new(0, 1, 0)
  9200. LT2GUD.BorderSizePixel = 5
  9201. LT2GUD.Position = UDim2.new(0.744642854, 0, 0.403669715, 0)
  9202. LT2GUD.Size = UDim2.new(0, 94, 0, 41)
  9203. LT2GUD.Font = Enum.Font.SciFi
  9204. LT2GUD.Text = "LT2GUD"
  9205. LT2GUD.TextColor3 = Color3.new(0, 1, 0)
  9206. LT2GUD.TextScaled = true
  9207. LT2GUD.TextSize = 14
  9208. LT2GUD.TextWrapped = true
  9209. LT2GUD.MouseButton1Down:connect(function()
  9210. local LT2 = Instance.new("ScreenGui")
  9211. local MainFrame = Instance.new("Frame")
  9212. local Close = Instance.new("TextButton")
  9213. local DupeStatus = Instance.new("TextLabel")
  9214. local Dupe = Instance.new("TextButton")
  9215. local SettingsFrame = Instance.new("Frame")
  9216. local WalkspeedLabel = Instance.new("TextLabel")
  9217. local JumpPowerLabel = Instance.new("TextLabel")
  9218. local WalkSpeed = Instance.new("TextBox")
  9219. local JumpPower = Instance.new("TextBox")
  9220. local Settings = Instance.new("TextButton")
  9221. local Greywood = Instance.new("TextButton")
  9222. local Players = Instance.new("TextButton")
  9223. local SellPlanks = Instance.new("TextButton")
  9224. local SellWood = Instance.new("TextButton")
  9225. local Teleport = Instance.new("TextButton")
  9226. local TpBox = Instance.new("TextButton")
  9227. local TpPlank = Instance.new("TextButton")
  9228. local TpWood = Instance.new("TextButton")
  9229. local PlankFrame = Instance.new("Frame")
  9230. local ProcessedWoodList = Instance.new("ScrollingFrame")
  9231. local TpAllPlanks = Instance.new("TextButton")
  9232. local PlayersFrame = Instance.new("Frame")
  9233. local Player1 = Instance.new("TextButton")
  9234. local Player2 = Instance.new("TextButton")
  9235. local Player3 = Instance.new("TextButton")
  9236. local Player4 = Instance.new("TextButton")
  9237. local Player5 = Instance.new("TextButton")
  9238. local Player6 = Instance.new("TextButton")
  9239. local PlayerTp = Instance.new("TextButton")
  9240. local TpBase = Instance.new("TextButton")
  9241. local PlayerSelect = Instance.new("TextLabel")
  9242. local PurchasedFrame = Instance.new("Frame")
  9243. local LastPurchasedList = Instance.new("ScrollingFrame")
  9244. local WaypointFrame = Instance.new("Frame")
  9245. local Waypoints = Instance.new("ScrollingFrame")
  9246. local Stranger = Instance.new("TextButton")
  9247. local BobsShack = Instance.new("TextButton")
  9248. local PlotTp = Instance.new("TextButton")
  9249. local BoxedCars = Instance.new("TextButton")
  9250. local Cave = Instance.new("TextButton")
  9251. local FancyFurnishings = Instance.new("TextButton")
  9252. local FineArtsShop = Instance.new("TextButton")
  9253. local LandStore = Instance.new("TextButton")
  9254. local LinksLogic = Instance.new("TextButton")
  9255. local PalmIsland = Instance.new("TextButton")
  9256. local SpawnPoint = Instance.new("TextButton")
  9257. local Swamp = Instance.new("TextButton")
  9258. local Volcano = Instance.new("TextButton")
  9259. local WoodRUs = Instance.new("TextButton")
  9260.  
  9261. LT2.Name = "LT2"
  9262. LT2.Parent = game.CoreGui
  9263.  
  9264. MainFrame.Name = "MainFrame"
  9265. MainFrame.Parent = LT2
  9266. MainFrame.BackgroundColor3 = Color3.new(0.203922, 0.203922, 0.203922)
  9267. MainFrame.BackgroundTransparency = 1
  9268. MainFrame.BorderSizePixel = 0
  9269. MainFrame.Position = UDim2.new(0.5, -535, 0, -33)
  9270. MainFrame.Size = UDim2.new(0, 955, 0, 30)
  9271.  
  9272. Close.Name = "Close"
  9273. Close.Parent = MainFrame
  9274. Close.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  9275. Close.BorderColor3 = Color3.new(0, 0, 0)
  9276. Close.BorderSizePixel = 2
  9277. Close.Position = UDim2.new(0, 5, 0, 5)
  9278. Close.Size = UDim2.new(0, 20, 0, 20)
  9279. Close.Font = Enum.Font.Fantasy
  9280. Close.FontSize = Enum.FontSize.Size18
  9281. Close.Text = "X"
  9282. Close.TextColor3 = Color3.new(1, 0, 0)
  9283. Close.TextSize = 16
  9284. Close.TextWrapped = true
  9285.  
  9286. DupeStatus.Name = "DupeStatus"
  9287. DupeStatus.Parent = MainFrame
  9288. DupeStatus.BackgroundColor3 = Color3.new(0.203922, 0.203922, 0.203922)
  9289. DupeStatus.BackgroundTransparency = 1
  9290. DupeStatus.BorderColor3 = Color3.new(0, 0, 0)
  9291. DupeStatus.BorderSizePixel = 2
  9292. DupeStatus.Position = UDim2.new(0, 920, 0, 5)
  9293. DupeStatus.Size = UDim2.new(0, 30, 0, 20)
  9294. DupeStatus.ZIndex = 2
  9295. DupeStatus.Font = Enum.Font.Code
  9296. DupeStatus.FontSize = Enum.FontSize.Size18
  9297. DupeStatus.Text = "OFF"
  9298. DupeStatus.TextColor3 = Color3.new(1, 0, 0)
  9299. DupeStatus.TextSize = 16
  9300.  
  9301. Dupe.Name = "Dupe"
  9302. Dupe.Parent = MainFrame
  9303. Dupe.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  9304. Dupe.BorderColor3 = Color3.new(0, 0, 0)
  9305. Dupe.BorderSizePixel = 2
  9306. Dupe.Position = UDim2.new(0, 865, 0, 5)
  9307. Dupe.Size = UDim2.new(0, 85, 0, 20)
  9308. Dupe.Font = Enum.Font.Fantasy
  9309. Dupe.FontSize = Enum.FontSize.Size18
  9310. Dupe.Text = "DUPE : "
  9311. Dupe.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  9312. Dupe.TextSize = 15
  9313. Dupe.TextStrokeColor3 = Color3.new(1, 1, 1)
  9314. Dupe.TextWrapped = true
  9315.  
  9316. SettingsFrame.Name = "SettingsFrame"
  9317. SettingsFrame.Parent = MainFrame
  9318. SettingsFrame.BackgroundColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  9319. SettingsFrame.Position = UDim2.new(0, 750, 0, 35)
  9320. SettingsFrame.Size = UDim2.new(0, 135, 0, 60)
  9321. SettingsFrame.Visible = false
  9322.  
  9323. WalkspeedLabel.Name = "WalkspeedLabel"
  9324. WalkspeedLabel.Parent = SettingsFrame
  9325. WalkspeedLabel.BackgroundColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  9326. WalkspeedLabel.BorderColor3 = Color3.new(0, 0, 0)
  9327. WalkspeedLabel.Position = UDim2.new(0, 5, 0, 5)
  9328. WalkspeedLabel.Size = UDim2.new(0, 90, 0, 20)
  9329. WalkspeedLabel.Font = Enum.Font.Fantasy
  9330. WalkspeedLabel.FontSize = Enum.FontSize.Size14
  9331. WalkspeedLabel.Text = "Walkspeed"
  9332. WalkspeedLabel.TextColor3 = Color3.new(0, 0, 0)
  9333. WalkspeedLabel.TextSize = 14
  9334.  
  9335. JumpPowerLabel.Name = "JumpPowerLabel"
  9336. JumpPowerLabel.Parent = SettingsFrame
  9337. JumpPowerLabel.BackgroundColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  9338. JumpPowerLabel.BorderColor3 = Color3.new(0, 0, 0)
  9339. JumpPowerLabel.Position = UDim2.new(0, 5, 0, 35)
  9340. JumpPowerLabel.Size = UDim2.new(0, 90, 0, 20)
  9341. JumpPowerLabel.Font = Enum.Font.Fantasy
  9342. JumpPowerLabel.FontSize = Enum.FontSize.Size14
  9343. JumpPowerLabel.Text = "Jump Power"
  9344. JumpPowerLabel.TextColor3 = Color3.new(0, 0, 0)
  9345. JumpPowerLabel.TextSize = 14
  9346.  
  9347. WalkSpeed.Name = "WalkSpeed"
  9348. WalkSpeed.Parent = SettingsFrame
  9349. WalkSpeed.BackgroundColor3 = Color3.new(0, 0, 0)
  9350. WalkSpeed.BorderColor3 = Color3.new(0, 0, 0)
  9351. WalkSpeed.Position = UDim2.new(0, 95, 0, 5)
  9352. WalkSpeed.Size = UDim2.new(0, 35, 0, 20)
  9353. WalkSpeed.Font = Enum.Font.Fantasy
  9354. WalkSpeed.FontSize = Enum.FontSize.Size18
  9355. WalkSpeed.Text = "16"
  9356. WalkSpeed.TextColor3 = Color3.new(1, 1, 1)
  9357. WalkSpeed.TextSize = 16
  9358.  
  9359. JumpPower.Name = "JumpPower"
  9360. JumpPower.Parent = SettingsFrame
  9361. JumpPower.BackgroundColor3 = Color3.new(0, 0, 0)
  9362. JumpPower.BorderColor3 = Color3.new(0, 0, 0)
  9363. JumpPower.Position = UDim2.new(0, 95, 0, 35)
  9364. JumpPower.Size = UDim2.new(0, 35, 0, 20)
  9365. JumpPower.Font = Enum.Font.Fantasy
  9366. JumpPower.FontSize = Enum.FontSize.Size18
  9367. JumpPower.Text = "50"
  9368. JumpPower.TextColor3 = Color3.new(1, 1, 1)
  9369. JumpPower.TextSize = 16
  9370.  
  9371. Settings.Name = "Settings"
  9372. Settings.Parent = MainFrame
  9373. Settings.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  9374. Settings.BorderColor3 = Color3.new(0, 0, 0)
  9375. Settings.BorderSizePixel = 2
  9376. Settings.Position = UDim2.new(0, 770, 0, 5)
  9377. Settings.Size = UDim2.new(0, 90, 0, 20)
  9378. Settings.Font = Enum.Font.Fantasy
  9379. Settings.FontSize = Enum.FontSize.Size18
  9380. Settings.Text = "SETTINGS"
  9381. Settings.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  9382. Settings.TextSize = 15
  9383.  
  9384. Greywood.Name = "Greywood"
  9385. Greywood.Parent = MainFrame
  9386. Greywood.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  9387. Greywood.BorderColor3 = Color3.new(0, 0, 0)
  9388. Greywood.BorderSizePixel = 2
  9389. Greywood.Position = UDim2.new(0, 420, 0, 5)
  9390. Greywood.Size = UDim2.new(0, 90, 0, 20)
  9391. Greywood.Font = Enum.Font.Fantasy
  9392. Greywood.FontSize = Enum.FontSize.Size18
  9393. Greywood.Text = "GREYWOOD"
  9394. Greywood.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  9395. Greywood.TextSize = 15
  9396.  
  9397. Players.Name = "Players"
  9398. Players.Parent = MainFrame
  9399. Players.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  9400. Players.BorderColor3 = Color3.new(0, 0, 0)
  9401. Players.BorderSizePixel = 2
  9402. Players.Position = UDim2.new(0, 30, 0, 5)
  9403. Players.Size = UDim2.new(0, 105, 0, 20)
  9404. Players.Font = Enum.Font.Fantasy
  9405. Players.FontSize = Enum.FontSize.Size18
  9406. Players.Text = "TP TO PLAYERS"
  9407. Players.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  9408. Players.TextSize = 15
  9409.  
  9410. SellPlanks.Name = "SellPlanks"
  9411. SellPlanks.Parent = MainFrame
  9412. SellPlanks.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  9413. SellPlanks.BorderColor3 = Color3.new(0, 0, 0)
  9414. SellPlanks.BorderSizePixel = 2
  9415. SellPlanks.Position = UDim2.new(0, 225, 0, 5)
  9416. SellPlanks.Size = UDim2.new(0, 95, 0, 20)
  9417. SellPlanks.Font = Enum.Font.Fantasy
  9418. SellPlanks.FontSize = Enum.FontSize.Size18
  9419. SellPlanks.Text = "SELL PLANKS"
  9420. SellPlanks.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  9421. SellPlanks.TextSize = 15
  9422.  
  9423. SellWood.Name = "SellWood"
  9424. SellWood.Parent = MainFrame
  9425. SellWood.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  9426. SellWood.BorderColor3 = Color3.new(0, 0, 0)
  9427. SellWood.BorderSizePixel = 2
  9428. SellWood.Position = UDim2.new(0, 675, 0, 5)
  9429. SellWood.Size = UDim2.new(0, 90, 0, 20)
  9430. SellWood.Font = Enum.Font.Fantasy
  9431. SellWood.FontSize = Enum.FontSize.Size18
  9432. SellWood.Text = "SELL WOOD"
  9433. SellWood.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  9434. SellWood.TextSize = 15
  9435.  
  9436. Teleport.Name = "Teleport"
  9437. Teleport.Parent = MainFrame
  9438. Teleport.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  9439. Teleport.BorderColor3 = Color3.new(0, 0, 0)
  9440. Teleport.BorderSizePixel = 2
  9441. Teleport.Position = UDim2.new(0, 325, 0, 5)
  9442. Teleport.Size = UDim2.new(0, 90, 0, 20)
  9443. Teleport.Font = Enum.Font.Fantasy
  9444. Teleport.FontSize = Enum.FontSize.Size18
  9445. Teleport.Text = "WAYPOINTS"
  9446. Teleport.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  9447. Teleport.TextSize = 15
  9448.  
  9449. TpBox.Name = "TpBox"
  9450. TpBox.Parent = MainFrame
  9451. TpBox.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  9452. TpBox.BorderColor3 = Color3.new(0, 0, 0)
  9453. TpBox.BorderSizePixel = 2
  9454. TpBox.Position = UDim2.new(0, 515, 0, 5)
  9455. TpBox.Size = UDim2.new(0, 75, 0, 20)
  9456. TpBox.Font = Enum.Font.Fantasy
  9457. TpBox.FontSize = Enum.FontSize.Size18
  9458. TpBox.Text = "TP BOXES"
  9459. TpBox.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  9460. TpBox.TextSize = 15
  9461.  
  9462. TpPlank.Name = "TpPlank"
  9463. TpPlank.Parent = MainFrame
  9464. TpPlank.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  9465. TpPlank.BorderColor3 = Color3.new(0, 0, 0)
  9466. TpPlank.BorderSizePixel = 2
  9467. TpPlank.Position = UDim2.new(0, 140, 0, 5)
  9468. TpPlank.Size = UDim2.new(0, 80, 0, 20)
  9469. TpPlank.Font = Enum.Font.Fantasy
  9470. TpPlank.FontSize = Enum.FontSize.Size18
  9471. TpPlank.Text = "TP PLANKS"
  9472. TpPlank.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  9473. TpPlank.TextSize = 15
  9474. TpPlank.TextStrokeColor3 = Color3.new(1, 1, 1)
  9475.  
  9476. TpWood.Name = "TpWood"
  9477. TpWood.Parent = MainFrame
  9478. TpWood.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  9479. TpWood.BorderColor3 = Color3.new(0, 0, 0)
  9480. TpWood.BorderSizePixel = 2
  9481. TpWood.Position = UDim2.new(0, 595, 0, 5)
  9482. TpWood.Size = UDim2.new(0, 75, 0, 20)
  9483. TpWood.Font = Enum.Font.Fantasy
  9484. TpWood.FontSize = Enum.FontSize.Size18
  9485. TpWood.Text = "TP WOOD"
  9486. TpWood.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  9487. TpWood.TextSize = 15
  9488.  
  9489. PlankFrame.Name = "PlankFrame"
  9490. PlankFrame.Parent = MainFrame
  9491. PlankFrame.BackgroundColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  9492. PlankFrame.BorderColor3 = Color3.new(0, 0, 0)
  9493. PlankFrame.Position = UDim2.new(0, 100, 0, 55)
  9494. PlankFrame.Size = UDim2.new(0, 165, 0, 205)
  9495. PlankFrame.Visible = false
  9496.  
  9497. ProcessedWoodList.Name = "ProcessedWoodList"
  9498. ProcessedWoodList.Parent = PlankFrame
  9499. ProcessedWoodList.BackgroundColor3 = Color3.new(1, 1, 1)
  9500. ProcessedWoodList.BackgroundTransparency = 1
  9501. ProcessedWoodList.BorderColor3 = Color3.new(0, 0, 0)
  9502. ProcessedWoodList.Size = UDim2.new(0, 165, 0, 205)
  9503.  
  9504. TpAllPlanks.Name = "TpAllPlanks"
  9505. TpAllPlanks.Parent = PlankFrame
  9506. TpAllPlanks.BackgroundColor3 = Color3.new(0, 0, 0)
  9507. TpAllPlanks.BorderColor3 = Color3.new(0, 0, 0)
  9508. TpAllPlanks.Position = UDim2.new(0, 0, 0, -20)
  9509. TpAllPlanks.Size = UDim2.new(0, 165, 0, 20)
  9510. TpAllPlanks.Font = Enum.Font.Fantasy
  9511. TpAllPlanks.FontSize = Enum.FontSize.Size18
  9512. TpAllPlanks.Text = "TP ALL PLANKS"
  9513. TpAllPlanks.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  9514. TpAllPlanks.TextSize = 15
  9515.  
  9516. PlayersFrame.Name = "PlayersFrame"
  9517. PlayersFrame.Parent = MainFrame
  9518. PlayersFrame.BackgroundColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  9519. PlayersFrame.BorderColor3 = Color3.new(0, 0, 0)
  9520. PlayersFrame.Position = UDim2.new(0, 0, 0, 35)
  9521. PlayersFrame.Size = UDim2.new(0, 165, 0, 225)
  9522. PlayersFrame.Visible = false
  9523.  
  9524. Player1.Name = "Player1"
  9525. Player1.Parent = PlayersFrame
  9526. Player1.BackgroundColor3 = Color3.new(0, 0, 0)
  9527. Player1.Position = UDim2.new(0, 5, 0, 5)
  9528. Player1.Size = UDim2.new(0, 155, 0, 20)
  9529. Player1.Font = Enum.Font.Fantasy
  9530. Player1.FontSize = Enum.FontSize.Size18
  9531. Player1.Text = ""
  9532. Player1.TextColor3 = Color3.new(1, 1, 1)
  9533. Player1.TextSize = 16
  9534. Player1.TextWrapped = true
  9535.  
  9536. Player2.Name = "Player2"
  9537. Player2.Parent = PlayersFrame
  9538. Player2.BackgroundColor3 = Color3.new(0, 0, 0)
  9539. Player2.Position = UDim2.new(0, 5, 0, 30)
  9540. Player2.Size = UDim2.new(0, 155, 0, 20)
  9541. Player2.Font = Enum.Font.Fantasy
  9542. Player2.FontSize = Enum.FontSize.Size18
  9543. Player2.Text = ""
  9544. Player2.TextColor3 = Color3.new(1, 1, 1)
  9545. Player2.TextSize = 16
  9546. Player2.TextWrapped = true
  9547.  
  9548. Player3.Name = "Player3"
  9549. Player3.Parent = PlayersFrame
  9550. Player3.BackgroundColor3 = Color3.new(0, 0, 0)
  9551. Player3.Position = UDim2.new(0, 5, 0, 55)
  9552. Player3.Size = UDim2.new(0, 155, 0, 20)
  9553. Player3.Font = Enum.Font.Fantasy
  9554. Player3.FontSize = Enum.FontSize.Size18
  9555. Player3.Text = ""
  9556. Player3.TextColor3 = Color3.new(1, 1, 1)
  9557. Player3.TextSize = 16
  9558. Player3.TextWrapped = true
  9559.  
  9560. Player4.Name = "Player4"
  9561. Player4.Parent = PlayersFrame
  9562. Player4.BackgroundColor3 = Color3.new(0, 0, 0)
  9563. Player4.Position = UDim2.new(0, 5, 0, 80)
  9564. Player4.Size = UDim2.new(0, 155, 0, 20)
  9565. Player4.Font = Enum.Font.Fantasy
  9566. Player4.FontSize = Enum.FontSize.Size18
  9567. Player4.Text = ""
  9568. Player4.TextColor3 = Color3.new(1, 1, 1)
  9569. Player4.TextSize = 16
  9570. Player4.TextWrapped = true
  9571.  
  9572. Player5.Name = "Player5"
  9573. Player5.Parent = PlayersFrame
  9574. Player5.BackgroundColor3 = Color3.new(0, 0, 0)
  9575. Player5.Position = UDim2.new(0, 5, 0, 105)
  9576. Player5.Size = UDim2.new(0, 155, 0, 20)
  9577. Player5.Font = Enum.Font.Fantasy
  9578. Player5.FontSize = Enum.FontSize.Size18
  9579. Player5.Text = ""
  9580. Player5.TextColor3 = Color3.new(1, 1, 1)
  9581. Player5.TextSize = 16
  9582. Player5.TextWrapped = true
  9583.  
  9584. Player6.Name = "Player6"
  9585. Player6.Parent = PlayersFrame
  9586. Player6.BackgroundColor3 = Color3.new(0, 0, 0)
  9587. Player6.Position = UDim2.new(0, 5, 0, 130)
  9588. Player6.Size = UDim2.new(0, 155, 0, 20)
  9589. Player6.Font = Enum.Font.Fantasy
  9590. Player6.FontSize = Enum.FontSize.Size18
  9591. Player6.Text = ""
  9592. Player6.TextColor3 = Color3.new(1, 1, 1)
  9593. Player6.TextSize = 16
  9594. Player6.TextWrapped = true
  9595.  
  9596. PlayerTp.Name = "PlayerTp"
  9597. PlayerTp.Parent = PlayersFrame
  9598. PlayerTp.BackgroundColor3 = Color3.new(0, 0, 0)
  9599. PlayerTp.Position = UDim2.new(0, 5, 0, 195)
  9600. PlayerTp.Size = UDim2.new(0, 80, 0, 20)
  9601. PlayerTp.Font = Enum.Font.Fantasy
  9602. PlayerTp.FontSize = Enum.FontSize.Size18
  9603. PlayerTp.Text = "Tp to Player"
  9604. PlayerTp.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  9605. PlayerTp.TextSize = 16
  9606.  
  9607. TpBase.Name = "TpBase"
  9608. TpBase.Parent = PlayersFrame
  9609. TpBase.BackgroundColor3 = Color3.new(0, 0, 0)
  9610. TpBase.Position = UDim2.new(0, 90, 0, 195)
  9611. TpBase.Size = UDim2.new(0, 70, 0, 20)
  9612. TpBase.Font = Enum.Font.Fantasy
  9613. TpBase.FontSize = Enum.FontSize.Size18
  9614. TpBase.Text = "Tp to Base"
  9615. TpBase.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  9616. TpBase.TextSize = 16
  9617.  
  9618. PlayerSelect.Name = "PlayerSelect"
  9619. PlayerSelect.Parent = PlayersFrame
  9620. PlayerSelect.BackgroundColor3 = Color3.new(0.6, 0.6, 0.6)
  9621. PlayerSelect.BorderColor3 = Color3.new(0, 0, 0)
  9622. PlayerSelect.Position = UDim2.new(0, 10, 0, 160)
  9623. PlayerSelect.Size = UDim2.new(0, 145, 0, 20)
  9624. PlayerSelect.Font = Enum.Font.Code
  9625. PlayerSelect.FontSize = Enum.FontSize.Size18
  9626. PlayerSelect.Text = "Select Player..."
  9627. PlayerSelect.TextColor3 = Color3.new(0, 0, 0)
  9628. PlayerSelect.TextSize = 16
  9629. PlayerSelect.TextWrapped = true
  9630.  
  9631. PurchasedFrame.Name = "PurchasedFrame"
  9632. PurchasedFrame.Parent = MainFrame
  9633. PurchasedFrame.BackgroundColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  9634. PurchasedFrame.BorderColor3 = Color3.new(0, 0, 0)
  9635. PurchasedFrame.Position = UDim2.new(0, 450, 0, 35)
  9636. PurchasedFrame.Size = UDim2.new(0, 215, 0, 225)
  9637. PurchasedFrame.Visible = false
  9638.  
  9639. LastPurchasedList.Name = "LastPurchasedList"
  9640. LastPurchasedList.Parent = PurchasedFrame
  9641. LastPurchasedList.BackgroundColor3 = Color3.new(1, 1, 1)
  9642. LastPurchasedList.BackgroundTransparency = 1
  9643. LastPurchasedList.BorderColor3 = Color3.new(0, 0, 0)
  9644. LastPurchasedList.Size = UDim2.new(1, 1, 0, 225)
  9645.  
  9646. WaypointFrame.Name = "WaypointFrame"
  9647. WaypointFrame.Parent = MainFrame
  9648. WaypointFrame.BackgroundColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  9649. WaypointFrame.BorderColor3 = Color3.new(0, 0, 0)
  9650. WaypointFrame.Position = UDim2.new(0, 295, 0, 35)
  9651. WaypointFrame.Size = UDim2.new(0, 150, 0, 225)
  9652. WaypointFrame.Visible = false
  9653.  
  9654. Waypoints.Name = "Waypoints"
  9655. Waypoints.Parent = WaypointFrame
  9656. Waypoints.BackgroundColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  9657. Waypoints.BorderColor3 = Color3.new(0, 0, 0)
  9658. Waypoints.Size = UDim2.new(0, 150, 0, 225)
  9659. Waypoints.CanvasSize = UDim2.new(0, 0, 1.89999998, 0)
  9660.  
  9661. Stranger.Name = "Stranger"
  9662. Stranger.Parent = Waypoints
  9663. Stranger.BackgroundColor3 = Color3.new(0, 0, 0)
  9664. Stranger.Position = UDim2.new(0, 5, 0, 330)
  9665. Stranger.Size = UDim2.new(0, 125, 0, 20)
  9666. Stranger.Font = Enum.Font.Fantasy
  9667. Stranger.FontSize = Enum.FontSize.Size18
  9668. Stranger.Text = "Stranger"
  9669. Stranger.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  9670. Stranger.TextSize = 16
  9671.  
  9672. BobsShack.Name = "BobsShack"
  9673. BobsShack.Parent = Waypoints
  9674. BobsShack.BackgroundColor3 = Color3.new(0, 0, 0)
  9675. BobsShack.Position = UDim2.new(0, 5, 0, 155)
  9676. BobsShack.Size = UDim2.new(0, 125, 0, 20)
  9677. BobsShack.Font = Enum.Font.Fantasy
  9678. BobsShack.FontSize = Enum.FontSize.Size18
  9679. BobsShack.Text = "Bob's Shack"
  9680. BobsShack.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  9681. BobsShack.TextSize = 16
  9682.  
  9683. PlotTp.Name = "PlotTp"
  9684. PlotTp.Parent = Waypoints
  9685. PlotTp.BackgroundColor3 = Color3.new(0, 0, 0)
  9686. PlotTp.Position = UDim2.new(0, 5, 0, 30)
  9687. PlotTp.Size = UDim2.new(0, 125, 0, 20)
  9688. PlotTp.Font = Enum.Font.Fantasy
  9689. PlotTp.FontSize = Enum.FontSize.Size18
  9690. PlotTp.Text = "Tp to Plot"
  9691. PlotTp.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  9692. PlotTp.TextSize = 16
  9693.  
  9694. BoxedCars.Name = "BoxedCars"
  9695. BoxedCars.Parent = Waypoints
  9696. BoxedCars.BackgroundColor3 = Color3.new(0, 0, 0)
  9697. BoxedCars.Position = UDim2.new(0, 5, 0, 130)
  9698. BoxedCars.Size = UDim2.new(0, 125, 0, 20)
  9699. BoxedCars.Font = Enum.Font.Fantasy
  9700. BoxedCars.FontSize = Enum.FontSize.Size18
  9701. BoxedCars.Text = "Boxed Cars"
  9702. BoxedCars.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  9703. BoxedCars.TextSize = 16
  9704.  
  9705. Cave.Name = "Cave"
  9706. Cave.Parent = Waypoints
  9707. Cave.BackgroundColor3 = Color3.new(0, 0, 0)
  9708. Cave.Position = UDim2.new(0, 5, 0, 230)
  9709. Cave.Size = UDim2.new(0, 125, 0, 20)
  9710. Cave.Font = Enum.Font.Fantasy
  9711. Cave.FontSize = Enum.FontSize.Size18
  9712. Cave.Text = "Cave"
  9713. Cave.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  9714. Cave.TextSize = 16
  9715.  
  9716. FancyFurnishings.Name = "FancyFurnishings"
  9717. FancyFurnishings.Parent = Waypoints
  9718. FancyFurnishings.BackgroundColor3 = Color3.new(0, 0, 0)
  9719. FancyFurnishings.Position = UDim2.new(0, 5, 0, 80)
  9720. FancyFurnishings.Size = UDim2.new(0, 125, 0, 20)
  9721. FancyFurnishings.Font = Enum.Font.Fantasy
  9722. FancyFurnishings.FontSize = Enum.FontSize.Size18
  9723. FancyFurnishings.Text = "Fancy Furnishings"
  9724. FancyFurnishings.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  9725. FancyFurnishings.TextSize = 16
  9726.  
  9727. FineArtsShop.Name = "FineArtsShop"
  9728. FineArtsShop.Parent = Waypoints
  9729. FineArtsShop.BackgroundColor3 = Color3.new(0, 0, 0)
  9730. FineArtsShop.Position = UDim2.new(0, 5, 0, 180)
  9731. FineArtsShop.Size = UDim2.new(0, 125, 0, 20)
  9732. FineArtsShop.Font = Enum.Font.Fantasy
  9733. FineArtsShop.FontSize = Enum.FontSize.Size18
  9734. FineArtsShop.Text = "Fine Arts Shop"
  9735. FineArtsShop.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  9736. FineArtsShop.TextSize = 16
  9737.  
  9738. LandStore.Name = "LandStore"
  9739. LandStore.Parent = Waypoints
  9740. LandStore.BackgroundColor3 = Color3.new(0, 0, 0)
  9741. LandStore.Position = UDim2.new(0, 5, 0, 205)
  9742. LandStore.Size = UDim2.new(0, 125, 0, 20)
  9743. LandStore.Font = Enum.Font.Fantasy
  9744. LandStore.FontSize = Enum.FontSize.Size18
  9745. LandStore.Text = "Land Store"
  9746. LandStore.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  9747. LandStore.TextSize = 16
  9748.  
  9749. LinksLogic.Name = "LinksLogic"
  9750. LinksLogic.Parent = Waypoints
  9751. LinksLogic.BackgroundColor3 = Color3.new(0, 0, 0)
  9752. LinksLogic.Position = UDim2.new(0, 5, 0, 105)
  9753. LinksLogic.Size = UDim2.new(0, 125, 0, 20)
  9754. LinksLogic.Font = Enum.Font.Fantasy
  9755. LinksLogic.FontSize = Enum.FontSize.Size18
  9756. LinksLogic.Text = "Link's Logic"
  9757. LinksLogic.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  9758. LinksLogic.TextSize = 16
  9759.  
  9760. PalmIsland.Name = "PalmIsland"
  9761. PalmIsland.Parent = Waypoints
  9762. PalmIsland.BackgroundColor3 = Color3.new(0, 0, 0)
  9763. PalmIsland.Position = UDim2.new(0, 5, 0, 305)
  9764. PalmIsland.Size = UDim2.new(0, 125, 0, 20)
  9765. PalmIsland.Font = Enum.Font.Fantasy
  9766. PalmIsland.FontSize = Enum.FontSize.Size18
  9767. PalmIsland.Text = "Palm Island"
  9768. PalmIsland.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  9769. PalmIsland.TextSize = 16
  9770.  
  9771. SpawnPoint.Name = "SpawnPoint"
  9772. SpawnPoint.Parent = Waypoints
  9773. SpawnPoint.BackgroundColor3 = Color3.new(0, 0, 0)
  9774. SpawnPoint.Position = UDim2.new(0, 5, 0, 5)
  9775. SpawnPoint.Size = UDim2.new(0, 125, 0, 20)
  9776. SpawnPoint.Font = Enum.Font.Fantasy
  9777. SpawnPoint.FontSize = Enum.FontSize.Size18
  9778. SpawnPoint.Text = "Spawn"
  9779. SpawnPoint.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  9780. SpawnPoint.TextSize = 16
  9781.  
  9782. Swamp.Name = "Swamp"
  9783. Swamp.Parent = Waypoints
  9784. Swamp.BackgroundColor3 = Color3.new(0, 0, 0)
  9785. Swamp.Position = UDim2.new(0, 5, 0, 280)
  9786. Swamp.Size = UDim2.new(0, 125, 0, 20)
  9787. Swamp.Font = Enum.Font.Fantasy
  9788. Swamp.FontSize = Enum.FontSize.Size18
  9789. Swamp.Text = "Swamp"
  9790. Swamp.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  9791. Swamp.TextSize = 16
  9792.  
  9793. Volcano.Name = "Volcano"
  9794. Volcano.Parent = Waypoints
  9795. Volcano.BackgroundColor3 = Color3.new(0, 0, 0)
  9796. Volcano.Position = UDim2.new(0, 5, 0, 255)
  9797. Volcano.Size = UDim2.new(0, 125, 0, 20)
  9798. Volcano.Font = Enum.Font.Fantasy
  9799. Volcano.FontSize = Enum.FontSize.Size18
  9800. Volcano.Text = "Volcano"
  9801. Volcano.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  9802. Volcano.TextSize = 16
  9803.  
  9804. WoodRUs.Name = "WoodRUs"
  9805. WoodRUs.Parent = Waypoints
  9806. WoodRUs.BackgroundColor3 = Color3.new(0, 0, 0)
  9807. WoodRUs.Position = UDim2.new(0, 5, 0, 55)
  9808. WoodRUs.Size = UDim2.new(0, 125, 0, 20)
  9809. WoodRUs.Font = Enum.Font.Fantasy
  9810. WoodRUs.FontSize = Enum.FontSize.Size18
  9811. WoodRUs.Text = "Wood R Us"
  9812. WoodRUs.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  9813. WoodRUs.TextSize = 16
  9814.  
  9815. local service = setmetatable({}, {
  9816. __index = function(t, k)
  9817. return game:GetService(k)
  9818. end
  9819. })
  9820.  
  9821. function Create(cls,props)
  9822. local inst = Instance.new(cls)
  9823. for i,v in pairs(props) do
  9824. inst[i] = v
  9825. end
  9826. return inst
  9827. end
  9828.  
  9829. local WoodPlanks={}
  9830.  
  9831. function MakeShadow(UI,Index)
  9832. Create("Frame",{Parent=UI,Size=UDim2.new(1,0,1,0),ZIndex=Index,Position=UDim2.new(0,1,0,1),BackgroundColor3=Color3.fromRGB(0,0,0),BorderSizePixel=0,Transparency=0.9,Name="Shadow"})
  9833. Create("Frame",{Parent=UI,Size=UDim2.new(1,0,1,0),ZIndex=Index,Position=UDim2.new(0,2,0,2),BackgroundColor3=Color3.fromRGB(0,0,0),BorderSizePixel=0,Transparency=0.9,Name="Shadow"})
  9834. Create("Frame",{Parent=UI,Size=UDim2.new(1,0,1,0),ZIndex=Index,Position=UDim2.new(0,3,0,3),BackgroundColor3=Color3.fromRGB(0,0,0),BorderSizePixel=0,Transparency=0.9,Name="Shadow"})
  9835. end
  9836.  
  9837. local ProcessedWoodList = LT2.MainFrame.PlankFrame.ProcessedWoodList
  9838. local LastPurchasedList = LT2.MainFrame.PurchasedFrame.LastPurchasedList
  9839.  
  9840. local Menus = {
  9841. [Players] = PlayersFrame;
  9842. [Teleport] = WaypointFrame;
  9843. [TpBox] = PurchasedFrame;
  9844. [TpPlank] = PlankFrame;
  9845. [Settings] = SettingsFrame;
  9846. }
  9847. for button,frame in pairs(Menus) do
  9848. button.MouseButton1Click:connect(function()
  9849. if frame.Visible then
  9850. frame.Visible = false
  9851. return
  9852. end
  9853. for k,v in pairs(Menus) do
  9854. v.Visible = v == frame
  9855. end
  9856. end)
  9857. end
  9858.  
  9859. Close.MouseButton1Down:connect(function()
  9860. LT2:Destroy()
  9861. end)
  9862.  
  9863. local Walk=16
  9864. local Jump=50
  9865.  
  9866. service.Players.LocalPlayer.Character.Humanoid.Changed:Connect(function()
  9867. if service.Players.LocalPlayer.Character:FindFirstChild("Humanoid") then
  9868. service.Players.LocalPlayer.Character.Humanoid.WalkSpeed=Walk
  9869. service.Players.LocalPlayer.Character.Humanoid.JumpPower=Jump
  9870. end
  9871. end)
  9872.  
  9873. WalkSpeed.Changed:Connect(function()
  9874. Walk=tonumber(WalkSpeed.Text)
  9875. end)
  9876.  
  9877. JumpPower.Changed:Connect(function()
  9878. Jump=tonumber(JumpPower.Text)
  9879. end)
  9880.  
  9881. PlotTp.MouseButton1Down:connect(function()
  9882. for i,v in pairs(game.Workspace.Properties:GetChildren()) do
  9883. if v.Owner.Value == game.Players.LocalPlayer then
  9884. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.OriginSquare.CFrame + Vector3.new(0,10,0)
  9885. end
  9886. end
  9887. end)
  9888.  
  9889. Player1.MouseButton1Down:connect(function()
  9890. PlayerSelect.Text = Player1.Text
  9891. end)
  9892. Player2.MouseButton1Down:connect(function()
  9893. PlayerSelect.Text = Player2.Text
  9894. end)
  9895. Player3.MouseButton1Down:connect(function()
  9896. PlayerSelect.Text = Player3.Text
  9897. end)
  9898. Player4.MouseButton1Down:connect(function()
  9899. PlayerSelect.Text = Player4.Text
  9900. end)
  9901. Player5.MouseButton1Down:connect(function()
  9902. PlayerSelect.Text = Player5.Text
  9903. end)
  9904. Player6.MouseButton1Down:connect(function()
  9905. PlayerSelect.Text = Player6.Text
  9906. end)
  9907.  
  9908. PlayerTp.MouseButton1Down:connect(function()
  9909. if PlayerSelect.Text == "Select a Player" then
  9910. warn("No Player Selected")
  9911. else
  9912. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace[PlayerSelect.Text].HumanoidRootPart.CFrame
  9913. end
  9914. end)
  9915. TpBase.MouseButton1Down:connect(function()
  9916. for i, v in pairs(game.Workspace.Properties:GetChildren()) do
  9917. if v.Owner.Value == game.Players[PlayerSelect.Text] then
  9918. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.OriginSquare.CFrame
  9919. end
  9920. end
  9921. end)
  9922.  
  9923. local buttons = {
  9924. Player1,
  9925. Player2,
  9926. Player3,
  9927. Player4,
  9928. Player5,
  9929. Player6
  9930. }
  9931. for i, v in pairs(game.Players:GetChildren()) do
  9932. buttons[i].Text = v.Name
  9933. buttons[i].Visible = true
  9934. end
  9935. game.Players.PlayerRemoving:connect(function()
  9936. for i, v in pairs(game.Players:GetChildren()) do
  9937. buttons[i].Text = v.Name
  9938. buttons[i].Visible = true
  9939. end
  9940. end)
  9941. game.Players.PlayerAdded:connect(function()
  9942. for i, v in pairs(game.Players:GetChildren()) do
  9943. buttons[i].Text = v.Name
  9944. buttons[i].Visible = true
  9945. end
  9946. end)
  9947.  
  9948. local WayPoints = {
  9949. ["Wood R Us"] = Vector3.new(265, 3, 57),
  9950. ["SpawnPoint"] = Vector3.new(155, 3, 74),
  9951. ["Land Store"] = Vector3.new(258, 3, -99),
  9952. ["Link's Logic"] = Vector3.new(4607, 7.5, -798),
  9953. ["Cave"] = Vector3.new(3581, -179, 430),
  9954. ["Volcano"] = Vector3.new(-1585, 622, 1140),
  9955. ["Swamp"] = Vector3.new(-1209, 132, -801),
  9956. ["Palm Island"] = Vector3.new(2549, -5, -42),
  9957. ["Fancy Furnishings"] = Vector3.new(491, 3, -1720),
  9958. ["Boxed Cars"] = Vector3.new(509, 3, -1463),
  9959. ["Fine Arts Shop"] = Vector3.new(5207, -166, 719),
  9960. ["Bob's Shack"] = Vector3.new(260, 8, -2542),
  9961. ["Strange Man"] = Vector3.new(1061, 16, 1131)
  9962. }
  9963.  
  9964. WoodRUs.MouseButton1Down:connect(function()
  9965. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Wood R Us"])
  9966. end)
  9967.  
  9968. SpawnPoint.MouseButton1Down:connect(function()
  9969. game.Players.LocalPlayer.Character:MoveTo(WayPoints["SpawnPoint"])
  9970. end)
  9971.  
  9972. LandStore.MouseButton1Down:connect(function()
  9973. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Land Store"])
  9974. end)
  9975.  
  9976. LinksLogic.MouseButton1Down:connect(function()
  9977. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Link's Logic"])
  9978. end)
  9979.  
  9980. Cave.MouseButton1Down:connect(function()
  9981. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Cave"])
  9982. end)
  9983.  
  9984. Volcano.MouseButton1Down:connect(function()
  9985. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Volcano"])
  9986. end)
  9987.  
  9988. Swamp.MouseButton1Down:connect(function()
  9989. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Swamp"])
  9990. end)
  9991.  
  9992. PalmIsland.MouseButton1Down:connect(function()
  9993. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Palm Island"])
  9994. end)
  9995.  
  9996. FancyFurnishings.MouseButton1Down:connect(function()
  9997. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Fancy Furnishings"])
  9998. end)
  9999.  
  10000. BoxedCars.MouseButton1Down:connect(function()
  10001. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Boxed Cars"])
  10002. end)
  10003.  
  10004. FineArtsShop.MouseButton1Down:connect(function()
  10005. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Fine Arts Shop"])
  10006. end)
  10007.  
  10008. BobsShack.MouseButton1Down:connect(function()
  10009. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Bob's Shack"])
  10010. end)
  10011.  
  10012. Stranger.MouseButton1Down:connect(function()
  10013. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Strange Man"])
  10014. end)
  10015.  
  10016. Option = false
  10017.  
  10018. Dupe.MouseButton1Down:connect(function()
  10019. plr = game:GetService("Players").LocalPlayer
  10020. slot = plr.CurrentSaveSlot
  10021. if Option == false then
  10022. if slot.Value == -1 then
  10023. Option = true
  10024. slot.RobloxLocked = true
  10025. DupeStatus.Text = "ON"
  10026. DupeStatus.TextColor3 = Color3.new(0, 0.666667, 0)
  10027. end
  10028. else
  10029. Option = false
  10030. slot.RobloxLocked = false
  10031. DupeStatus.Text = "OFF"
  10032. DupeStatus.TextColor3 = Color3.new(1, 0, 0)
  10033. end
  10034. end)
  10035.  
  10036. Greywood.MouseButton1Click:Connect(function()
  10037. for i,v in next,workspace.PlayerModels:GetChildren() do
  10038. if v:FindFirstChild("Type") then
  10039. if v.Type.Value == "Blueprint" then
  10040. v.Type.Value = "Structure"
  10041. end
  10042. end
  10043. end
  10044. end)
  10045.  
  10046. TpWood.MouseButton1Click:Connect(function()
  10047. for _, Log in pairs(service.Workspace.LogModels:GetChildren()) do
  10048. if Log.Name:sub(1, 6) == "Loose_" and Log:findFirstChild("Owner") then
  10049. if Log.Owner.Value == service.Players.LocalPlayer then
  10050. Log:MoveTo(service.Players.LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0, 20, 0))
  10051. for i=1,100 do
  10052. service.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Log)
  10053. end
  10054. end
  10055. end
  10056. end
  10057. end)
  10058.  
  10059. local inc = 0
  10060. workspace.PlayerModels.ChildAdded:Connect(function(Item)
  10061. inc = #LastPurchasedList:GetChildren()
  10062. if Item:FindFirstChild("Owner") and Item.Owner.Value==service.Players.LocalPlayer then
  10063. LastPurchasedList.CanvasSize=UDim2.new(0,0,0,25*inc)
  10064. local SellButton=Create("TextButton",{Parent=LastPurchasedList,Size=UDim2.new(1,-9,0,20),Position=UDim2.new(0,5,0,25*inc),Text=" "..Item.Name,Name=Item.Name,TextXAlignment="Left",ZIndex=3,BorderSizePixel=0})
  10065. MakeShadow(SellButton,2)
  10066. SellButton.MouseButton1Click:Connect(function()
  10067. if Item:IsA("Model") then
  10068. Item:MoveTo(service.Players.LocalPlayer.Character.HumanoidRootPart.Position)
  10069. for i=1,100 do
  10070. service.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Item)
  10071. end
  10072. end
  10073. end)
  10074. inc=inc+1
  10075. end
  10076. end)
  10077.  
  10078. workspace.PlayerModels.ChildRemoved:Connect(function(Item)
  10079. inc=0
  10080. if Item:FindFirstChild("Owner") and Item.Owner.Value==service.Players.LocalPlayer then
  10081. if LastPurchasedList:FindFirstChild(Item.Name) then
  10082. LastPurchasedList:FindFirstChild(Item.Name):Destroy()
  10083. for i,v in pairs(LastPurchasedList:GetChildren()) do
  10084. v.Position=UDim2.new(0,5,0,25*(i-1))
  10085. end
  10086. end
  10087. end
  10088. end)
  10089.  
  10090. function UpdatePlanks()
  10091. local inc = 0
  10092. WoodPlanks={}
  10093. for i,v in pairs(service.Workspace.PlayerModels:GetChildren()) do
  10094. if v.Name=="Plank" and v.Owner.Value==service.Players.LocalPlayer then
  10095. if v:FindFirstChild("TreeClass") and WoodPlanks[v.TreeClass.Value] then
  10096. WoodPlanks[v.TreeClass.Value]=WoodPlanks[v.TreeClass.Value]
  10097. WoodPlanks[v.TreeClass.Value]["Wood"][v]=v
  10098. elseif v:FindFirstChild("TreeClass") then
  10099. WoodPlanks[v.TreeClass.Value]={Wood={v.WoodSection}}
  10100. end
  10101. end
  10102. end
  10103. end
  10104.  
  10105. function UpdateSellPlanks()
  10106. local inc=0
  10107. UpdatePlanks()
  10108. ProcessedWoodList:ClearAllChildren()
  10109. for i,v in pairs(WoodPlanks) do
  10110. ProcessedWoodList.CanvasSize=UDim2.new(0,0,0,25*inc)
  10111. local SellButton=Create("TextButton",{Parent=ProcessedWoodList,Size=UDim2.new(1,-14,0,20),Position=UDim2.new(0,5,0,35*inc),Text=" "..i,TextXAlignment="Left",ZIndex=3,BorderSizePixel=0})
  10112. local Color = Create("Frame",{Parent=ProcessedWoodList,Size=UDim2.new(0,5,0,20),Position=UDim2.new(0,0,0,35*inc),BorderSizePixel=0,ZIndex=3,BackgroundColor3=v["Wood"].Color})
  10113. MakeShadow(SellButton,2)
  10114. SellButton.MouseButton1Click:Connect(function()
  10115. for x=1,100 do
  10116. v["Wood"].CFrame=CFrame.new(service.Players.LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0, 20, 0))
  10117. service.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(v["Wood"].Parent)
  10118. end
  10119. end)
  10120. inc=inc+1
  10121. end
  10122. inc=0
  10123. end
  10124.  
  10125. service.Workspace.PlayerModels.ChildRemoved:Connect(function(thing)
  10126. if thing.Owner.Value==service.Players.LocalPlayer then
  10127. UpdateSellPlanks()
  10128. end
  10129. end)
  10130.  
  10131. UpdateSellPlanks()
  10132.  
  10133. SellWood.MouseButton1Click:Connect(function()
  10134. for _, Log in pairs(service.Workspace.LogModels:GetChildren()) do
  10135. if Log.Name:sub(1, 6) == "Loose_" and Log:findFirstChild("Owner") then
  10136. if Log.Owner.Value == service.Players.LocalPlayer then
  10137. for i,v in pairs(Log:GetChildren()) do
  10138. if v.Name=="WoodSection" then
  10139. spawn(function()
  10140. for i=1,10 do
  10141. wait()
  10142. v.CFrame=CFrame.new(Vector3.new(315, -0.296, 85.791))*CFrame.Angles(math.rad(90),0,0)
  10143. end
  10144. end)
  10145. end
  10146. end
  10147. spawn(function()
  10148. for i=1,20 do
  10149. wait()
  10150. service.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Log)
  10151. end
  10152. end)
  10153. end
  10154. end
  10155. end
  10156. end)
  10157.  
  10158. SellPlanks.MouseButton1Click:Connect(function()
  10159. for _, Plank in pairs(service.Workspace.PlayerModels:GetChildren()) do
  10160. if Plank.Name=="Plank" and Plank:findFirstChild("Owner") then
  10161. if Plank.Owner.Value == service.Players.LocalPlayer then
  10162. for i,v in pairs(Plank:GetChildren()) do
  10163. if v.Name=="WoodSection" then
  10164. spawn(function()
  10165. for i=1,10 do
  10166. wait()
  10167. v.CFrame=CFrame.new(Vector3.new(315, -0.296, 85.791))*CFrame.Angles(math.rad(90),0,0)
  10168. end
  10169. end)
  10170. end
  10171. end
  10172. spawn(function()
  10173. for i=1,20 do
  10174. wait()
  10175. service.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Plank)
  10176. end
  10177. end)
  10178. end
  10179. end
  10180. end
  10181. end)
  10182.  
  10183. TpAllPlanks.MouseButton1Click:Connect(function()
  10184. for _, Plank in pairs(service.Workspace.PlayerModels:GetChildren()) do
  10185. if Plank.Name=="Plank" and Plank:findFirstChild("Owner") then
  10186. if Plank.Owner.Value == service.Players.LocalPlayer then
  10187. Plank:MoveTo(service.Players.LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0, 20, 0))
  10188. for i=1,100 do
  10189. service.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Plank)
  10190. end
  10191. end
  10192. end
  10193. end
  10194. end)
  10195.  
  10196. Close.MouseLeave:connect(function()
  10197. Close.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  10198. end)
  10199. Close.MouseEnter:connect(function()
  10200. Close.BackgroundColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  10201. end)
  10202.  
  10203. Dupe.MouseLeave:connect(function()
  10204. Dupe.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  10205. Dupe.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  10206. end)
  10207. Dupe.MouseEnter:connect(function()
  10208. Dupe.TextColor3 = Color3.new(0, 0, 0)
  10209. Dupe.BackgroundColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  10210. end)
  10211.  
  10212. Greywood.MouseLeave:connect(function()
  10213. Greywood.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  10214. Greywood.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  10215. end)
  10216. Greywood.MouseEnter:connect(function()
  10217. Greywood.TextColor3 = Color3.new(0, 0, 0)
  10218. Greywood.BackgroundColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  10219. end)
  10220.  
  10221. Players.MouseLeave:connect(function()
  10222. Players.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  10223. Players.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  10224. end)
  10225. Players.MouseEnter:connect(function()
  10226. Players.TextColor3 = Color3.new(0, 0, 0)
  10227. Players.BackgroundColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  10228. end)
  10229.  
  10230. SellPlanks.MouseLeave:connect(function()
  10231. SellPlanks.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  10232. SellPlanks.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  10233. end)
  10234. SellPlanks.MouseEnter:connect(function()
  10235. SellPlanks.TextColor3 = Color3.new(0, 0, 0)
  10236. SellPlanks.BackgroundColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  10237. end)
  10238.  
  10239. SellWood.MouseLeave:connect(function()
  10240. SellWood.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  10241. SellWood.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  10242. end)
  10243. SellWood.MouseEnter:connect(function()
  10244. SellWood.TextColor3 = Color3.new(0, 0, 0)
  10245. SellWood.BackgroundColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  10246. end)
  10247.  
  10248. Settings.MouseLeave:connect(function()
  10249. Settings.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  10250. Settings.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  10251. end)
  10252. Settings.MouseEnter:connect(function()
  10253. Settings.TextColor3 = Color3.new(0, 0, 0)
  10254. Settings.BackgroundColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  10255. end)
  10256.  
  10257. Teleport.MouseLeave:connect(function()
  10258. Teleport.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  10259. Teleport.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  10260. end)
  10261. Teleport.MouseEnter:connect(function()
  10262. Teleport.TextColor3 = Color3.new(0, 0, 0)
  10263. Teleport.BackgroundColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  10264. end)
  10265.  
  10266. TpBox.MouseLeave:connect(function()
  10267. TpBox.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  10268. TpBox.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  10269. end)
  10270. TpBox.MouseEnter:connect(function()
  10271. TpBox.TextColor3 = Color3.new(0, 0, 0)
  10272. TpBox.BackgroundColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  10273. end)
  10274.  
  10275. TpWood.MouseLeave:connect(function()
  10276. TpWood.TextColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  10277. TpWood.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  10278. end)
  10279. TpWood.MouseEnter:connect(function()
  10280. TpWood.TextColor3 = Color3.new(0, 0, 0)
  10281. TpWood.BackgroundColor3 = Color3.new(0.0705882, 0.521569, 0.529412)
  10282. end)
  10283. end)
  10284. DupeGui.Name = "DupeGui"
  10285. DupeGui.Parent = MainFrame
  10286. DupeGui.BackgroundColor3 = Color3.new(0, 0, 0)
  10287. DupeGui.BorderColor3 = Color3.new(0, 1, 0)
  10288. DupeGui.BorderSizePixel = 5
  10289. DupeGui.Position = UDim2.new(0.744642854, 0, 0.211009175, 0)
  10290. DupeGui.Size = UDim2.new(0, 94, 0, 38)
  10291. DupeGui.Font = Enum.Font.SciFi
  10292. DupeGui.Text = "DupeGui"
  10293. DupeGui.TextColor3 = Color3.new(0, 1, 0)
  10294. DupeGui.TextScaled = true
  10295. DupeGui.TextSize = 14
  10296. DupeGui.TextWrapped = true
  10297. DupeGui.MouseButton1Down:connect(function()
  10298. Option = false
  10299. Found = false
  10300. Tool = "None"
  10301. Down = false
  10302. Mouse = game.Players.LocalPlayer:GetMouse()
  10303.  
  10304. Client = game.ReplicatedStorage.Interaction.ClientSetListPlayer
  10305. players = game.Players
  10306. for i, v in pairs(players:GetPlayers()) do
  10307. if v.Name ~= players.LocalPlayer.Name then
  10308. Client:InvokeServer(players.LocalPlayer.BlacklistFolder, v, true)
  10309. end
  10310. end
  10311. players.PlayerAdded:connect(function(plr)
  10312. Client:InvokeServer(players.LocalPlayer.BlacklistFolder, plr, true)
  10313. end)
  10314.  
  10315. function move(object)
  10316. object:MoveTo(game.Players.LocalPlayer.Character.Head.Position + Vector3.new(5, -4, 5))
  10317. object.WoodSection.Anchored = true
  10318. wait(2)
  10319. object.WoodSection.Anchored = false
  10320. end
  10321.  
  10322. function tree(object, class)
  10323. for i, v in pairs(object:GetChildren()) do
  10324. if v.Name == "TreeClass" then
  10325. if v.Value == class then
  10326. if Found == false then
  10327. move(object)
  10328. Found = true
  10329. end
  10330. end
  10331. end
  10332. end
  10333. end
  10334.  
  10335. function cut(object, class)
  10336. for i, v in pairs(object:GetChildren()) do
  10337. if v.Name == "TreeClass" then
  10338. if v.Value == class then
  10339. for a, b in pairs(object:GetChildren()) do
  10340. if b.Name == "Owner" then
  10341. for c, d in pairs(b:GetChildren()) do
  10342. if d.Name == "OwnerString" then
  10343. if d.Value == game.Players.LocalPlayer.Name then
  10344. move(object)
  10345. else
  10346. if d.Value == "" then
  10347. move(object)
  10348. end
  10349. end
  10350. end
  10351. end
  10352. end
  10353. end
  10354. end
  10355. end
  10356. end
  10357. end
  10358.  
  10359. local Text = Instance.new("TextLabel")
  10360. local Main = Instance.new("Frame")
  10361. local CF = Instance.new("ScreenGui")
  10362. local CG69 = game.CoreGui
  10363. local Tab1 = Instance.new("TextButton")
  10364. local Tab2 = Instance.new("TextButton")
  10365. local Tab3 = Instance.new("TextButton")
  10366. local TTab1 = Instance.new("Frame")
  10367. local TTab2 = Instance.new("Frame")
  10368. local TTab3 = Instance.new("Frame")
  10369. local Close = Instance.new("TextButton")
  10370. local Depart = Instance.new("TextLabel")
  10371.  
  10372.  
  10373. local place = UDim2.new(0, 0, 0, 70)
  10374. local size = UDim2.new(0, 300, 0, 100)
  10375.  
  10376. CF.Name = "GO!!"
  10377. CF.Parent = CG69
  10378. local CGG = CG69["GO!!"]
  10379.  
  10380.  
  10381. Main.Name = "Main"
  10382. Main.Parent = CF
  10383. Main.BackgroundColor3 = Color3.new(0.1, 0.6, 0.3)
  10384. Main.BorderColor3 = Color3.new(0, 0, 0)
  10385. Main.Position = UDim2.new(0, 500, 0, 500)
  10386. Main.Size = UDim2.new(0, 300, 0, 75)
  10387. Main.Visible = true
  10388. Main.Draggable = true
  10389. Main.Active = true
  10390.  
  10391. Text.Name = "Text"
  10392. Text.Parent = Main
  10393. Text.BackgroundColor3 = Color3.new(1, 1, 1)
  10394. Text.BackgroundTransparency = 1
  10395. Text.Position = UDim2.new(0.45, 0, 0, 0)
  10396. Text.Size = UDim2.new(0, 20, 0, 35)
  10397. Text.Font = Enum.Font.SourceSansBold
  10398. Text.FontSize = Enum.FontSize.Size18
  10399. Text.Text = "GUI Not in Use"
  10400. Text.TextColor3 = Color3.new(0.901961, 0.901961, 0.901961)
  10401. Text.TextSize = 18
  10402.  
  10403. Depart .Name = "Depart"
  10404. Depart .Parent = Main
  10405. Depart .BackgroundColor3 = Color3.new(1, 1, 1)
  10406. Depart .BackgroundTransparency = 1
  10407. Depart .Position = UDim2.new(0, 150, 0, 0)
  10408. Depart .Size = UDim2.new(0, 1, 0, 10)
  10409. Depart .Font = Enum.Font.SourceSansBold
  10410. Depart .FontSize = Enum.FontSize.Size18
  10411. Depart .Text = "Time To Departure: 0"
  10412. Depart .TextColor3 = Color3.new(0.901961, 0.901961, 0.901961)
  10413. Depart .TextSize = 18
  10414.  
  10415. Tab1.Name = "Basic"
  10416. Tab1.Parent = Main
  10417. Tab1.BackgroundColor3 = Color3.new(0.3, 0.6, 0.9)
  10418. Tab1.Position = UDim2.new(0, 0, 0, 35)
  10419. Tab1.Size = UDim2.new(0, 80, 0, 20)
  10420. Tab1.Font = Enum.Font.Cartoon
  10421. Tab1.FontSize = Enum.FontSize.Size14
  10422. Tab1.Text = "Basic Tab"
  10423. Tab1.TextSize = 18
  10424.  
  10425. Tab2.Name = "UTrees"
  10426. Tab2.Parent = Main
  10427. Tab2.BackgroundColor3 = Color3.new(1, 0, 0)
  10428. Tab2.Position = UDim2.new(0, 110, 0, 35)
  10429. Tab2.Size = UDim2.new(0, 80, 0, 20)
  10430. Tab2.Font = Enum.Font.Cartoon
  10431. Tab2.FontSize = Enum.FontSize.Size14
  10432. Tab2.Text = "UTrees"
  10433. Tab2.TextSize = 18
  10434.  
  10435. Tab3.Name = "CTrees"
  10436. Tab3.Parent = Main
  10437. Tab3.BackgroundColor3 = Color3.new(0.5, 0.8, 0.2)
  10438. Tab3.Position = UDim2.new(0, 220, 0, 35)
  10439. Tab3.Size = UDim2.new(0, 80, 0, 20)
  10440. Tab3.Font = Enum.Font.Cartoon
  10441. Tab3.FontSize = Enum.FontSize.Size14
  10442. Tab3.Text = "CTrees"
  10443. Tab3.TextSize = 18
  10444.  
  10445. TTab1.Name = "GunsTab"
  10446. TTab1.Parent = Main
  10447. TTab1.BackgroundColor3 = Color3.new(0, 0, 0)
  10448. TTab1.BorderColor3 = Color3.new(1, 1, 1)
  10449. TTab1.Position = place
  10450. TTab1.Size = size
  10451. TTab1.Visible = true
  10452.  
  10453. TTab2.Name = "ItemsTab"
  10454. TTab2.Parent = Main
  10455. TTab2.BackgroundColor3 = Color3.new(1, 1, 1)
  10456. TTab2.BorderColor3 = Color3.new(0, 0, 0)
  10457. TTab2.Position = place
  10458. TTab2.Size = size
  10459. TTab2.Visible = false
  10460.  
  10461. TTab3.Name = "StatsTab"
  10462. TTab3.Parent = Main
  10463. TTab3.BackgroundColor3 = Color3.new(0, 1, 0)
  10464. TTab3.BorderColor3 = Color3.new(1, 0, 1)
  10465. TTab3.Position = place
  10466. TTab3.Size = size
  10467. TTab3.Visible = false
  10468.  
  10469. Close.Name = "X"
  10470. Close.Parent = Main
  10471. Close.BackgroundColor3 = Color3.new(1, 0, 0)
  10472. Close.Position = UDim2.new(0, 275, 0, 0)
  10473. Close.Size = UDim2.new(0, 25, 0, 25)
  10474. Close.Font = Enum.Font.Cartoon
  10475. Close.FontSize = Enum.FontSize.Size14
  10476. Close.Text = "X"
  10477. Close.TextSize = 14
  10478.  
  10479.  
  10480. -- Tab 1 Buttons --
  10481. Dupe = Instance.new("TextButton")
  10482. DupeLabel = Instance.new("TextLabel")
  10483. Steal = Instance.new("TextButton")
  10484. CopyTool = Instance.new("TextButton")
  10485. DeleteTool = Instance.new("TextButton")
  10486. MoveTool = Instance.new("TextButton")
  10487.  
  10488. Dupe.Name = "Dupe"
  10489. Dupe.Parent = TTab1
  10490. Dupe.BackgroundColor3 = Color3.new(0.7, 0, 0)
  10491. Dupe.Position = UDim2.new(0, 105, 0, 54)
  10492. Dupe.Size = UDim2.new(0,85, 0, 25)
  10493. Dupe.Font = Enum.Font.Cartoon
  10494. Dupe.FontSize = Enum.FontSize.Size14
  10495. Dupe.Text = "Dupe"
  10496. Dupe.TextSize = 14
  10497.  
  10498. DupeLabel.Name = "Dupe"
  10499. DupeLabel.Parent = TTab1
  10500. DupeLabel.BackgroundColor3 = Color3.new(0.7, 0, 0)
  10501. DupeLabel.BackgroundTransparency = 1
  10502. DupeLabel.Position = UDim2.new(0, 105, 0, 74)
  10503. DupeLabel.Size = UDim2.new(0,85, 0, 25)
  10504. DupeLabel.Font = Enum.Font.Cartoon
  10505. DupeLabel.FontSize = Enum.FontSize.Size14
  10506. DupeLabel.Text = "Current save Will Save"
  10507. DupeLabel.TextColor3 = Color3.new(255, 255, 255)
  10508. DupeLabel.TextSize = 14
  10509.  
  10510. Steal.Name = "Dupe"
  10511. Steal.Parent = TTab1
  10512. Steal.BackgroundColor3 = Color3.new(1, 1, 1)
  10513. Steal.Position = UDim2.new(0, 105, 0, 31)
  10514. Steal.Size = UDim2.new(0,85, 0, 25)
  10515. Steal.Font = Enum.Font.Cartoon
  10516. Steal.FontSize = Enum.FontSize.Size14
  10517. Steal.Text = "Steal"
  10518. Steal.TextSize = 14
  10519.  
  10520. CopyTool.Name = "CopyTool"
  10521. CopyTool.Parent = TTab1
  10522. CopyTool.BackgroundColor3 = Color3.new(0.7, 0, 0)
  10523. CopyTool.Position = UDim2.new(0, 1, 0, 1)
  10524. CopyTool.Size = UDim2.new(0,85, 0, 25)
  10525. CopyTool.Font = Enum.Font.Cartoon
  10526. CopyTool.FontSize = Enum.FontSize.Size14
  10527. CopyTool.Text = "Copy"
  10528. CopyTool.TextSize = 14
  10529.  
  10530. DeleteTool.Name = "DeleteTool"
  10531. DeleteTool.Parent = TTab1
  10532. DeleteTool.BackgroundColor3 = Color3.new(0.7, 0, 0)
  10533. DeleteTool.Position = UDim2.new(0, 90, 0, 1)
  10534. DeleteTool.Size = UDim2.new(0,85, 0, 25)
  10535. DeleteTool.Font = Enum.Font.Cartoon
  10536. DeleteTool.FontSize = Enum.FontSize.Size14
  10537. DeleteTool.Text = "Delete"
  10538. DeleteTool.TextSize = 14
  10539.  
  10540. MoveTool.Name = "MoveTool"
  10541. MoveTool.Parent = TTab1
  10542. MoveTool.BackgroundColor3 = Color3.new(0.7, 0, 0)
  10543. MoveTool.Position = UDim2.new(0, 179, 0, 1)
  10544. MoveTool.Size = UDim2.new(0,85, 0, 25)
  10545. MoveTool.Font = Enum.Font.Cartoon
  10546. MoveTool.FontSize = Enum.FontSize.Size14
  10547. MoveTool.Text = "Move"
  10548. MoveTool.TextSize = 14
  10549.  
  10550. -- end --
  10551.  
  10552.  
  10553.  
  10554. -- Tab 1 Button Functions --
  10555. Dupe.MouseButton1Down:connect(function()
  10556. plr = game:GetService("Players").LocalPlayer
  10557. slot = plr.CurrentSaveSlot
  10558. if Option == false then
  10559. if slot.Value == -1 then
  10560. Option = true
  10561. slot.RobloxLocked = true
  10562. Dupe.BackgroundColor3 = Color3.new(0, 1, 0)
  10563. DupeLabel.Text = "Current save Will Not Save"
  10564. end
  10565. else
  10566. Option = false
  10567. slot.RobloxLocked = false
  10568. Dupe.BackgroundColor3 = Color3.new(0.7, 0, 0)
  10569. DupeLabel.Text = "Current save Will Save"
  10570. end
  10571. end)
  10572.  
  10573. Steal.MouseButton1Down:connect(function()
  10574. Owner = false
  10575. for i, v in pairs(game.Workspace:GetChildren()) do
  10576. if v.Name == "Owner" then
  10577. Owner = true
  10578. end
  10579. end
  10580.  
  10581. if Owner == false then
  10582. for i, v in pairs(game.Workspace.PlayerModels:GetChildren()) do
  10583. for a, b in pairs(v:GetChildren()) do
  10584. if b.Name == "Owner" then
  10585. for c, d in pairs(b:GetChildren()) do
  10586. if d:IsA("StringValue") then
  10587. if d.Value == game.Players.LocalPlayer.Name then
  10588. object = b
  10589. end
  10590. end
  10591. end
  10592. end
  10593. end
  10594. end
  10595.  
  10596. print("Copied")
  10597.  
  10598. if object then
  10599. Owner = true
  10600. object:clone().Parent = game.Workspace
  10601. end
  10602. end
  10603. wait()
  10604.  
  10605. if Owner == true then
  10606. print("Copying")
  10607. for i, v in pairs(game.Workspace.PlayerModels:GetChildren()) do
  10608. for a, b in pairs(v:GetChildren()) do
  10609. if b.Name == "Owner" then
  10610. b:remove()
  10611. game.Workspace.Owner:clone().Parent = v
  10612. end
  10613. end
  10614. end
  10615. end
  10616.  
  10617. end)
  10618.  
  10619. CopyTool.MouseButton1Down:connect(function()
  10620. if Tool == "Copy" then
  10621. Tool = "None"
  10622. CopyTool.BackgroundColor3 = Color3.new(0.7, 0, 0)
  10623. else
  10624. Tool = "Copy"
  10625. CopyTool.BackgroundColor3 = Color3.new(0, 0.7, 0)
  10626. DeleteTool.BackgroundColor3 = Color3.new(0.7, 0, 0)
  10627. MoveTool.BackgroundColor3 = Color3.new(0.7, 0, 0)
  10628. end
  10629. end)
  10630.  
  10631. DeleteTool.MouseButton1Down:connect(function()
  10632. if Tool == "Delete" then
  10633. Tool = "Nothing"
  10634. DeleteTool.BackgroundColor3 = Color3.new(0.7, 0, 0)
  10635. else
  10636. Tool = "Delete"
  10637. CopyTool.BackgroundColor3 = Color3.new(0.7, 0, 0)
  10638. DeleteTool.BackgroundColor3 = Color3.new(0, 0.7, 0)
  10639. MoveTool.BackgroundColor3 = Color3.new(0.7, 0, 0)
  10640. end
  10641. end)
  10642.  
  10643. MoveTool.MouseButton1Down:connect(function()
  10644. if Tool == "Move" then
  10645. Tool = "Nothing"
  10646. MoveTool.BackgroundColor3 = Color3.new(0.7, 0, 0)
  10647. else
  10648. Tool = "Move"
  10649. CopyTool.BackgroundColor3 = Color3.new(0.7, 0, 0)
  10650. DeleteTool.BackgroundColor3 = Color3.new(0.7, 0, 0)
  10651. MoveTool.BackgroundColor3 = Color3.new(0, 0.7, 0)
  10652.  
  10653. end
  10654. end)
  10655.  
  10656. -- end --
  10657.  
  10658. -- Tab2 Buttons --
  10659. Birch = Instance.new("TextButton")
  10660. CaveCrawler = Instance.new("TextButton")
  10661. Cherry = Instance.new("TextButton")
  10662. Fir = Instance.new("TextButton")
  10663. Generic = Instance.new("TextButton")
  10664. GoldSwampy = Instance.new("TextButton")
  10665. GreenSwampy = Instance.new("TextButton")
  10666. Koa = Instance.new("TextButton")
  10667. LoneCave = Instance.new("TextButton")
  10668. Oak = Instance.new("TextButton")
  10669. Palm = Instance.new("TextButton")
  10670. Pine = Instance.new("TextButton")
  10671. Volcano = Instance.new("TextButton")
  10672. Walnut = Instance.new("TextButton")
  10673.  
  10674. Birch.Name = "Birch"
  10675. Birch.Parent = TTab2
  10676. Birch.BackgroundColor3 = Color3.new(0, 1, 1)
  10677. Birch.Position = UDim2.new(0, 1, 0, 1)
  10678. Birch.Size = UDim2.new(0,70, 0, 25)
  10679. Birch.Font = Enum.Font.Cartoon
  10680. Birch.FontSize = Enum.FontSize.Size14
  10681. Birch.Text = "Birch"
  10682. Birch.TextSize = 14
  10683.  
  10684. CaveCrawler.Name = "CaveCrawler"
  10685. CaveCrawler.Parent = TTab2
  10686. CaveCrawler.BackgroundColor3 = Color3.new(0, 1, 1)
  10687. CaveCrawler.Position = UDim2.new(0, 71, 0, 1)
  10688. CaveCrawler.Size = UDim2.new(0,70, 0, 25)
  10689. CaveCrawler.Font = Enum.Font.Cartoon
  10690. CaveCrawler.FontSize = Enum.FontSize.Size14
  10691. CaveCrawler.Text = "CaveCrawler"
  10692. CaveCrawler.TextSize = 14
  10693.  
  10694. Cherry.Name = "Cherry"
  10695. Cherry.Parent = TTab2
  10696. Cherry.BackgroundColor3 = Color3.new(0, 1, 1)
  10697. Cherry.Position = UDim2.new(0, 141, 0, 1)
  10698. Cherry.Size = UDim2.new(0,70, 0, 25)
  10699. Cherry.Font = Enum.Font.Cartoon
  10700. Cherry.FontSize = Enum.FontSize.Size14
  10701. Cherry.Text = "Cherry"
  10702. Cherry.TextSize = 14
  10703.  
  10704. Fir.Name = "Fir"
  10705. Fir.Parent = TTab2
  10706. Fir.BackgroundColor3 = Color3.new(0, 1, 1)
  10707. Fir.Position = UDim2.new(0, 211, 0, 1)
  10708. Fir.Size = UDim2.new(0,70, 0, 25)
  10709. Fir.Font = Enum.Font.Cartoon
  10710. Fir.FontSize = Enum.FontSize.Size14
  10711. Fir.Text = "Fir"
  10712. Fir.TextSize = 14
  10713.  
  10714. Generic.Name = "Generic"
  10715. Generic.Parent = TTab2
  10716. Generic.BackgroundColor3 = Color3.new(0, 1, 1)
  10717. Generic.Position = UDim2.new(0, 1, 0, 26)
  10718. Generic.Size = UDim2.new(0,70, 0, 25)
  10719. Generic.Font = Enum.Font.Cartoon
  10720. Generic.FontSize = Enum.FontSize.Size14
  10721. Generic.Text = "Generic"
  10722. Generic.TextSize = 14
  10723.  
  10724. GoldSwampy.Name = "GoldSwampy"
  10725. GoldSwampy.Parent = TTab2
  10726. GoldSwampy.BackgroundColor3 = Color3.new(0, 1, 1)
  10727. GoldSwampy.Position = UDim2.new(0, 71, 0, 26)
  10728. GoldSwampy.Size = UDim2.new(0,70, 0, 25)
  10729. GoldSwampy.Font = Enum.Font.Cartoon
  10730. GoldSwampy.FontSize = Enum.FontSize.Size14
  10731. GoldSwampy.Text = "Gold"
  10732. GoldSwampy.TextSize = 14
  10733.  
  10734. GreenSwampy.Name = "GreenSwampy"
  10735. GreenSwampy.Parent = TTab2
  10736. GreenSwampy.BackgroundColor3 = Color3.new(0, 1, 1)
  10737. GreenSwampy.Position = UDim2.new(0, 141, 0, 26)
  10738. GreenSwampy.Size = UDim2.new(0,70, 0, 25)
  10739. GreenSwampy.Font = Enum.Font.Cartoon
  10740. GreenSwampy.FontSize = Enum.FontSize.Size14
  10741. GreenSwampy.Text = "Green"
  10742. GreenSwampy.TextSize = 14
  10743.  
  10744. Koa.Name = "Koa"
  10745. Koa.Parent = TTab2
  10746. Koa.BackgroundColor3 = Color3.new(0, 1, 1)
  10747. Koa.Position = UDim2.new(0, 211, 0, 26)
  10748. Koa.Size = UDim2.new(0,70, 0, 25)
  10749. Koa.Font = Enum.Font.Cartoon
  10750. Koa.FontSize = Enum.FontSize.Size14
  10751. Koa.Text = "Koa"
  10752. Koa.TextSize = 14
  10753.  
  10754. LoneCave.Name = "LoneCave"
  10755. LoneCave.Parent = TTab2
  10756. LoneCave.BackgroundColor3 = Color3.new(0, 1, 1)
  10757. LoneCave.Position = UDim2.new(0, 1, 0, 51)
  10758. LoneCave.Size = UDim2.new(0,70, 0, 25)
  10759. LoneCave.Font = Enum.Font.Cartoon
  10760. LoneCave.FontSize = Enum.FontSize.Size14
  10761. LoneCave.Text = "LoneCave"
  10762. LoneCave.TextSize = 14
  10763.  
  10764. Oak.Name = "Oak"
  10765. Oak.Parent = TTab2
  10766. Oak.BackgroundColor3 = Color3.new(0, 1, 1)
  10767. Oak.Position = UDim2.new(0, 71, 0, 51)
  10768. Oak.Size = UDim2.new(0,70, 0, 25)
  10769. Oak.Font = Enum.Font.Cartoon
  10770. Oak.FontSize = Enum.FontSize.Size14
  10771. Oak.Text = "Oak"
  10772. Oak.TextSize = 14
  10773.  
  10774. Palm.Name = "Palm"
  10775. Palm.Parent = TTab2
  10776. Palm.BackgroundColor3 = Color3.new(0, 1, 1)
  10777. Palm.Position = UDim2.new(0, 141, 0, 51)
  10778. Palm.Size = UDim2.new(0,70, 0, 25)
  10779. Palm.Font = Enum.Font.Cartoon
  10780. Palm.FontSize = Enum.FontSize.Size14
  10781. Palm.Text = "Palm"
  10782. Palm.TextSize = 14
  10783.  
  10784. Pine.Name = "Pine"
  10785. Pine.Parent = TTab2
  10786. Pine.BackgroundColor3 = Color3.new(0, 1, 1)
  10787. Pine.Position = UDim2.new(0, 211, 0, 51)
  10788. Pine.Size = UDim2.new(0,70, 0, 25)
  10789. Pine.Font = Enum.Font.Cartoon
  10790. Pine.FontSize = Enum.FontSize.Size14
  10791. Pine.Text = "Pine"
  10792. Pine.TextSize = 14
  10793.  
  10794. Volcano.Name = "Volcano"
  10795. Volcano.Parent = TTab2
  10796. Volcano.BackgroundColor3 = Color3.new(0, 1, 1)
  10797. Volcano.Position = UDim2.new(0, 1, 0, 76)
  10798. Volcano.Size = UDim2.new(0,70, 0, 25)
  10799. Volcano.Font = Enum.Font.Cartoon
  10800. Volcano.FontSize = Enum.FontSize.Size14
  10801. Volcano.Text = "Volcano"
  10802. Volcano.TextSize = 14
  10803.  
  10804. Walnut.Name = "Walnut"
  10805. Walnut.Parent = TTab2
  10806. Walnut.BackgroundColor3 = Color3.new(0, 1, 1)
  10807. Walnut.Position = UDim2.new(0, 71, 0, 76)
  10808. Walnut.Size = UDim2.new(0,70, 0, 25)
  10809. Walnut.Font = Enum.Font.Cartoon
  10810. Walnut.FontSize = Enum.FontSize.Size14
  10811. Walnut.Text = "Walnut"
  10812. Walnut.TextSize = 14
  10813.  
  10814. -- end --
  10815.  
  10816. -- Tab2 Button Functions --
  10817. Birch.MouseButton1Down:connect(function()
  10818. Found = false
  10819. for i, v in pairs(game.Workspace:GetChildren()) do
  10820. if v.Name == "TreeRegion" then
  10821. for a, b in pairs(v:GetChildren()) do
  10822. tree(b, "Birch")
  10823. end
  10824. end
  10825. end
  10826. end)
  10827.  
  10828. CaveCrawler.MouseButton1Down:connect(function()
  10829. Found = false
  10830. for i, v in pairs(game.Workspace:GetChildren()) do
  10831. if v.Name == "TreeRegion" then
  10832. for a, b in pairs(v:GetChildren()) do
  10833. tree(b, "CaveCrawler")
  10834. end
  10835. end
  10836. end
  10837. end)
  10838.  
  10839. Cherry.MouseButton1Down:connect(function()
  10840. Found = false
  10841. for i, v in pairs(game.Workspace:GetChildren()) do
  10842. if v.Name == "TreeRegion" then
  10843. for a, b in pairs(v:GetChildren()) do
  10844. tree(b, "Cherry")
  10845. end
  10846. end
  10847. end
  10848. end)
  10849.  
  10850. Fir.MouseButton1Down:connect(function()
  10851. Found = false
  10852. for i, v in pairs(game.Workspace:GetChildren()) do
  10853. if v.Name == "TreeRegion" then
  10854. for a, b in pairs(v:GetChildren()) do
  10855. tree(b, "Fir")
  10856. end
  10857. end
  10858. end
  10859. end)
  10860.  
  10861. Generic.MouseButton1Down:connect(function()
  10862. Found = false
  10863. for i, v in pairs(game.Workspace:GetChildren()) do
  10864. if v.Name == "TreeRegion" then
  10865. for a, b in pairs(v:GetChildren()) do
  10866. tree(b, "Generic")
  10867. end
  10868. end
  10869. end
  10870. end)
  10871.  
  10872. GoldSwampy.MouseButton1Down:connect(function()
  10873. Found = false
  10874. for i, v in pairs(game.Workspace:GetChildren()) do
  10875. if v.Name == "TreeRegion" then
  10876. for a, b in pairs(v:GetChildren()) do
  10877. tree(b, "GoldSwampy")
  10878. end
  10879. end
  10880. end
  10881. end)
  10882.  
  10883. GreenSwampy.MouseButton1Down:connect(function()
  10884. Found = false
  10885. for i, v in pairs(game.Workspace:GetChildren()) do
  10886. if v.Name == "TreeRegion" then
  10887. for a, b in pairs(v:GetChildren()) do
  10888. tree(b, "GreenSwampy")
  10889. end
  10890. end
  10891. end
  10892. end)
  10893.  
  10894. Koa.MouseButton1Down:connect(function()
  10895. Found = false
  10896. for i, v in pairs(game.Workspace:GetChildren()) do
  10897. if v.Name == "TreeRegion" then
  10898. for a, b in pairs(v:GetChildren()) do
  10899. tree(b, "Koa")
  10900. end
  10901. end
  10902. end
  10903. end)
  10904.  
  10905. LoneCave.MouseButton1Down:connect(function()
  10906. Found = false
  10907. for i, v in pairs(game.Workspace:GetChildren()) do
  10908. if v.Name == "TreeRegion" then
  10909. for a, b in pairs(v:GetChildren()) do
  10910. tree(b, "LoneCave")
  10911. end
  10912. end
  10913. end
  10914. end)
  10915.  
  10916. Oak.MouseButton1Down:connect(function()
  10917. Found = false
  10918. for i, v in pairs(game.Workspace:GetChildren()) do
  10919. if v.Name == "TreeRegion" then
  10920. for a, b in pairs(v:GetChildren()) do
  10921. tree(b, "Oak")
  10922. end
  10923. end
  10924. end
  10925. end)
  10926.  
  10927. Palm.MouseButton1Down:connect(function()
  10928. Found = false
  10929. for i, v in pairs(game.Workspace:GetChildren()) do
  10930. if v.Name == "TreeRegion" then
  10931. for a, b in pairs(v:GetChildren()) do
  10932. tree(b, "Palm")
  10933. end
  10934. end
  10935. end
  10936. end)
  10937.  
  10938. Pine.MouseButton1Down:connect(function()
  10939. Found = false
  10940. for i, v in pairs(game.Workspace:GetChildren()) do
  10941. if v.Name == "TreeRegion" then
  10942. for a, b in pairs(v:GetChildren()) do
  10943. tree(b, "Pine")
  10944. end
  10945. end
  10946. end
  10947. end)
  10948.  
  10949. Volcano.MouseButton1Down:connect(function()
  10950. Found = false
  10951. for i, v in pairs(game.Workspace:GetChildren()) do
  10952. if v.Name == "TreeRegion" then
  10953. for a, b in pairs(v:GetChildren()) do
  10954. tree(b, "Volcano")
  10955. end
  10956. end
  10957. end
  10958. end)
  10959.  
  10960. Walnut.MouseButton1Down:connect(function()
  10961. Found = false
  10962. for i, v in pairs(game.Workspace:GetChildren()) do
  10963. if v.Name == "TreeRegion" then
  10964. for a, b in pairs(v:GetChildren()) do
  10965. tree(b, "Walnut")
  10966. end
  10967. end
  10968. end
  10969. end)
  10970.  
  10971. -- end --
  10972.  
  10973. -- Tab3 Buttons --
  10974. Birch2 = Instance.new("TextButton")
  10975. CaveCrawler2 = Instance.new("TextButton")
  10976. Cherry2 = Instance.new("TextButton")
  10977. Fir2 = Instance.new("TextButton")
  10978. Generic2 = Instance.new("TextButton")
  10979. GoldSwampy2 = Instance.new("TextButton")
  10980. GreenSwampy2 = Instance.new("TextButton")
  10981. Koa2 = Instance.new("TextButton")
  10982. LoneCave2 = Instance.new("TextButton")
  10983. Oak2 = Instance.new("TextButton")
  10984. Palm2 = Instance.new("TextButton")
  10985. Pine2 = Instance.new("TextButton")
  10986. Volcano2 = Instance.new("TextButton")
  10987. Walnut2 = Instance.new("TextButton")
  10988.  
  10989. Birch2.Name = "Birch"
  10990. Birch2.Parent = TTab3
  10991. Birch2.BackgroundColor3 = Color3.new(1, 1, 0)
  10992. Birch2.Position = UDim2.new(0, 1, 0, 1)
  10993. Birch2.Size = UDim2.new(0,70, 0, 25)
  10994. Birch2.Font = Enum.Font.Cartoon
  10995. Birch2.FontSize = Enum.FontSize.Size14
  10996. Birch2.Text = "Birch"
  10997. Birch2.TextSize = 14
  10998.  
  10999. CaveCrawler2.Name = "CaveCrawler"
  11000. CaveCrawler2.Parent = TTab3
  11001. CaveCrawler2.BackgroundColor3 = Color3.new(1, 1, 0)
  11002. CaveCrawler2.Position = UDim2.new(0, 71, 0, 1)
  11003. CaveCrawler2.Size = UDim2.new(0,70, 0, 25)
  11004. CaveCrawler2.Font = Enum.Font.Cartoon
  11005. CaveCrawler2.FontSize = Enum.FontSize.Size14
  11006. CaveCrawler2.Text = "CaveCrawler"
  11007. CaveCrawler2.TextSize = 14
  11008.  
  11009. Cherry2.Name = "Cherry"
  11010. Cherry2.Parent = TTab3
  11011. Cherry2.BackgroundColor3 = Color3.new(1, 1, 0)
  11012. Cherry2.Position = UDim2.new(0, 141, 0, 1)
  11013. Cherry2.Size = UDim2.new(0,70, 0, 25)
  11014. Cherry2.Font = Enum.Font.Cartoon
  11015. Cherry2.FontSize = Enum.FontSize.Size14
  11016. Cherry2.Text = "Cherry"
  11017. Cherry2.TextSize = 14
  11018.  
  11019. Fir2.Name = "Fir"
  11020. Fir2.Parent = TTab3
  11021. Fir2.BackgroundColor3 = Color3.new(1, 1, 0)
  11022. Fir2.Position = UDim2.new(0, 211, 0, 1)
  11023. Fir2.Size = UDim2.new(0,70, 0, 25)
  11024. Fir2.Font = Enum.Font.Cartoon
  11025. Fir2.FontSize = Enum.FontSize.Size14
  11026. Fir2.Text = "Fir"
  11027. Fir2.TextSize = 14
  11028.  
  11029. Generic2.Name = "Generic"
  11030. Generic2.Parent = TTab3
  11031. Generic2.BackgroundColor3 = Color3.new(1, 1, 0)
  11032. Generic2.Position = UDim2.new(0, 1, 0, 26)
  11033. Generic2.Size = UDim2.new(0,70, 0, 25)
  11034. Generic2.Font = Enum.Font.Cartoon
  11035. Generic2.FontSize = Enum.FontSize.Size14
  11036. Generic2.Text = "Generic"
  11037. Generic2.TextSize = 14
  11038.  
  11039. GoldSwampy2.Name = "GoldSwampy"
  11040. GoldSwampy2.Parent = TTab3
  11041. GoldSwampy2.BackgroundColor3 = Color3.new(1, 1, 0)
  11042. GoldSwampy2.Position = UDim2.new(0, 71, 0, 26)
  11043. GoldSwampy2.Size = UDim2.new(0,70, 0, 25)
  11044. GoldSwampy2.Font = Enum.Font.Cartoon
  11045. GoldSwampy2.FontSize = Enum.FontSize.Size14
  11046. GoldSwampy2.Text = "Gold"
  11047. GoldSwampy2.TextSize = 14
  11048.  
  11049. GreenSwampy2.Name = "GreenSwampy"
  11050. GreenSwampy2.Parent = TTab3
  11051. GreenSwampy2.BackgroundColor3 = Color3.new(1, 1, 0)
  11052. GreenSwampy2.Position = UDim2.new(0, 141, 0, 26)
  11053. GreenSwampy2.Size = UDim2.new(0,70, 0, 25)
  11054. GreenSwampy2.Font = Enum.Font.Cartoon
  11055. GreenSwampy2.FontSize = Enum.FontSize.Size14
  11056. GreenSwampy2.Text = "Green"
  11057. GreenSwampy2.TextSize = 14
  11058.  
  11059. Koa2.Name = "Koa"
  11060. Koa2.Parent = TTab3
  11061. Koa2.BackgroundColor3 = Color3.new(1, 1, 0)
  11062. Koa2.Position = UDim2.new(0, 211, 0, 26)
  11063. Koa2.Size = UDim2.new(0,70, 0, 25)
  11064. Koa2.Font = Enum.Font.Cartoon
  11065. Koa2.FontSize = Enum.FontSize.Size14
  11066. Koa2.Text = "Koa"
  11067. Koa2.TextSize = 14
  11068.  
  11069. LoneCave2.Name = "LoneCave"
  11070. LoneCave2.Parent = TTab3
  11071. LoneCave2.BackgroundColor3 = Color3.new(1, 1, 0)
  11072. LoneCave2.Position = UDim2.new(0, 1, 0, 51)
  11073. LoneCave2.Size = UDim2.new(0,70, 0, 25)
  11074. LoneCave2.Font = Enum.Font.Cartoon
  11075. LoneCave2.FontSize = Enum.FontSize.Size14
  11076. LoneCave2.Text = "LoneCave"
  11077. LoneCave2.TextSize = 14
  11078.  
  11079. Oak2.Name = "Oak"
  11080. Oak2.Parent = TTab3
  11081. Oak2.BackgroundColor3 = Color3.new(1, 1, 0)
  11082. Oak2.Position = UDim2.new(0, 71, 0, 51)
  11083. Oak2.Size = UDim2.new(0,70, 0, 25)
  11084. Oak2.Font = Enum.Font.Cartoon
  11085. Oak2.FontSize = Enum.FontSize.Size14
  11086. Oak2.Text = "Oak"
  11087. Oak2.TextSize = 14
  11088.  
  11089. Palm2.Name = "Palm"
  11090. Palm2.Parent = TTab3
  11091. Palm2.BackgroundColor3 = Color3.new(1, 1, 0)
  11092. Palm2.Position = UDim2.new(0, 141, 0, 51)
  11093. Palm2.Size = UDim2.new(0,70, 0, 25)
  11094. Palm2.Font = Enum.Font.Cartoon
  11095. Palm2.FontSize = Enum.FontSize.Size14
  11096. Palm2.Text = "Palm"
  11097. Palm2.TextSize = 14
  11098.  
  11099. Pine2.Name = "Pine"
  11100. Pine2.Parent = TTab3
  11101. Pine2.BackgroundColor3 = Color3.new(1, 1, 0)
  11102. Pine2.Position = UDim2.new(0, 211, 0, 51)
  11103. Pine2.Size = UDim2.new(0,70, 0, 25)
  11104. Pine2.Font = Enum.Font.Cartoon
  11105. Pine2.FontSize = Enum.FontSize.Size14
  11106. Pine2.Text = "Pine"
  11107. Pine2.TextSize = 14
  11108.  
  11109. Volcano2.Name = "Volcano"
  11110. Volcano2.Parent = TTab3
  11111. Volcano2.BackgroundColor3 = Color3.new(1, 1, 0)
  11112. Volcano2.Position = UDim2.new(0, 1, 0, 76)
  11113. Volcano2.Size = UDim2.new(0,70, 0, 25)
  11114. Volcano2.Font = Enum.Font.Cartoon
  11115. Volcano2.FontSize = Enum.FontSize.Size14
  11116. Volcano2.Text = "Volcano"
  11117. Volcano2.TextSize = 14
  11118.  
  11119. Walnut2.Name = "Walnut"
  11120. Walnut2.Parent = TTab3
  11121. Walnut2.BackgroundColor3 = Color3.new(1, 1, 0)
  11122. Walnut2.Position = UDim2.new(0, 71, 0, 76)
  11123. Walnut2.Size = UDim2.new(0,70, 0, 25)
  11124. Walnut2.Font = Enum.Font.Cartoon
  11125. Walnut2.FontSize = Enum.FontSize.Size14
  11126. Walnut2.Text = "Walnut"
  11127. Walnut2.TextSize = 14
  11128.  
  11129. -- end --
  11130.  
  11131. -- Tab3 Button Functions --
  11132. Birch2.MouseButton1Down:connect(function()
  11133. for i, v in pairs(game.Workspace.LogModels:GetChildren()) do
  11134. cut(v, "Birch")
  11135. end
  11136. end)
  11137.  
  11138. CaveCrawler2.MouseButton1Down:connect(function()
  11139. for i, v in pairs(game.Workspace.LogModels:GetChildren()) do
  11140. cut(v, "CaveCrawler")
  11141. end
  11142. end)
  11143.  
  11144. Cherry2.MouseButton1Down:connect(function()
  11145. for i, v in pairs(game.Workspace.LogModels:GetChildren()) do
  11146. cut(v, "Cherry")
  11147. end
  11148. end)
  11149.  
  11150. Fir2.MouseButton1Down:connect(function()
  11151. for i, v in pairs(game.Workspace.LogModels:GetChildren()) do
  11152. cut(v, "Fir")
  11153. end
  11154. end)
  11155.  
  11156. Generic2.MouseButton1Down:connect(function()
  11157. for i, v in pairs(game.Workspace.LogModels:GetChildren()) do
  11158. cut(v, "Generic")
  11159. end
  11160. end)
  11161.  
  11162. GoldSwampy2.MouseButton1Down:connect(function()
  11163. for i, v in pairs(game.Workspace.LogModels:GetChildren()) do
  11164. cut(v, "GoldSwampy")
  11165. end
  11166. end)
  11167.  
  11168. GreenSwampy2.MouseButton1Down:connect(function()
  11169. for i, v in pairs(game.Workspace.LogModels:GetChildren()) do
  11170. cut(v, "GreenSwampy")
  11171. end
  11172. end)
  11173.  
  11174. Koa2.MouseButton1Down:connect(function()
  11175. for i, v in pairs(game.Workspace.LogModels:GetChildren()) do
  11176. cut(v, "Koa")
  11177. end
  11178. end)
  11179.  
  11180. LoneCave2.MouseButton1Down:connect(function()
  11181. for i, v in pairs(game.Workspace.LogModels:GetChildren()) do
  11182. cut(v, "LoneCave")
  11183. end
  11184. end)
  11185.  
  11186. Oak2.MouseButton1Down:connect(function()
  11187. for i, v in pairs(game.Workspace.LogModels:GetChildren()) do
  11188. cut(v, "Oak")
  11189. end
  11190. end)
  11191.  
  11192. Palm2.MouseButton1Down:connect(function()
  11193. for i, v in pairs(game.Workspace.LogModels:GetChildren()) do
  11194. cut(v, "Palm")
  11195. end
  11196. end)
  11197.  
  11198. Pine2.MouseButton1Down:connect(function()
  11199. for i, v in pairs(game.Workspace.LogModels:GetChildren()) do
  11200. cut(v, "Pine")
  11201. end
  11202. end)
  11203.  
  11204. Volcano2.MouseButton1Down:connect(function()
  11205. for i, v in pairs(game.Workspace.LogModels:GetChildren()) do
  11206. cut(v, "Volcano")
  11207. end
  11208. end)
  11209.  
  11210. Pine2.MouseButton1Down:connect(function()
  11211. for i, v in pairs(game.Workspace.LogModels:GetChildren()) do
  11212. cut(v, "Walnut")
  11213. end
  11214. end)
  11215.  
  11216.  
  11217. -- end --
  11218.  
  11219.  
  11220. -- button function --
  11221. Tab1.MouseButton1Down:connect(function()
  11222. TTab1.Visible = true
  11223. TTab2.Visible = false
  11224. TTab3.Visible = false
  11225.  
  11226. end)
  11227.  
  11228. Tab2.MouseButton1Down:connect(function()
  11229. TTab1.Visible = false
  11230. TTab2.Visible = true
  11231. TTab3.Visible = false
  11232. end)
  11233.  
  11234. Tab3.MouseButton1Down:connect(function()
  11235. TTab1.Visible = false
  11236. TTab2.Visible = false
  11237. TTab3.Visible = true
  11238. end)
  11239.  
  11240. Close.MouseButton1Down:connect(function()
  11241. CGG:remove()
  11242. end)
  11243.  
  11244. departure = game.Workspace.Ferry.TimeToDeparture
  11245. game.Workspace.Ferry.TimeToDeparture.Changed:connect(function()
  11246. Depart.Text = "Time To Departure: ".. game.Workspace.Ferry.TimeToDeparture.Value
  11247. end)
  11248.  
  11249. Mouse.Button1Up:connect(function()
  11250. Down = false
  11251. end)
  11252.  
  11253. Mouse.Button1Down:connect(function()
  11254. Down = true
  11255. if Tool == "Copy" then
  11256. if Mouse.Target ~= nil then
  11257. Clone = Mouse.Target:clone()
  11258. Clone.Parent = game.Workspace
  11259. end
  11260. end
  11261.  
  11262. if Tool == "Delete" then
  11263. if Mouse.Target ~= nil then
  11264. Mouse.Target:remove()
  11265. end
  11266. end
  11267.  
  11268. if Tool == "Move" then
  11269. if Mouse.Target ~= nil then
  11270. MoveObject = Mouse.Target
  11271. end
  11272. end
  11273.  
  11274. wait()
  11275. if Clone ~= nil then
  11276. Clone.CanCollide = false
  11277. repeat
  11278. wait()
  11279. SubX = Clone.Size.X/2
  11280. SubY = Clone.Size.Y/2
  11281. SubZ = Clone.Size.Z/2
  11282. Clone.Position = Vector3.new(Mouse.Hit.X - SubX, Mouse.Hit.Y - SubY, Mouse.Hit.Z - SubZ)
  11283. until Down == false
  11284. Clone.CanCollide = true
  11285. Clone.Position = Clone.Position + Vector3.new(SubX, SubY, SubZ)
  11286. Clone = nil
  11287. end
  11288.  
  11289. if MoveObject ~= nil then
  11290. MoveObject.CanCollide = false
  11291. repeat
  11292. wait()
  11293. SubX = MoveObject.Size.X/2
  11294. SubY = MoveObject.Size.Y/2
  11295. SubZ = MoveObject.Size.Z/2
  11296. MoveObject.Position = Vector3.new(Mouse.Hit.X - SubX, Mouse.Hit.Y - SubY, Mouse.Hit.Z - SubZ)
  11297. until Down == false
  11298. MoveObject.CanCollide = true
  11299. MoveObject.Position = MoveObject.Position + Vector3.new(SubX, SubY, SubZ)
  11300. MoveObject= nil
  11301. end
  11302. end)
  11303. end)
  11304. OpenButton.Name = "OpenButton"
  11305. OpenButton.Parent = ScreenGui
  11306. OpenButton.BackgroundColor3 = Color3.new(0, 0, 0)
  11307. OpenButton.BorderColor3 = Color3.new(0, 1, 0)
  11308. OpenButton.BorderSizePixel = 2
  11309. OpenButton.Position = UDim2.new(0, 0, 0.436289668, 0)
  11310. OpenButton.Size = UDim2.new(0, 82, 0, 19)
  11311. OpenButton.Visible = false
  11312. OpenButton.Font = Enum.Font.SciFi
  11313. OpenButton.Text = "OPEN"
  11314. OpenButton.TextColor3 = Color3.new(0, 1, 0)
  11315. OpenButton.TextScaled = true
  11316. OpenButton.TextSize = 14
  11317. OpenButton.TextWrapped = true
  11318. OpenButton .MouseButton1Click:connect(function()
  11319. MainFrame.Visible = true
  11320. OpenButton.Visible = false
  11321. end)
  11322. -- Scripts:
  11323. end)
  11324.  
  11325. Gui_5.Name = "Gui"
  11326. Gui_5.Parent = Frame
  11327. Gui_5.BackgroundColor3 = Color3.new(0, 0, 0)
  11328. Gui_5.Position = UDim2.new(0.599033833, 0, 0.455696195, 0)
  11329. Gui_5.Size = UDim2.new(0, 81, 0, 42)
  11330. Gui_5.Font = Enum.Font.SourceSans
  11331. Gui_5.Text = "Gui"
  11332. Gui_5.TextColor3 = Color3.new(0, 0, 1)
  11333. Gui_5.TextScaled = true
  11334. Gui_5.TextSize = 14
  11335. Gui_5.TextWrapped = true
  11336. Gui_5.MouseButton1Click:Connect(function()
  11337. -- MADE BY REDBOY
  11338. spawn(function()
  11339.  
  11340. -- Instances:
  11341. local LT2GUI = Instance.new("ScreenGui")
  11342. local Main = Instance.new("Frame")
  11343. local TOPBAR = Instance.new("Frame")
  11344. local Name = Instance.new("TextLabel")
  11345. local EXIT = Instance.new("TextButton")
  11346. local Cave = Instance.new("TextButton")
  11347. local PalmIsland = Instance.new("TextButton")
  11348. local Swamp = Instance.new("TextButton")
  11349. local Volcano = Instance.new("TextButton")
  11350. local LinkLogic = Instance.new("TextButton")
  11351. local LandStore = Instance.new("TextButton")
  11352. local BobShack = Instance.new("TextButton")
  11353. local WoodRUs = Instance.new("TextButton")
  11354. local Dock = Instance.new("TextButton")
  11355. local BoxedCars = Instance.new("TextButton")
  11356. local TPPLOT = Instance.new("TextButton")
  11357. local BringWood = Instance.new("TextButton")
  11358. local BSellChoppedWood = Instance.new("TextButton")
  11359. local BTPCutLogs = Instance.new("TextButton")
  11360. local BPhantomWood = Instance.new("TextButton")
  11361. local TPNAME = Instance.new("TextLabel")
  11362. local FUNCNAME = Instance.new("TextLabel")
  11363. local BRejoinServer = Instance.new("TextButton")
  11364. local DISCO = Instance.new("TextLabel")
  11365. local Open = Instance.new("TextButton")
  11366. --Properties:
  11367. LT2GUI.Name = "LT2GUI "
  11368. LT2GUI.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  11369.  
  11370. Main.Name = "Main"
  11371. Main.Parent = LT2GUI
  11372. Main.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  11373. Main.Position = UDim2.new(0.5, 0, 0.300000012, 0)
  11374. Main.Size = UDim2.new(0, 400, 0, 300)
  11375. Main.Active = true
  11376. Main.Draggable = true
  11377.  
  11378. TOPBAR.Name = "TOPBAR"
  11379. TOPBAR.Parent = Main
  11380. TOPBAR.BackgroundColor3 = Color3.new(0.815686, 0, 0)
  11381. TOPBAR.Position = UDim2.new(0, 0, -0.129999995, 0)
  11382. TOPBAR.Size = UDim2.new(0, 400, 0, 39)
  11383.  
  11384. Name.Name = "Name"
  11385. Name.Parent = TOPBAR
  11386. Name.BackgroundColor3 = Color3.new(1, 1, 1)
  11387. Name.BackgroundTransparency = 1
  11388. Name.Size = UDim2.new(0, 357, 0, 39)
  11389. Name.Font = Enum.Font.ArialBold
  11390. Name.Text = "Lumber Tycoon 2"
  11391. Name.TextColor3 = Color3.new(1, 1, 1)
  11392. Name.TextScaled = true
  11393. Name.TextSize = 14
  11394. Name.TextWrapped = true
  11395.  
  11396. EXIT.Name = "EXIT"
  11397. EXIT.Parent = TOPBAR
  11398. EXIT.BackgroundColor3 = Color3.new(1, 1, 1)
  11399. EXIT.BackgroundTransparency = 1
  11400. EXIT.Position = UDim2.new(0.892499983, 0, 0, 0)
  11401. EXIT.Size = UDim2.new(0, 43, 0, 39)
  11402. EXIT.Font = Enum.Font.SourceSans
  11403. EXIT.Text = "X"
  11404. EXIT.TextColor3 = Color3.new(0, 0, 0)
  11405. EXIT.TextScaled = true
  11406. EXIT.TextSize = 14
  11407. EXIT.TextWrapped = true
  11408. EXIT.MouseButton1Down:connect(function()
  11409. Open.Visible = true
  11410. Main.Visible = false
  11411. end)
  11412. Cave.Name = "Cave"
  11413. Cave.Parent = Main
  11414. Cave.BackgroundColor3 = Color3.new(0.776471, 0, 0)
  11415. Cave.Position = UDim2.new(0.0199999996, 0, 0.306666672, 0)
  11416. Cave.Size = UDim2.new(0, 100, 0, 30)
  11417. Cave.Font = Enum.Font.Cartoon
  11418. Cave.Text = "Cave"
  11419. Cave.TextColor3 = Color3.new(0, 0, 0)
  11420. Cave.TextScaled = true
  11421. Cave.TextSize = 14
  11422. Cave.TextWrapped = true
  11423. Cave.MouseButton1Down:connect(function()
  11424. game:GetService('Players').LocalPlayer.Character:MoveTo(Vector3.new(3581, -179, 430))
  11425. end)
  11426. PalmIsland.Name = "PalmIsland"
  11427. PalmIsland.Parent = Main
  11428. PalmIsland.BackgroundColor3 = Color3.new(0.776471, 0, 0)
  11429. PalmIsland.Position = UDim2.new(0.0199999996, 0, 0.163333341, 0)
  11430. PalmIsland.Size = UDim2.new(0, 100, 0, 30)
  11431. PalmIsland.Font = Enum.Font.Cartoon
  11432. PalmIsland.Text = "Palm Island"
  11433. PalmIsland.TextColor3 = Color3.new(0, 0, 0)
  11434. PalmIsland.TextScaled = true
  11435. PalmIsland.TextSize = 14
  11436. PalmIsland.TextWrapped = true
  11437. PalmIsland.MouseButton1Down:connect(function()
  11438. game:GetService('Players').LocalPlayer.Character:MoveTo(Vector3.new(2549, -5, -42))
  11439. end)
  11440.  
  11441. Swamp.Name = "Swamp"
  11442. Swamp.Parent = Main
  11443. Swamp.BackgroundColor3 = Color3.new(0.776471, 0, 0)
  11444. Swamp.Position = UDim2.new(0.0199999996, 0, 0.589999974, 0)
  11445. Swamp.Size = UDim2.new(0, 100, 0, 30)
  11446. Swamp.Font = Enum.Font.Cartoon
  11447. Swamp.Text = "Swamp"
  11448. Swamp.TextColor3 = Color3.new(0, 0, 0)
  11449. Swamp.TextScaled = true
  11450. Swamp.TextSize = 14
  11451. Swamp.TextWrapped = true
  11452. Swamp.MouseButton1Down:connect(function()
  11453. game:GetService('Players').LocalPlayer.Character:MoveTo(Vector3.new(-1209, 132, -801))
  11454. end)
  11455. Volcano.Name = "Volcano"
  11456. Volcano.Parent = Main
  11457. Volcano.BackgroundColor3 = Color3.new(0.776471, 0, 0)
  11458. Volcano.Position = UDim2.new(0.0199999996, 0, 0.446666658, 0)
  11459. Volcano.Size = UDim2.new(0, 100, 0, 30)
  11460. Volcano.Font = Enum.Font.Cartoon
  11461. Volcano.Text = "Volcano"
  11462. Volcano.TextColor3 = Color3.new(0, 0, 0)
  11463. Volcano.TextScaled = true
  11464. Volcano.TextSize = 14
  11465. Volcano.TextWrapped = true
  11466. Volcano.MouseButton1Down:connect(function()
  11467. game:GetService('Players').LocalPlayer.Character:MoveTo(Vector3.new(-1585, 622, 1140))
  11468. end)
  11469. LinkLogic.Name = "LinkLogic"
  11470. LinkLogic.Parent = Main
  11471. LinkLogic.BackgroundColor3 = Color3.new(0.776471, 0, 0)
  11472. LinkLogic.Position = UDim2.new(0.320000023, 0, 0.306666672, 0)
  11473. LinkLogic.Size = UDim2.new(0, 100, 0, 30)
  11474. LinkLogic.Font = Enum.Font.Cartoon
  11475. LinkLogic.Text = "Link's Logic"
  11476. LinkLogic.TextColor3 = Color3.new(0, 0, 0)
  11477. LinkLogic.TextScaled = true
  11478. LinkLogic.TextSize = 14
  11479. LinkLogic.TextWrapped = true
  11480. LinkLogic.MouseButton1Down:connect(function()
  11481. game:GetService('Players').LocalPlayer.Character:MoveTo(Vector3.new(4605, 3, -727))
  11482. end)
  11483. LandStore.Name = "LandStore"
  11484. LandStore.Parent = Main
  11485. LandStore.BackgroundColor3 = Color3.new(0.776471, 0, 0)
  11486. LandStore.Position = UDim2.new(0.320000023, 0, 0.589999974, 0)
  11487. LandStore.Size = UDim2.new(0, 100, 0, 30)
  11488. LandStore.Font = Enum.Font.Cartoon
  11489. LandStore.Text = "Land Store"
  11490. LandStore.TextColor3 = Color3.new(0, 0, 0)
  11491. LandStore.TextScaled = true
  11492. LandStore.TextSize = 14
  11493. LandStore.TextWrapped = true
  11494. LandStore.MouseButton1Down:connect(function()
  11495. game:GetService('Players').LocalPlayer.Character:MoveTo(Vector3.new(258, 3, -99))
  11496. end)
  11497. BobShack.Name = "BobShack"
  11498. BobShack.Parent = Main
  11499. BobShack.BackgroundColor3 = Color3.new(0.776471, 0, 0)
  11500. BobShack.Position = UDim2.new(0.320000023, 0, 0.163333341, 0)
  11501. BobShack.Size = UDim2.new(0, 100, 0, 30)
  11502. BobShack.Font = Enum.Font.Cartoon
  11503. BobShack.Text = "Bob's Shack"
  11504. BobShack.TextColor3 = Color3.new(0, 0, 0)
  11505. BobShack.TextScaled = true
  11506. BobShack.TextSize = 14
  11507. BobShack.TextWrapped = true
  11508. BobShack.MouseButton1Down:connect(function()
  11509. game:GetService('Players').LocalPlayer.Character:MoveTo(Vector3.new(260, 8, -2542))
  11510. end)
  11511. WoodRUs.Name = "WoodRUs"
  11512. WoodRUs.Parent = Main
  11513. WoodRUs.BackgroundColor3 = Color3.new(0.776471, 0, 0)
  11514. WoodRUs.Position = UDim2.new(0.320000023, 0, 0.446666658, 0)
  11515. WoodRUs.Size = UDim2.new(0, 100, 0, 30)
  11516. WoodRUs.Font = Enum.Font.Cartoon
  11517. WoodRUs.Text = "Wood R Us"
  11518. WoodRUs.TextColor3 = Color3.new(0, 0, 0)
  11519. WoodRUs.TextScaled = true
  11520. WoodRUs.TextSize = 14
  11521. WoodRUs.TextWrapped = true
  11522. WoodRUs.MouseButton1Down:connect(function()
  11523. game:GetService('Players').LocalPlayer.Character:MoveTo(Vector3.new(265, 3, 57))
  11524. end)
  11525. Dock.Name = "Dock"
  11526. Dock.Parent = Main
  11527. Dock.BackgroundColor3 = Color3.new(0.776471, 0, 0)
  11528. Dock.Position = UDim2.new(0.0199999996, 0, 0.73333329, 0)
  11529. Dock.Size = UDim2.new(0, 100, 0, 30)
  11530. Dock.Font = Enum.Font.Cartoon
  11531. Dock.Text = "Dock"
  11532. Dock.TextColor3 = Color3.new(0, 0, 0)
  11533. Dock.TextScaled = true
  11534. Dock.TextSize = 14
  11535. Dock.TextWrapped = true
  11536. Dock.MouseButton1Down:connect(function()
  11537. game:GetService('Players').LocalPlayer.Character:MoveTo(Vector3.new(1114, -1, -197))
  11538. end)
  11539. BoxedCars.Name = "BoxedCars"
  11540. BoxedCars.Parent = Main
  11541. BoxedCars.BackgroundColor3 = Color3.new(0.776471, 0, 0)
  11542. BoxedCars.Position = UDim2.new(0.320000023, 0, 0.73333329, 0)
  11543. BoxedCars.Size = UDim2.new(0, 100, 0, 30)
  11544. BoxedCars.Font = Enum.Font.Cartoon
  11545. BoxedCars.Text = "Boxed Cars"
  11546. BoxedCars.TextColor3 = Color3.new(0, 0, 0)
  11547. BoxedCars.TextScaled = true
  11548. BoxedCars.TextSize = 14
  11549. BoxedCars.TextWrapped = true
  11550. BoxedCars.MouseButton1Down:connect(function()
  11551. game:GetService('Players').LocalPlayer.Character:MoveTo(Vector3.new(509, 3, -1463))
  11552. end)
  11553. TPPLOT.Name = "TPPLOT"
  11554. TPPLOT.Parent = Main
  11555. TPPLOT.BackgroundColor3 = Color3.new(0.776471, 0, 0)
  11556. TPPLOT.Position = UDim2.new(0.0199999996, 0, 0.870000005, 0)
  11557. TPPLOT.Size = UDim2.new(0, 220, 0, 30)
  11558. TPPLOT.Font = Enum.Font.Cartoon
  11559. TPPLOT.Text = "Teleport To Your Plot"
  11560. TPPLOT.TextColor3 = Color3.new(0, 0, 0)
  11561. TPPLOT.TextScaled = true
  11562. TPPLOT.TextSize = 14
  11563. TPPLOT.TextWrapped = true
  11564. TPPLOT.MouseButton1Down:connect(function()
  11565. for i, v in pairs(game.Workspace.Properties:GetChildren()) do
  11566. if v.Owner.Value == game.Players.LocalPlayer then
  11567. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.OriginSquare.CFrame
  11568. end
  11569. end
  11570. end)
  11571. BringWood.Name = "BringWood"
  11572. BringWood.Parent = Main
  11573. BringWood.BackgroundColor3 = Color3.new(0.776471, 0, 0)
  11574. BringWood.Position = UDim2.new(0.612500012, 0, 0.589999974, 0)
  11575. BringWood.Size = UDim2.new(0, 140, 0, 30)
  11576. BringWood.Font = Enum.Font.Cartoon
  11577. BringWood.Text = "Bring Wood"
  11578. BringWood.TextColor3 = Color3.new(0, 0, 0)
  11579. BringWood.TextScaled = true
  11580. BringWood.TextSize = 14
  11581. BringWood.TextWrapped = true
  11582. BringWood.MouseButton1Down:connect(function()
  11583. for _, Log in pairs(game.Workspace.LogModels:GetChildren()) do
  11584. if Log.Name:sub(1, 6) == "Loose_" and Log:findFirstChild("Owner") and Log.Owner.Value == game.Players.LocalPlayer then
  11585. Log:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(0, 10, 0))
  11586. end
  11587. end
  11588. end)
  11589. BSellChoppedWood.Name = "BSellChoppedWood"
  11590. BSellChoppedWood.Parent = Main
  11591. BSellChoppedWood.BackgroundColor3 = Color3.new(0.776471, 0, 0)
  11592. BSellChoppedWood.Position = UDim2.new(0.612500012, 0, 0.163333341, 0)
  11593. BSellChoppedWood.Size = UDim2.new(0, 140, 0, 30)
  11594. BSellChoppedWood.Font = Enum.Font.Cartoon
  11595. BSellChoppedWood.Text = "Sell Chopped Wood"
  11596. BSellChoppedWood.TextColor3 = Color3.new(0, 0, 0)
  11597. BSellChoppedWood.TextScaled = true
  11598. BSellChoppedWood.TextSize = 14
  11599. BSellChoppedWood.TextWrapped = true
  11600. BSellChoppedWood.MouseButton1Click:connect(function()
  11601. for _, Log in pairs(workspace.LogModels:GetChildren()) do
  11602. if Log.Name:sub(1, 6) == "Loose_" and Log:findFirstChild("Owner") then
  11603. if Log.Owner.Value == game.Players.LocalPlayer then
  11604. for i,v in pairs(Log:GetChildren()) do
  11605. if v.Name=="WoodSection" then
  11606. spawn(function()
  11607. for i=1,10 do
  11608. wait()
  11609. v.CFrame=CFrame.new(Vector3.new(315, -0.296, 85.791))*CFrame.Angles(math.rad(90),0,0)
  11610. end
  11611. end)
  11612. end
  11613. end
  11614. spawn(function()
  11615. for i=1,20 do
  11616. wait()
  11617. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Log)
  11618. end
  11619. end)
  11620. end
  11621. end
  11622. end
  11623. end)
  11624. BTPCutLogs.Name = "BTPCutLogs"
  11625. BTPCutLogs.Parent = Main
  11626. BTPCutLogs.BackgroundColor3 = Color3.new(0.776471, 0, 0)
  11627. BTPCutLogs.Position = UDim2.new(0.612500012, 0, 0.306666672, 0)
  11628. BTPCutLogs.Size = UDim2.new(0, 140, 0, 30)
  11629. BTPCutLogs.Font = Enum.Font.Cartoon
  11630. BTPCutLogs.Text = "Teleport Cut Logs To You"
  11631. BTPCutLogs.TextColor3 = Color3.new(0, 0, 0)
  11632. BTPCutLogs.TextScaled = true
  11633. BTPCutLogs.TextSize = 14
  11634. BTPCutLogs.TextWrapped = true
  11635. BTPCutLogs.MouseButton1Click:connect(function()
  11636. for _, Log in pairs(game.Workspace.LogModels:GetChildren()) do
  11637. if Log.Name:sub(1, 6) == "Loose_" and Log:findFirstChild("Owner") then
  11638. if Log.Owner.Value == game.Players.LocalPlayer then
  11639. Log:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(0, 15, 0))
  11640. end
  11641. end
  11642. end
  11643. end)
  11644. BPhantomWood.Name = "BPhantomWood"
  11645. BPhantomWood.Parent = Main
  11646. BPhantomWood.BackgroundColor3 = Color3.new(0.776471, 0, 0)
  11647. BPhantomWood.Position = UDim2.new(0.612500012, 0, 0.446666658, 0)
  11648. BPhantomWood.Size = UDim2.new(0, 140, 0, 30)
  11649. BPhantomWood.Font = Enum.Font.Cartoon
  11650. BPhantomWood.Text = "Teleport Cavecrawler Wood"
  11651. BPhantomWood.TextColor3 = Color3.new(0, 0, 0)
  11652. BPhantomWood.TextScaled = true
  11653. BPhantomWood.TextSize = 14
  11654. BPhantomWood.TextWrapped = true
  11655. BPhantomWood.MouseButton1Down:connect(function()
  11656. for i, v in pairs(game.Workspace:GetChildren()) do
  11657. if v.Name == "TreeRegion" then
  11658. for a, b in pairs(v:GetChildren()) do
  11659. tree(b, "CaveCrawler")
  11660. end
  11661. end
  11662. end
  11663. end)
  11664. TPNAME.Name = "TPNAME"
  11665. TPNAME.Parent = Main
  11666. TPNAME.BackgroundColor3 = Color3.new(1, 1, 1)
  11667. TPNAME.BackgroundTransparency = 1
  11668. TPNAME.Position = UDim2.new(0.0199999996, 0, 0, 0)
  11669. TPNAME.Size = UDim2.new(0, 220, 0, 42)
  11670. TPNAME.Font = Enum.Font.SourceSans
  11671. TPNAME.Text = "Teleports"
  11672. TPNAME.TextColor3 = Color3.new(1, 1, 1)
  11673. TPNAME.TextScaled = true
  11674. TPNAME.TextSize = 14
  11675. TPNAME.TextWrapped = true
  11676.  
  11677. FUNCNAME.Name = "FUNCNAME"
  11678. FUNCNAME.Parent = Main
  11679. FUNCNAME.BackgroundColor3 = Color3.new(1, 1, 1)
  11680. FUNCNAME.BackgroundTransparency = 1
  11681. FUNCNAME.Position = UDim2.new(0.612500012, 0, 0, 0)
  11682. FUNCNAME.Size = UDim2.new(0, 140, 0, 42)
  11683. FUNCNAME.Font = Enum.Font.SourceSans
  11684. FUNCNAME.Text = "Functions"
  11685. FUNCNAME.TextColor3 = Color3.new(1, 1, 1)
  11686. FUNCNAME.TextScaled = true
  11687. FUNCNAME.TextSize = 14
  11688. FUNCNAME.TextWrapped = true
  11689.  
  11690. BRejoinServer.Name = "BRejoinServer"
  11691. BRejoinServer.Parent = Main
  11692. BRejoinServer.BackgroundColor3 = Color3.new(0.776471, 0, 0)
  11693. BRejoinServer.Position = UDim2.new(0.612500012, 0, 0.73333329, 0)
  11694. BRejoinServer.Size = UDim2.new(0, 140, 0, 30)
  11695. BRejoinServer.Font = Enum.Font.Cartoon
  11696. BRejoinServer.Text = "Rejoin Server"
  11697. BRejoinServer.TextColor3 = Color3.new(0, 0, 0)
  11698. BRejoinServer.TextScaled = true
  11699. BRejoinServer.TextSize = 14
  11700. BRejoinServer.TextWrapped = true
  11701. BRejoinServer.MouseButton1Down:connect(function()
  11702. local placeId = 13822889
  11703.  
  11704. game:GetService("TeleportService"):Teleport(placeId)
  11705. end)
  11706. DISCO.Name = "DISCO"
  11707. DISCO.Parent = Main
  11708. DISCO.BackgroundColor3 = Color3.new(1, 1, 1)
  11709. DISCO.BackgroundTransparency = 1
  11710. DISCO.Position = UDim2.new(0.612500012, 0, 0.850000024, 0)
  11711. DISCO.Size = UDim2.new(0, 140, 0, 42)
  11712. DISCO.Font = Enum.Font.SourceSans
  11713. DISCO.Text = "Made By RedBoy Discord: FdCpM7b"
  11714. DISCO.TextColor3 = Color3.new(1, 1, 1)
  11715. DISCO.TextScaled = true
  11716. DISCO.TextSize = 14
  11717. DISCO.TextWrapped = true
  11718.  
  11719. Open.Name = "Open"
  11720. Open.Parent = LT2GUI
  11721. Open.BackgroundColor3 = Color3.new(0.819608, 0, 0)
  11722. Open.Position = UDim2.new(0, 0, 0.699999988, 0)
  11723. Open.Size = UDim2.new(0, 100, 0, 50)
  11724. Open.Font = Enum.Font.SourceSans
  11725. Open.Text = "Open"
  11726. Open.TextColor3 = Color3.new(0.988235, 0.988235, 0.988235)
  11727. Open.TextScaled = true
  11728. Open.TextSize = 14
  11729. Open.TextWrapped = true
  11730. Open.Visible = false
  11731. Open.MouseButton1Down:connect(function()
  11732. Open.Visible = false
  11733. Main.Visible = true
  11734. end)
  11735. end)
  11736.  
  11737. ---Scripts
  11738.  
  11739.  
  11740.  
  11741.  
  11742.  
  11743. end)
  11744.  
  11745. Gui_6.Name = "Gui"
  11746. Gui_6.Parent = Frame
  11747. Gui_6.BackgroundColor3 = Color3.new(0, 0, 0)
  11748. Gui_6.Position = UDim2.new(0.599033833, 0, 0.299578041, 0)
  11749. Gui_6.Size = UDim2.new(0, 81, 0, 37)
  11750. Gui_6.Font = Enum.Font.SourceSans
  11751. Gui_6.Text = "Gui"
  11752. Gui_6.TextColor3 = Color3.new(0, 0, 1)
  11753. Gui_6.TextScaled = true
  11754. Gui_6.TextSize = 14
  11755. Gui_6.TextWrapped = true
  11756. Gui_6.MouseButton1Click:Connect(function()
  11757. --[[ 3.5 VERSION
  11758. ADDED FVCK FERRY LT 2
  11759. YOU CAN TP ALL ITEMS,WOOD,etc IN YOUR BASE AS EASY FOR DUPING
  11760. YOU CAN COPY BASE BLUEPRINT!
  11761. [SOME BROKE] WIPE BASE SOMEBODY FOR EVIL PEOPLE :) ]]--
  11762.  
  11763.  
  11764. Found=false;Tool="None"Down=false
  11765. Mouse=game.Players.LocalPlayer:GetMouse()
  11766. Client=game.ReplicatedStorage.Interaction.ClientSetListPlayer;players=game.Players
  11767. for __ba,a_ba in pairs(players:GetPlayers())do if a_ba.Name~=
  11768. players.LocalPlayer.Name then
  11769. Client:InvokeServer(players.LocalPlayer.BlacklistFolder,a_ba,false)end end
  11770. players.PlayerAdded:connect(function(__ba)
  11771. Client:InvokeServer(players.LocalPlayer.BlacklistFolder,__ba,false)end)
  11772. function move(__ba)
  11773. __ba:MoveTo(
  11774. game.Players.LocalPlayer.Character.Head.Position+Vector3.new(5,-4,5))__ba.WoodSection.Anchored=true;wait(2)
  11775. __ba.WoodSection.Anchored=false end
  11776. function tree(__ba,a_ba)
  11777. for b_ba,c_ba in pairs(__ba:GetChildren())do if c_ba.Name=="TreeClass"then
  11778. if
  11779. c_ba.Value==a_ba then if Found==false then move(__ba)Found=true end end end end end
  11780. function cut(__ba,a_ba)
  11781. for b_ba,c_ba in pairs(__ba:GetChildren())do
  11782. if c_ba.Name=="TreeClass"then
  11783. if
  11784. c_ba.Value==a_ba then
  11785. for d_ba,_aba in pairs(__ba:GetChildren())do
  11786. if _aba.Name=="Owner"then
  11787. for aaba,baba in
  11788. pairs(_aba:GetChildren())do if baba.Name=="OwnerString"then
  11789. if
  11790. baba.Value==game.Players.LocalPlayer.Name then move(__ba)else if baba.Value==""then move(__ba)end end end end end end end end end end;local cbc=Instance.new("ScreenGui")
  11791. local dbc=Instance.new("Frame")dbc.Active=true;dbc.Draggable=true
  11792. print("GUI BY : RBXLStealit")local _cc=Instance.new("Frame")
  11793. local acc=Instance.new("Frame")local bcc=Instance.new("TextButton")
  11794. local ccc=Instance.new("TextButton")local dcc=Instance.new("TextButton")
  11795. local _dc=Instance.new("TextButton")local adc=Instance.new("TextLabel")
  11796. local bdc=Instance.new("TextLabel")local cdc=Instance.new("Frame")
  11797. local ddc=Instance.new("Frame")ddc.Draggable=true;local __d=Instance.new("Frame")
  11798. local a_d=Instance.new("Frame")local b_d=Instance.new("TextLabel")
  11799. local c_d=Instance.new("TextLabel")local d_d=Instance.new("TextLabel")
  11800. local _ad=Instance.new("TextLabel")local aad=Instance.new("TextLabel")
  11801. local bad=Instance.new("TextLabel")local cad=Instance.new("TextLabel")
  11802. local dad=Instance.new("TextButton")local _bd=Instance.new("Frame")
  11803. local abd=Instance.new("Frame")abd.Draggable=true;local bbd=Instance.new("Frame")
  11804. local cbd=Instance.new("Frame")local dbd=Instance.new("TextLabel")
  11805. local _cd=Instance.new("TextButton")local acd=Instance.new("TextButton")
  11806. local bcd=Instance.new("TextButton")local ccd=Instance.new("TextButton")
  11807. local dcd=Instance.new("TextButton")local _dd=Instance.new("TextButton")
  11808. local add=Instance.new("TextButton")local bdd=Instance.new("TextButton")
  11809. local cdd=Instance.new("TextButton")local ddd=Instance.new("Frame")
  11810. local ___a=Instance.new("TextButton")local a__a=Instance.new("TextButton")
  11811. local b__a=Instance.new("TextLabel")local c__a=Instance.new("TextButton")
  11812. local d__a=Instance.new("Frame")d__a.Draggable=true;local _a_a=Instance.new("Frame")
  11813. local aa_a=Instance.new("Frame")local ba_a=Instance.new("TextLabel")
  11814. local ca_a=Instance.new("TextButton")local da_a=Instance.new("TextButton")
  11815. local _b_a=Instance.new("TextButton")local ab_a=Instance.new("TextButton")
  11816. local bb_a=Instance.new("TextButton")local cb_a=Instance.new("TextButton")
  11817. local db_a=Instance.new("Frame")local _c_a=Instance.new("Frame")
  11818. local ac_a=Instance.new("Frame")local bc_a=Instance.new("TextLabel")
  11819. local cc_a=Instance.new("TextButton")local dc_a=Instance.new("TextButton")
  11820. local _d_a=Instance.new("TextButton")local ad_a=Instance.new("TextButton")
  11821. local bd_a=Instance.new("TextButton")local cd_a=Instance.new("TextButton")
  11822. local dd_a=Instance.new("TextButton")local __aa=Instance.new("Frame")__aa.Draggable=true
  11823. local a_aa=Instance.new("Frame")local b_aa=Instance.new("Frame")
  11824. local c_aa=Instance.new("TextButton")local d_aa=Instance.new("TextLabel")
  11825. local _aaa=Instance.new("TextButton")local aaaa=Instance.new("TextLabel")
  11826. local baaa=Instance.new("TextButton")local caaa=Instance.new("TextButton")
  11827. local daaa=Instance.new("TextButton")local _baa=Instance.new("TextButton")
  11828. local abaa=Instance.new("Frame")abaa.Draggable=true;local bbaa=Instance.new("Frame")
  11829. local cbaa=Instance.new("Frame")local dbaa=Instance.new("TextButton")
  11830. local _caa=Instance.new("TextButton")local acaa=Instance.new("TextButton")
  11831. local bcaa=Instance.new("TextBox")local ccaa=Instance.new("TextButton")
  11832. local dcaa=Instance.new("TextButton")local _daa=Instance.new("TextButton")
  11833. local adaa=Instance.new("TextButton")local bdaa=Instance.new("TextLabel")
  11834. local cdaa=Instance.new("TextLabel")local ddaa=Instance.new("TextButton")cbc.Name="FERRY"
  11835. cbc.Parent=game.Players.LocalPlayer:WaitForChild("PlayerGui")dbc.Name="PRIV"dbc.Parent=cbc;dbc.Active=true
  11836. dbc.BackgroundColor3=Color3.new(0.368627,0.368627,0.368627)dbc.BorderSizePixel=0;dbc.Position=UDim2.new(0,199,0,61)
  11837. dbc.Selectable=true;dbc.Size=UDim2.new(0,385,0,382)_cc.Name="drag"_cc.Parent=dbc
  11838. _cc.BackgroundColor3=Color3.new(0.898039,0.6,0)_cc.BorderSizePixel=0;_cc.Size=UDim2.new(0,385,0,21)
  11839. acc.Name="drag2"acc.Parent=dbc;acc.BackgroundColor3=Color3.new(1,0.666667,0)
  11840. acc.BorderSizePixel=0;acc.Position=UDim2.new(0,0,0.0559006222,0)
  11841. acc.Size=UDim2.new(0,385,0,48)bcc.Name="exit"bcc.Parent=dbc
  11842. bcc.BackgroundColor3=Color3.new(1,1,1)bcc.BackgroundTransparency=1
  11843. bcc.Position=UDim2.new(0.927272737,0,0,0)bcc.Size=UDim2.new(0,28,0,21)bcc.Font=Enum.Font.Cartoon
  11844. bcc.Text="X"bcc.TextColor3=Color3.new(0.980392,0.980392,0.980392)
  11845. bcc.TextScaled=true;bcc.TextSize=14;bcc.TextStrokeColor3=Color3.new(1,1,1)
  11846. bcc.TextStrokeTransparency=2;bcc.TextWrapped=true
  11847. bcc.MouseButton1Down:connect(function()dbc:Destroy()end)ccc.Name="inflength"ccc.Parent=dbc
  11848. ccc.BackgroundColor3=Color3.new(1,1,1)ccc.BorderSizePixel=0
  11849. ccc.Position=UDim2.new(0.241558433,0,0.251552761,0)ccc.Size=UDim2.new(0,200,0,50)
  11850. ccc.Style=Enum.ButtonStyle.RobloxRoundButton;ccc.Font=Enum.Font.Fantasy;ccc.Text="\"INF WIRE\""
  11851. ccc.TextColor3=Color3.new(0,0,0)ccc.TextSize=20;ccc.TextWrapped=true
  11852. ccc.MouseButton1Down:connect(function()
  11853. for __ba,a_ba in next,
  11854. game.ReplicatedStorage.Purchasables.WireObjects:GetChildren()do
  11855. if a_ba:FindFirstChild("Type")then if a_ba.Type.Value=="Wire"then
  11856. a_ba.Type.Parent.OtherInfo.MaxLength.Value=math.huge end end end end)dcc.Name="tpsystem"dcc.Parent=dbc
  11857. dcc.BackgroundColor3=Color3.new(1,1,1)dcc.BorderSizePixel=0
  11858. dcc.Position=UDim2.new(0.496103883,0,0.913710117,0)dcc.Size=UDim2.new(0,194,0,32)
  11859. dcc.Style=Enum.ButtonStyle.RobloxRoundButton;dcc.Font=Enum.Font.Fantasy;dcc.Text="TP SYSTEM"
  11860. dcc.TextColor3=Color3.new(0,0,0)dcc.TextSize=20;dcc.TextWrapped=true
  11861. dcc.MouseButton1Down:connect(function()
  11862. abd.Visible=true end)_dc.Name="cred"_dc.Parent=dbc
  11863. _dc.BackgroundColor3=Color3.new(1,1,1)_dc.BorderSizePixel=0
  11864. _dc.Position=UDim2.new(0,0,0.913710117,0)_dc.Size=UDim2.new(0,131,0,32)
  11865. _dc.Style=Enum.ButtonStyle.RobloxRoundButton;_dc.Font=Enum.Font.Fantasy;_dc.Text="CREDITS"
  11866. _dc.TextColor3=Color3.new(0,0,0)_dc.TextSize=20;_dc.TextWrapped=true
  11867. _dc.MouseButton1Down:connect(function()
  11868. ddc.Visible=true end)adc.Name="title"adc.Parent=dbc;adc.Active=true
  11869. adc.BackgroundColor3=Color3.new(1,1,1)adc.BackgroundTransparency=1;adc.BorderSizePixel=0
  11870. adc.Position=UDim2.new(0.0337662324,0,0.0900621116,0)adc.Selectable=true;adc.Size=UDim2.new(0,366,0,29)
  11871. adc.Font=Enum.Font.Cartoon;adc.Text="LT 2 \"FERRY\""adc.TextColor3=Color3.new(1,1,1)
  11872. adc.TextScaled=true;adc.TextSize=15
  11873. adc.TextStrokeColor3=Color3.new(0.141176,0.188235,0.282353)adc.TextStrokeTransparency=0;adc.TextTransparency=1;adc.TextWrapped=true
  11874. bdc.Name="v3rsion"bdc.Parent=dbc;bdc.Active=true
  11875. bdc.BackgroundColor3=Color3.new(1,1,1)bdc.BackgroundTransparency=1
  11876. bdc.Position=UDim2.new(0.771428585,0,0.83540374,0)bdc.Size=UDim2.new(0,88,0,21)bdc.Font=Enum.Font.Cartoon
  11877. bdc.Text="Version: 3.5"bdc.TextColor3=Color3.new(1,1,1)bdc.TextSize=14
  11878. bdc.TextStrokeColor3=Color3.new(0.290196,0.380392,0.588235)ddc.Name="creditsframe"ddc.Parent=dbc;ddc.Active=true
  11879. ddc.BackgroundColor3=Color3.new(0.368627,0.368627,0.368627)ddc.BorderSizePixel=0;ddc.Position=UDim2.new(0,396,0,236)
  11880. ddc.Selectable=true;ddc.Size=UDim2.new(0,385,0,142)ddc.Visible=false
  11881. __d.Name="drag"__d.Parent=ddc
  11882. __d.BackgroundColor3=Color3.new(0.898039,0.6,0)__d.BorderSizePixel=0;__d.Size=UDim2.new(0,385,0,18)
  11883. a_d.Name="drag2"a_d.Parent=ddc;a_d.BackgroundColor3=Color3.new(1,0.666667,0)
  11884. a_d.BorderSizePixel=0;a_d.Position=UDim2.new(0,0,0.0559006222,0)
  11885. a_d.Size=UDim2.new(0,385,0,48)b_d.Name="title"b_d.Parent=ddc;b_d.Active=true
  11886. b_d.BackgroundColor3=Color3.new(1,1,1)b_d.BackgroundTransparency=1;b_d.BorderSizePixel=0
  11887. b_d.Position=UDim2.new(0.0337662324,0,0.0900621116,0)b_d.Selectable=true;b_d.Size=UDim2.new(0,366,0,29)
  11888. b_d.Font=Enum.Font.Cartoon;b_d.Text="CREDITS VOUCH"b_d.TextColor3=Color3.new(1,1,1)
  11889. b_d.TextScaled=true;b_d.TextSize=15
  11890. b_d.TextStrokeColor3=Color3.new(0.141176,0.188235,0.282353)b_d.TextStrokeTransparency=0;b_d.TextTransparency=1;b_d.TextWrapped=true
  11891. c_d.Name="credits"c_d.Parent=ddc;c_d.Active=true
  11892. c_d.BackgroundColor3=Color3.new(1,1,1)c_d.BackgroundTransparency=1
  11893. c_d.Position=UDim2.new(0,0,0.492782801,0)c_d.Size=UDim2.new(0,200,0,24)c_d.Font=Enum.Font.Cartoon
  11894. c_d.Text="GUI BY : RBXLStealit"c_d.TextColor3=Color3.new(1,1,1)c_d.TextSize=14
  11895. c_d.TextStrokeColor3=Color3.new(0.290196,0.380392,0.588235)d_d.Name="credits"d_d.Parent=ddc;d_d.Active=true
  11896. d_d.BackgroundColor3=Color3.new(1,1,1)d_d.BackgroundTransparency=1
  11897. d_d.Position=UDim2.new(0,0,0.612501085,0)d_d.Size=UDim2.new(0,200,0,24)d_d.Font=Enum.Font.Cartoon
  11898. d_d.Text="SCRIPT \"INF WIRE\" By : Austin K"d_d.TextColor3=Color3.new(1,1,1)d_d.TextSize=14
  11899. d_d.TextStrokeColor3=Color3.new(0.290196,0.380392,0.588235)_ad.Name="credits"_ad.Parent=ddc;_ad.Active=true
  11900. _ad.BackgroundColor3=Color3.new(1,1,1)_ad.BackgroundTransparency=1
  11901. _ad.Position=UDim2.new(0.480519474,0,0.492782772,0)_ad.Size=UDim2.new(0,200,0,24)_ad.Font=Enum.Font.Cartoon
  11902. _ad.Text="SPECIAL THANKS"_ad.TextColor3=Color3.new(1,1,1)_ad.TextSize=14
  11903. _ad.TextStrokeColor3=Color3.new(0.290196,0.380392,0.588235)aad.Name="credits"aad.Parent=ddc;aad.Active=true
  11904. aad.BackgroundColor3=Color3.new(1,1,1)aad.BackgroundTransparency=1
  11905. aad.Position=UDim2.new(0.480519474,0,0.612501085,0)aad.Size=UDim2.new(0,200,0,24)aad.Font=Enum.Font.Cartoon
  11906. aad.Text="- FerryDeveloper"aad.TextColor3=Color3.new(1,1,1)aad.TextSize=14
  11907. aad.TextStrokeColor3=Color3.new(0.290196,0.380392,0.588235)bad.Name="credits"bad.Parent=ddc;bad.Active=true
  11908. bad.BackgroundColor3=Color3.new(1,1,1)bad.BackgroundTransparency=1
  11909. bad.Position=UDim2.new(0.480519474,0,0.711092651,0)bad.Size=UDim2.new(0,200,0,24)bad.Font=Enum.Font.Cartoon
  11910. bad.Text="- IyooGaming"bad.TextColor3=Color3.new(1,1,1)bad.TextSize=14
  11911. bad.TextStrokeColor3=Color3.new(0.290196,0.380392,0.588235)cad.Name="credits"cad.Parent=ddc;cad.Active=true
  11912. cad.BackgroundColor3=Color3.new(1,1,1)cad.BackgroundTransparency=1
  11913. cad.Position=UDim2.new(0.480519474,0,0.830810964,0)cad.Size=UDim2.new(0,200,0,24)cad.Font=Enum.Font.Cartoon
  11914. cad.Text="- Maul ID"cad.TextColor3=Color3.new(1,1,1)cad.TextSize=14
  11915. cad.TextStrokeColor3=Color3.new(0.290196,0.380392,0.588235)dad.Name="exit"dad.Parent=ddc
  11916. dad.BackgroundColor3=Color3.new(1,1,1)dad.BackgroundTransparency=1
  11917. dad.Position=UDim2.new(0.927272737,0,0,0)dad.Size=UDim2.new(0,28,0,18)dad.Font=Enum.Font.Cartoon
  11918. dad.Text="X"dad.TextColor3=Color3.new(0.980392,0.980392,0.980392)
  11919. dad.TextScaled=true;dad.TextSize=14;dad.TextStrokeColor3=Color3.new(1,1,1)
  11920. dad.TextStrokeTransparency=2;dad.TextWrapped=true
  11921. dad.MouseButton1Down:connect(function()ddc.Visible=false end)_caa.Name="credits"_caa.Parent=ddc;_caa.Active=true
  11922. _caa.BackgroundColor3=Color3.new(1,1,1)_caa.BackgroundTransparency=1
  11923. _caa.Position=UDim2.new(0,0,0.725177169,0)_caa.Size=UDim2.new(0,200,0,24)
  11924. _caa.Font=Enum.Font.Cartoon;_caa.Text="SCRIPT FVCK BY : CharWar "
  11925. _caa.TextColor3=Color3.new(1,1,1)_caa.TextSize=14
  11926. _caa.TextStrokeColor3=Color3.new(0.290196,0.380392,0.588235)abd.Name="tpferry"abd.Parent=dbc;abd.Active=true
  11927. abd.BackgroundColor3=Color3.new(0.368627,0.368627,0.368627)abd.BorderSizePixel=0;abd.Position=UDim2.new(0,0,0,330)
  11928. abd.Selectable=true;abd.Size=UDim2.new(0,385,0,227)abd.Visible=false
  11929. bbd.Name="drag"bbd.Parent=abd
  11930. bbd.BackgroundColor3=Color3.new(0.898039,0.6,0)bbd.BorderSizePixel=0;bbd.Size=UDim2.new(0,385,0,18)
  11931. cbd.Name="drag2"cbd.Parent=abd;cbd.BackgroundColor3=Color3.new(1,0.666667,0)
  11932. cbd.BorderSizePixel=0;cbd.Position=UDim2.new(0,0,0.0559006222,0)
  11933. cbd.Size=UDim2.new(0,385,0,48)dbd.Name="title"dbd.Parent=abd;dbd.Active=true
  11934. dbd.BackgroundColor3=Color3.new(1,1,1)dbd.BackgroundTransparency=1;dbd.BorderSizePixel=0
  11935. dbd.Position=UDim2.new(0.0337662324,0,0.0900621116,0)dbd.Selectable=true;dbd.Size=UDim2.new(0,366,0,29)
  11936. dbd.Font=Enum.Font.Cartoon;dbd.Text="TELEPORT SYSTEM"dbd.TextColor3=Color3.new(1,1,1)
  11937. dbd.TextScaled=true;dbd.TextSize=15
  11938. dbd.TextStrokeColor3=Color3.new(0.141176,0.188235,0.282353)dbd.TextStrokeTransparency=0;dbd.TextTransparency=1;dbd.TextWrapped=true
  11939. _cd.Name="exit"_cd.Parent=abd;_cd.BackgroundColor3=Color3.new(1,1,1)
  11940. _cd.BackgroundTransparency=1;_cd.Position=UDim2.new(0.929870129,0,0,0)
  11941. _cd.Size=UDim2.new(0,28,0,18)_cd.Font=Enum.Font.Cartoon;_cd.Text="X"
  11942. _cd.TextColor3=Color3.new(0.980392,0.980392,0.980392)_cd.TextScaled=true;_cd.TextSize=14
  11943. _cd.TextStrokeColor3=Color3.new(1,1,1)_cd.TextStrokeTransparency=2;_cd.TextWrapped=true
  11944. _cd.MouseButton1Down:connect(function()
  11945. abd.Visible=false end)acd.Name="volcano"acd.Parent=abd
  11946. acd.BackgroundColor3=Color3.new(1,1,1)acd.BorderSizePixel=0
  11947. acd.Position=UDim2.new(0,0,0.300000012,0)acd.Size=UDim2.new(0,183,0,42)
  11948. acd.Style=Enum.ButtonStyle.RobloxRoundButton;acd.Font=Enum.Font.Cartoon;acd.Text="VOLCANO"
  11949. acd.TextColor3=Color3.new(0,0,0)acd.TextSize=20;acd.TextWrapped=true
  11950. acd.MouseButton1Down:connect(function()
  11951. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(
  11952. -1585,622,1140))end)bcd.Name="palm"bcd.Parent=abd
  11953. bcd.BackgroundColor3=Color3.new(1,1,1)bcd.BorderSizePixel=0
  11954. bcd.Position=UDim2.new(0,0,0.639999986,0)bcd.Size=UDim2.new(0,183,0,42)
  11955. bcd.Style=Enum.ButtonStyle.RobloxRoundButton;bcd.Font=Enum.Font.Cartoon;bcd.Text="PALM ISLAND"
  11956. bcd.TextColor3=Color3.new(0,0,0)bcd.TextSize=20;bcd.TextWrapped=true
  11957. bcd.MouseButton1Down:connect(function()
  11958. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(2549,
  11959. -5,-42))end)ccd.Name="bluewood"ccd.Parent=abd
  11960. ccd.BackgroundColor3=Color3.new(1,1,1)ccd.BorderSizePixel=0
  11961. ccd.Position=UDim2.new(0,0,0.810000002,0)ccd.Size=UDim2.new(0,183,0,42)
  11962. ccd.Style=Enum.ButtonStyle.RobloxRoundButton;ccd.Font=Enum.Font.Cartoon;ccd.Text="BLUEWOOD"
  11963. ccd.TextColor3=Color3.new(0,0,0)ccd.TextSize=20;ccd.TextWrapped=true
  11964. ccd.MouseButton1Down:connect(function()
  11965. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(3581,
  11966. -179,430))end)dcd.Name="phantom"dcd.Parent=abd
  11967. dcd.BackgroundColor3=Color3.new(1,1,1)dcd.BorderSizePixel=0
  11968. dcd.Position=UDim2.new(0,0,0.469999999,0)dcd.Size=UDim2.new(0,183,0,42)
  11969. dcd.Style=Enum.ButtonStyle.RobloxRoundButton;dcd.Font=Enum.Font.Cartoon;dcd.Text="PHANTOM"
  11970. dcd.TextColor3=Color3.new(0,0,0)dcd.TextSize=20;dcd.TextWrapped=true
  11971. dcd.MouseButton1Down:connect(function()
  11972. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(113,
  11973. -214,-951))end)_dd.Name="shine"_dd.Parent=abd
  11974. _dd.BackgroundColor3=Color3.new(1,1,1)_dd.BorderSizePixel=0
  11975. _dd.Position=UDim2.new(0.52238965,0,0.300000012,0)_dd.Size=UDim2.new(0,183,0,42)
  11976. _dd.Style=Enum.ButtonStyle.RobloxRoundButton;_dd.Font=Enum.Font.Cartoon;_dd.Text="SHRINE OF SIGHT"
  11977. _dd.TextColor3=Color3.new(0,0,0)_dd.TextSize=20;_dd.TextWrapped=true
  11978. _dd.MouseButton1Down:connect(function()
  11979. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(
  11980. -1600,195,919))end)add.Name="strange"add.Parent=abd
  11981. add.BackgroundColor3=Color3.new(1,1,1)add.BorderSizePixel=0
  11982. add.Position=UDim2.new(0.522000015,0,0.469999999,0)add.Size=UDim2.new(0,183,0,42)
  11983. add.Style=Enum.ButtonStyle.RobloxRoundButton;add.Font=Enum.Font.Cartoon;add.Text="STRANGE MAN"
  11984. add.TextColor3=Color3.new(0,0,0)add.TextSize=20;add.TextWrapped=true
  11985. add.MouseButton1Down:connect(function()
  11986. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(1061,16,1131))end)bdd.Name="spawn"bdd.Parent=abd
  11987. bdd.BackgroundColor3=Color3.new(1,1,1)bdd.BorderSizePixel=0
  11988. bdd.Position=UDim2.new(0.522000015,0,0.810000002,0)bdd.Size=UDim2.new(0,183,0,42)
  11989. bdd.Style=Enum.ButtonStyle.RobloxRoundButton;bdd.Font=Enum.Font.Cartoon;bdd.Text="SPAWN"
  11990. bdd.TextColor3=Color3.new(0,0,0)bdd.TextSize=20;bdd.TextWrapped=true
  11991. bdd.MouseButton1Down:connect(function()
  11992. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(155,3,74))end)cdd.Name="links"cdd.Parent=abd
  11993. cdd.BackgroundColor3=Color3.new(1,1,1)cdd.BorderSizePixel=0
  11994. cdd.Position=UDim2.new(0.522000015,0,0.639999986,0)cdd.Size=UDim2.new(0,183,0,42)
  11995. cdd.Style=Enum.ButtonStyle.RobloxRoundButton;cdd.Font=Enum.Font.Cartoon;cdd.Text="LINK'S LOGIC"
  11996. cdd.TextColor3=Color3.new(0,0,0)cdd.TextSize=20;cdd.TextWrapped=true
  11997. cdd.MouseButton1Down:connect(function()
  11998. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(4605,3,
  11999. -727))end)___a.Name="coming"___a.Parent=abd
  12000. ___a.BackgroundColor3=Color3.new(1,1,1)___a.BorderSizePixel=0
  12001. ___a.Position=UDim2.new(0.238883123,0,1.03466964,0)___a.Size=UDim2.new(0,183,0,31)
  12002. ___a.Style=Enum.ButtonStyle.RobloxRoundButton;___a.Font=Enum.Font.Cartoon;___a.Text="COMING SOON"
  12003. ___a.TextColor3=Color3.new(0,0,0)___a.TextSize=20;___a.TextWrapped=true;a__a.Name="Dupe"a__a.Parent=dbc
  12004. a__a.BackgroundColor3=Color3.new(0.431373,0.45098,0.470588)a__a.BorderColor3=Color3.new(1,0.666667,0)
  12005. a__a.BorderSizePixel=5;a__a.Position=UDim2.new(0.238961026,0,0.739796996,0)
  12006. a__a.Size=UDim2.new(0,200,0,50)a__a.AutoButtonColor=false;a__a.Font=Enum.Font.Fantasy
  12007. a__a.Text="DUPE"a__a.TextColor3=Color3.new(0,0,0)a__a.TextSize=20
  12008. a__a.TextWrapped=true
  12009. a__a.MouseButton1Down:connect(function()
  12010. plr=game:GetService("Players").LocalPlayer;slot=plr.CurrentSaveSlot
  12011. if Option==false then if slot.Value==-1 then Option=true
  12012. slot.RobloxLocked=true;a__a.BackgroundColor3=Color3.new(0,1,0)
  12013. b__a.Text="Status Dupe : Active"end else
  12014. Option=false;slot.RobloxLocked=false
  12015. a__a.BackgroundColor3=Color3.new(0.7,0,0)b__a.Text="Status Dupe : Not Active"
  12016. b__a.Text=Color3.new(63,253,4)end end)b__a.Name="DupeLabel"b__a.Parent=dbc;b__a.Active=true
  12017. b__a.BackgroundColor3=Color3.new(1,1,1)b__a.BackgroundTransparency=1
  12018. b__a.Position=UDim2.new(0.238961041,0,0.668547392,0)b__a.Size=UDim2.new(0,200,0,21)
  12019. b__a.Font=Enum.Font.Cartoon;b__a.Text="Status Dupe : Saved"
  12020. b__a.TextColor3=Color3.new(0.247059,0.992157,0.0156863)b__a.TextSize=14;b__a.TextWrapped=true;c__a.Name="woodmenu"
  12021. c__a.Parent=dbc;c__a.BackgroundColor3=Color3.new(1,1,1)c__a.BorderSizePixel=0
  12022. c__a.Position=UDim2.new(0.238961026,0,0.380475402,0)c__a.Size=UDim2.new(0,200,0,50)
  12023. c__a.Style=Enum.ButtonStyle.RobloxRoundButton;c__a.Font=Enum.Font.Fantasy;c__a.Text="WOOD MENU"
  12024. c__a.TextColor3=Color3.new(0,0,0)c__a.TextSize=20;c__a.TextWrapped=true;d__a.Name="woodmnu"
  12025. d__a.Parent=dbc;d__a.Active=true
  12026. d__a.BackgroundColor3=Color3.new(0.368627,0.368627,0.368627)d__a.BorderSizePixel=0;d__a.Position=UDim2.new(0,-153,0,18)
  12027. d__a.Selectable=true;d__a.Size=UDim2.new(0,146,0,234)d__a.Visible=false
  12028. c__a.MouseButton1Down:connect(function()
  12029. d__a.Visible=true end)_a_a.Name="drag"_a_a.Parent=d__a
  12030. _a_a.BackgroundColor3=Color3.new(0.898039,0.6,0)_a_a.BorderSizePixel=0;_a_a.Size=UDim2.new(0,146,0,18)
  12031. aa_a.Name="drag2"aa_a.Parent=d__a
  12032. aa_a.BackgroundColor3=Color3.new(1,0.666667,0)aa_a.BorderSizePixel=0
  12033. aa_a.Position=UDim2.new(0,0,0.0304768384,0)aa_a.Size=UDim2.new(0,147,0,48)ba_a.Name="title"
  12034. ba_a.Parent=d__a;ba_a.Active=true;ba_a.BackgroundColor3=Color3.new(1,1,1)
  12035. ba_a.BackgroundTransparency=1;ba_a.BorderSizePixel=0
  12036. ba_a.Position=UDim2.new(0.0337662362,0,0.0900621116,0)ba_a.Selectable=true;ba_a.Size=UDim2.new(0,141,0,29)
  12037. ba_a.Font=Enum.Font.Cartoon;ba_a.Text="WOOD MENU"ba_a.TextColor3=Color3.new(1,1,1)
  12038. ba_a.TextScaled=true;ba_a.TextSize=15
  12039. ba_a.TextStrokeColor3=Color3.new(0.141176,0.188235,0.282353)ba_a.TextStrokeTransparency=0;ba_a.TextTransparency=1
  12040. ba_a.TextWrapped=true;ca_a.Name="exit"ca_a.Parent=d__a
  12041. ca_a.BackgroundColor3=Color3.new(1,1,1)ca_a.BackgroundTransparency=1
  12042. ca_a.Position=UDim2.new(0.851930261,0,0,0)ca_a.Size=UDim2.new(0,28,0,18)
  12043. ca_a.Font=Enum.Font.Cartoon;ca_a.Text="X"
  12044. ca_a.TextColor3=Color3.new(0.980392,0.980392,0.980392)ca_a.TextScaled=true;ca_a.TextSize=14
  12045. ca_a.TextStrokeColor3=Color3.new(1,1,1)ca_a.TextStrokeTransparency=2;ca_a.TextWrapped=true
  12046. ca_a.MouseButton1Down:connect(function()
  12047. d__a.Visible=false end)da_a.Name="bringvolcano"da_a.Parent=d__a
  12048. da_a.BackgroundColor3=Color3.new(1,1,1)da_a.BorderSizePixel=0
  12049. da_a.Position=UDim2.new(0,0,0.232117683,0)da_a.Size=UDim2.new(0,147,0,36)
  12050. da_a.Style=Enum.ButtonStyle.RobloxRoundButton;da_a.Font=Enum.Font.Cartoon;da_a.Text="Volcano"
  12051. da_a.TextColor3=Color3.new(0,0,0)da_a.TextSize=20;da_a.TextWrapped=true
  12052. da_a.MouseButton1Down:connect(function()for __ba,a_ba in
  12053. pairs(game.Workspace.LogModels:GetChildren())do cut(a_ba,"Volcano")end end)_b_a.Name="bringpalm"_b_a.Parent=d__a
  12054. _b_a.BackgroundColor3=Color3.new(1,1,1)_b_a.BorderSizePixel=0
  12055. _b_a.Position=UDim2.new(0,0,0.385602862,0)_b_a.Size=UDim2.new(0,147,0,36)
  12056. _b_a.Style=Enum.ButtonStyle.RobloxRoundButton;_b_a.Font=Enum.Font.Cartoon;_b_a.Text="PALM"
  12057. _b_a.TextColor3=Color3.new(0,0,0)_b_a.TextSize=20;_b_a.TextWrapped=true
  12058. _b_a.MouseButton1Down:connect(function()for __ba,a_ba in
  12059. pairs(game.Workspace.LogModels:GetChildren())do cut(a_ba,"Palm")end end)ab_a.Name="bringzombie"ab_a.Parent=d__a
  12060. ab_a.BackgroundColor3=Color3.new(1,1,1)ab_a.BorderSizePixel=0
  12061. ab_a.Position=UDim2.new(0,0,0.535395384,0)ab_a.Size=UDim2.new(0,147,0,36)
  12062. ab_a.Style=Enum.ButtonStyle.RobloxRoundButton;ab_a.Font=Enum.Font.Cartoon;ab_a.Text="Green Wood"
  12063. ab_a.TextColor3=Color3.new(0,0,0)ab_a.TextSize=20;ab_a.TextWrapped=true
  12064. ab_a.MouseButton1Down:connect(function()
  12065. for __ba,a_ba in
  12066. pairs(game.Workspace.LogModels:GetChildren())do cut(a_ba,"GreenSwampy")end end)bb_a.Name="golden"bb_a.Parent=d__a
  12067. bb_a.BackgroundColor3=Color3.new(1,1,1)bb_a.BorderSizePixel=0
  12068. bb_a.Position=UDim2.new(0,0,0.688880563,0)bb_a.Size=UDim2.new(0,147,0,36)
  12069. bb_a.Style=Enum.ButtonStyle.RobloxRoundButton;bb_a.Font=Enum.Font.Cartoon;bb_a.Text="Golden Wood"
  12070. bb_a.TextColor3=Color3.new(0,0,0)bb_a.TextSize=20;bb_a.TextWrapped=true
  12071. bb_a.MouseButton1Down:connect(function()
  12072. for __ba,a_ba in
  12073. pairs(game.Workspace.LogModels:GetChildren())do cut(a_ba,"GoldSwampy")end end)cb_a.Name="cave"cb_a.Parent=d__a
  12074. cb_a.BackgroundColor3=Color3.new(1,1,1)cb_a.BorderSizePixel=0
  12075. cb_a.Position=UDim2.new(0,0,0.842726707,0)cb_a.Size=UDim2.new(0,147,0,36)
  12076. cb_a.Style=Enum.ButtonStyle.RobloxRoundButton;cb_a.Font=Enum.Font.Cartoon;cb_a.Text="Blue Wood"
  12077. cb_a.TextColor3=Color3.new(0,0,0)cb_a.TextSize=20;cb_a.TextWrapped=true
  12078. cb_a.MouseButton1Down:connect(function()
  12079. for __ba,a_ba in
  12080. pairs(game.Workspace.LogModels:GetChildren())do cut(a_ba,"CaveCrawler")end end)db_a.Name="woodmnu2"db_a.Parent=d__a;db_a.Active=true
  12081. db_a.BackgroundColor3=Color3.new(0.368627,0.368627,0.368627)db_a.BorderSizePixel=0;db_a.Position=UDim2.new(0,0,0,241)
  12082. db_a.Size=UDim2.new(0,146,0,234)_c_a.Name="drag"_c_a.Parent=db_a
  12083. _c_a.BackgroundColor3=Color3.new(0.898039,0.6,0)_c_a.BorderSizePixel=0;_c_a.Size=UDim2.new(0,146,0,18)
  12084. ac_a.Name="drag2"ac_a.Parent=db_a
  12085. ac_a.BackgroundColor3=Color3.new(1,0.666667,0)ac_a.BorderSizePixel=0
  12086. ac_a.Position=UDim2.new(0,0,0.0304768384,0)ac_a.Size=UDim2.new(0,147,0,48)bc_a.Name="title"
  12087. bc_a.Parent=db_a;bc_a.Active=true;bc_a.BackgroundColor3=Color3.new(1,1,1)
  12088. bc_a.BackgroundTransparency=1;bc_a.BorderSizePixel=0
  12089. bc_a.Position=UDim2.new(0.0337662362,0,0.0900621116,0)bc_a.Selectable=true;bc_a.Size=UDim2.new(0,141,0,29)
  12090. bc_a.Font=Enum.Font.Cartoon;bc_a.Text="TP WOOD"bc_a.TextColor3=Color3.new(1,1,1)
  12091. bc_a.TextScaled=true;bc_a.TextSize=15
  12092. bc_a.TextStrokeColor3=Color3.new(0.141176,0.188235,0.282353)bc_a.TextStrokeTransparency=0;bc_a.TextTransparency=1
  12093. bc_a.TextWrapped=true;cc_a.Name="exit"cc_a.Parent=db_a
  12094. cc_a.BackgroundColor3=Color3.new(1,1,1)cc_a.BackgroundTransparency=1
  12095. cc_a.Position=UDim2.new(0.851930261,0,0,0)cc_a.Size=UDim2.new(0,28,0,18)
  12096. cc_a.Font=Enum.Font.Cartoon;cc_a.Text="X"
  12097. cc_a.TextColor3=Color3.new(0.980392,0.980392,0.980392)cc_a.TextScaled=true;cc_a.TextSize=14
  12098. cc_a.TextStrokeColor3=Color3.new(1,1,1)cc_a.TextStrokeTransparency=2;cc_a.TextWrapped=true
  12099. cc_a.MouseButton1Down:connect(function()
  12100. d__a.Visible=false end)dc_a.Name="cutvolcano"dc_a.Parent=db_a
  12101. dc_a.BackgroundColor3=Color3.new(1,1,1)dc_a.BorderSizePixel=0
  12102. dc_a.Position=UDim2.new(0,0,0.232117742,0)dc_a.Size=UDim2.new(0,147,0,36)
  12103. dc_a.Style=Enum.ButtonStyle.RobloxRoundButton;dc_a.Font=Enum.Font.Cartoon;dc_a.Text="Volcano"
  12104. dc_a.TextColor3=Color3.new(0,0,0)dc_a.TextSize=20;dc_a.TextWrapped=true
  12105. dc_a.MouseButton1Down:connect(function()
  12106. Found=false
  12107. for __ba,a_ba in pairs(game.Workspace:GetChildren())do if
  12108. a_ba.Name=="TreeRegion"then
  12109. for b_ba,c_ba in pairs(a_ba:GetChildren())do tree(c_ba,"Volcano")end end end end)_d_a.Name="cutpalm"_d_a.Parent=db_a
  12110. _d_a.BackgroundColor3=Color3.new(1,1,1)_d_a.BorderSizePixel=0
  12111. _d_a.Position=UDim2.new(0,0,0.385602862,0)_d_a.Size=UDim2.new(0,147,0,36)
  12112. _d_a.Style=Enum.ButtonStyle.RobloxRoundButton;_d_a.Font=Enum.Font.Cartoon;_d_a.Text="PALM"
  12113. _d_a.TextColor3=Color3.new(0,0,0)_d_a.TextSize=20;_d_a.TextWrapped=true
  12114. _d_a.MouseButton1Down:connect(function()
  12115. Found=false
  12116. for __ba,a_ba in pairs(game.Workspace:GetChildren())do if
  12117. a_ba.Name=="TreeRegion"then
  12118. for b_ba,c_ba in pairs(a_ba:GetChildren())do tree(c_ba,"Palm")end end end end)ad_a.Name="cutzombie"ad_a.Parent=db_a
  12119. ad_a.BackgroundColor3=Color3.new(1,1,1)ad_a.BorderSizePixel=0
  12120. ad_a.Position=UDim2.new(0,0,0.535395384,0)ad_a.Size=UDim2.new(0,147,0,36)
  12121. ad_a.Style=Enum.ButtonStyle.RobloxRoundButton;ad_a.Font=Enum.Font.Cartoon;ad_a.Text="Green Wood"
  12122. ad_a.TextColor3=Color3.new(0,0,0)ad_a.TextSize=20;ad_a.TextWrapped=true
  12123. ad_a.MouseButton1Down:connect(function()
  12124. Found=false
  12125. for __ba,a_ba in pairs(game.Workspace:GetChildren())do if
  12126. a_ba.Name=="TreeRegion"then
  12127. for b_ba,c_ba in pairs(a_ba:GetChildren())do tree(c_ba,"GreenSwampy")end end end end)bd_a.Name="cutgolden"bd_a.Parent=db_a
  12128. bd_a.BackgroundColor3=Color3.new(1,1,1)bd_a.BorderSizePixel=0
  12129. bd_a.Position=UDim2.new(0,0,0.688880563,0)bd_a.Size=UDim2.new(0,147,0,36)
  12130. bd_a.Style=Enum.ButtonStyle.RobloxRoundButton;bd_a.Font=Enum.Font.Cartoon;bd_a.Text="Golden Wood"
  12131. bd_a.TextColor3=Color3.new(0,0,0)bd_a.TextSize=20;bd_a.TextWrapped=true
  12132. bd_a.MouseButton1Down:connect(function()
  12133. Found=false
  12134. for __ba,a_ba in pairs(game.Workspace:GetChildren())do if
  12135. a_ba.Name=="TreeRegion"then
  12136. for b_ba,c_ba in pairs(a_ba:GetChildren())do tree(c_ba,"GoldSwampy")end end end end)cd_a.Name="cutcave"cd_a.Parent=db_a
  12137. cd_a.BackgroundColor3=Color3.new(1,1,1)cd_a.BorderSizePixel=0
  12138. cd_a.Position=UDim2.new(0,0,0.842726707,0)cd_a.Size=UDim2.new(0,147,0,36)
  12139. cd_a.Style=Enum.ButtonStyle.RobloxRoundButton;cd_a.Font=Enum.Font.Cartoon;cd_a.Text="Blue Wood"
  12140. cd_a.TextColor3=Color3.new(0,0,0)cd_a.TextSize=20;cd_a.TextWrapped=true
  12141. cd_a.MouseButton1Down:connect(function()
  12142. Found=false
  12143. for __ba,a_ba in pairs(game.Workspace:GetChildren())do if
  12144. a_ba.Name=="TreeRegion"then
  12145. for b_ba,c_ba in pairs(a_ba:GetChildren())do tree(c_ba,"CaveCrawler")end end end end)dd_a.Name="others"dd_a.Parent=dbc
  12146. dd_a.BackgroundColor3=Color3.new(1,1,1)dd_a.BorderSizePixel=0
  12147. dd_a.Position=UDim2.new(0.238961026,0,0.511365473,0)dd_a.Size=UDim2.new(0,200,0,50)
  12148. dd_a.Style=Enum.ButtonStyle.RobloxRoundButton;dd_a.Font=Enum.Font.Fantasy;dd_a.Text="OTHERS MENU"
  12149. dd_a.TextColor3=Color3.new(0,0,0)dd_a.TextSize=20;dd_a.TextWrapped=true
  12150. dd_a.MouseButton1Down:connect(function()
  12151. __aa.Visible=true end)__aa.Name="othersmenu"__aa.Parent=dbc;__aa.Active=true
  12152. __aa.BackgroundColor3=Color3.new(0.368627,0.368627,0.368627)__aa.BorderSizePixel=0
  12153. __aa.Position=UDim2.new(0.00779220788,0,0,0)__aa.Selectable=true;__aa.Size=UDim2.new(0,382,0,404)
  12154. __aa.Visible=false;a_aa.Name="drag"a_aa.Parent=__aa
  12155. a_aa.BackgroundColor3=Color3.new(0.898039,0.6,0)a_aa.BorderSizePixel=0;a_aa.Size=UDim2.new(0,382,0,21)
  12156. b_aa.Name="drag2"b_aa.Parent=__aa
  12157. b_aa.BackgroundColor3=Color3.new(1,0.666667,0)b_aa.BorderSizePixel=0
  12158. b_aa.Position=UDim2.new(0,0,0.0509501398,0)b_aa.Size=UDim2.new(0,382,0,48)c_aa.Name="exit"
  12159. c_aa.Parent=__aa;c_aa.BackgroundColor3=Color3.new(1,1,1)
  12160. c_aa.BackgroundTransparency=1;c_aa.Position=UDim2.new(0.929890513,0,0,0)
  12161. c_aa.Size=UDim2.new(0,28,0,21)c_aa.Font=Enum.Font.Cartoon;c_aa.Text="X"
  12162. c_aa.TextColor3=Color3.new(0.980392,0.980392,0.980392)c_aa.TextScaled=true;c_aa.TextSize=14
  12163. c_aa.TextStrokeColor3=Color3.new(1,1,1)c_aa.TextStrokeTransparency=2;c_aa.TextWrapped=true
  12164. c_aa.MouseButton1Click:Connect(function()
  12165. __aa.Visible=false end)d_aa.Name="title"d_aa.Parent=__aa;d_aa.Active=true
  12166. d_aa.BackgroundColor3=Color3.new(1,1,1)d_aa.BackgroundTransparency=1;d_aa.BorderSizePixel=0
  12167. d_aa.Position=UDim2.new(0.0337662324,0,0.0900621116,0)d_aa.Selectable=true;d_aa.Size=UDim2.new(0,366,0,29)
  12168. d_aa.Font=Enum.Font.Cartoon;d_aa.Text="OTHERS MENU"d_aa.TextColor3=Color3.new(1,1,1)
  12169. d_aa.TextScaled=true;d_aa.TextSize=15
  12170. d_aa.TextStrokeColor3=Color3.new(0.141176,0.188235,0.282353)d_aa.TextStrokeTransparency=0;d_aa.TextTransparency=1
  12171. d_aa.TextWrapped=true;_aaa.Name="godaxe"_aaa.Parent=__aa
  12172. _aaa.BackgroundColor3=Color3.new(1,1,1)_aaa.BorderSizePixel=0
  12173. _aaa.Position=UDim2.new(0.23634322,0,0.204785585,0)_aaa.Size=UDim2.new(0,200,0,50)
  12174. _aaa.Style=Enum.ButtonStyle.RobloxRoundButton;_aaa.Font=Enum.Font.Cartoon;_aaa.Text="GOLD AXE"
  12175. _aaa.TextColor3=Color3.new(0,0,0)_aaa.TextSize=20;_aaa.TextWrapped=true
  12176. _aaa.MouseButton1Click:connect(function()
  12177. Detect=coroutine.wrap(function()
  12178. Player=game.Players.LocalPlayer;mouse=Player:GetMouse()
  12179. mouse.Button1Down:connect(function()MouseDown=true end)
  12180. mouse.Button1Up:connect(function()MouseDown=false end)end)Detect()Player=game.Players.LocalPlayer
  12181. mouse=Player:GetMouse()
  12182. game:GetService('RunService').RenderStepped:connect(function()
  12183. if
  12184. Player.Character:FindFirstChild("Tool")then
  12185. if MouseDown==true then
  12186. if mouse.Target.Name=="WoodSection"then
  12187. targetWood=mouse.Target;Tool=Player.Character.Tool
  12188. Height=
  12189. targetWood.CFrame:pointToObjectSpace(mouse.Hit.p).Y+targetWood.Size.Y/2
  12190. local __ba=Ray.new(Player.Character.Head.Position,
  12191. (
  12192. (targetWood.CFrame*CFrame.new(0,Height-
  12193. targetWood.Size.Y/2,0)).p-Player.Character.Head.Position).unit*200)
  12194. part,_,p=workspace:FindPartOnRay(__ba,Player.Character)function fixVector(baba)
  12195. return Vector3.new(math.floor(baba.X+0.5),math.floor(baba.Y+0.5),math.floor(
  12196. baba.Z+0.5))end
  12197. local a_ba=fixVector(targetWood.CFrame:vectorToObjectSpace(p))if a_ba.Y~=0 then return end
  12198. local b_ba=CFrame.new(Player.Character.Head.Position,mouse.Hit.p)
  12199. local c_ba=b_ba:toObjectSpace(targetWood.CFrame*CFrame.Angles(math.pi/2,0,0))local d_ba=c_ba.lookVector;local _aba=d_ba.Y>=0 and 1 or-1
  12200. if
  12201. a_ba.X==1 then a_ba=Vector3.new(0,0,-1)*_aba elseif a_ba.X==-1 then a_ba=
  12202. Vector3.new(0,0,1)*_aba elseif a_ba.Z==1 then
  12203. a_ba=Vector3.new(1,0,0)*_aba elseif a_ba.Z==-1 then a_ba=Vector3.new(-1,0,0)*_aba end;local aaba=targetWood.Parent.CutEvent
  12204. game.ReplicatedStorage.Interaction.RemoteProxy:FireServer(aaba,{sectionId=targetWood.ID.Value,faceVector=a_ba,height=Height,hitPoints=0.2,cooldown=0,cuttingClass="Axe",tool=Player.Character.Tool})end end end end)end)aaaa.Name="v3rsion"aaaa.Parent=__aa;aaaa.Active=true
  12205. aaaa.BackgroundColor3=Color3.new(1,1,1)aaaa.BackgroundTransparency=1
  12206. aaaa.Position=UDim2.new(0.19813019,0,0.818459988,0)aaaa.Size=UDim2.new(0,226,0,60)
  12207. aaaa.Font=Enum.Font.Cartoon;aaaa.Text="Coming Soon~"aaaa.TextColor3=Color3.new(1,1,1)
  12208. aaaa.TextScaled=true;aaaa.TextSize=14
  12209. aaaa.TextStrokeColor3=Color3.new(0.290196,0.380392,0.588235)aaaa.TextWrapped=true;baaa.Name="pinkwires"baaa.Parent=__aa
  12210. baaa.BackgroundColor3=Color3.new(1,1,1)baaa.BorderSizePixel=0
  12211. baaa.Position=UDim2.new(0.23634322,0,0.327086896,0)baaa.Size=UDim2.new(0,200,0,50)
  12212. baaa.Style=Enum.ButtonStyle.RobloxRoundButton;baaa.Font=Enum.Font.Cartoon;baaa.Text="PINK WIRES"
  12213. baaa.TextColor3=Color3.new(0,0,0)baaa.TextSize=20;baaa.TextWrapped=true
  12214. baaa.MouseButton1Click:connect(function()
  12215. local __ba=game.ReplicatedStorage.Purchasables:FindFirstChild("NeonWirePinky",true)__ba.Name="Wire"
  12216. local a_ba=game.ReplicatedStorage.Purchasables:FindFirstChild("Wire",true)a_ba:Destroy()end)caaa.Name="maxland"caaa.Parent=__aa
  12217. caaa.BackgroundColor3=Color3.new(1,1,1)caaa.BorderSizePixel=0
  12218. caaa.Position=UDim2.new(0.23634322,0,0.448419482,0)caaa.Size=UDim2.new(0,200,0,50)
  12219. caaa.Style=Enum.ButtonStyle.RobloxRoundButton;caaa.Font=Enum.Font.Cartoon;caaa.Text="MAX LAND"
  12220. caaa.TextColor3=Color3.new(0,0,0)caaa.TextSize=20;caaa.TextWrapped=true
  12221. caaa.MouseButton1Click:connect(function()
  12222. for __ba,a_ba in
  12223. pairs(game:GetService("Workspace").Properties:GetChildren())do
  12224. if a_ba:FindFirstChild("Owner")and
  12225. a_ba.Owner.Value==game.Players.LocalPlayer then base=a_ba;square=a_ba.OriginSquare end end
  12226. function makebase(__ba)
  12227. local a_ba=game:GetService("ReplicatedStorage").PropertyPurchasing.ClientExpandedProperty;a_ba:FireServer(base,__ba)end;spos=square.Position
  12228. makebase(CFrame.new(spos.X+40,spos.Y,spos.Z))
  12229. makebase(CFrame.new(spos.X-40,spos.Y,spos.Z))
  12230. makebase(CFrame.new(spos.X,spos.Y,spos.Z+40))
  12231. makebase(CFrame.new(spos.X,spos.Y,spos.Z-40))
  12232. makebase(CFrame.new(spos.X+40,spos.Y,spos.Z+40))
  12233. makebase(CFrame.new(spos.X+40,spos.Y,spos.Z-40))
  12234. makebase(CFrame.new(spos.X-40,spos.Y,spos.Z+40))
  12235. makebase(CFrame.new(spos.X-40,spos.Y,spos.Z-40))
  12236. makebase(CFrame.new(spos.X+80,spos.Y,spos.Z))
  12237. makebase(CFrame.new(spos.X-80,spos.Y,spos.Z))
  12238. makebase(CFrame.new(spos.X,spos.Y,spos.Z+80))
  12239. makebase(CFrame.new(spos.X,spos.Y,spos.Z-80))
  12240. makebase(CFrame.new(spos.X+80,spos.Y,spos.Z+80))
  12241. makebase(CFrame.new(spos.X+80,spos.Y,spos.Z-80))
  12242. makebase(CFrame.new(spos.X-80,spos.Y,spos.Z+80))
  12243. makebase(CFrame.new(spos.X-80,spos.Y,spos.Z-80))
  12244. makebase(CFrame.new(spos.X+40,spos.Y,spos.Z+80))
  12245. makebase(CFrame.new(spos.X-40,spos.Y,spos.Z+80))
  12246. makebase(CFrame.new(spos.X+80,spos.Y,spos.Z+40))
  12247. makebase(CFrame.new(spos.X+80,spos.Y,spos.Z-40))
  12248. makebase(CFrame.new(spos.X-80,spos.Y,spos.Z+40))
  12249. makebase(CFrame.new(spos.X-80,spos.Y,spos.Z-40))
  12250. makebase(CFrame.new(spos.X+40,spos.Y,spos.Z-80))
  12251. makebase(CFrame.new(spos.X-40,spos.Y,spos.Z-80))end)daaa.Name="painttools"daaa.Parent=__aa
  12252. daaa.BackgroundColor3=Color3.new(1,1,1)daaa.BorderSizePixel=0
  12253. daaa.Position=UDim2.new(0.23634322,0,0.574702621,0)daaa.Size=UDim2.new(0,200,0,50)
  12254. daaa.Style=Enum.ButtonStyle.RobloxRoundButton;daaa.Font=Enum.Font.Cartoon;daaa.Text="PAINT TOOLS"
  12255. daaa.TextColor3=Color3.new(0,0,0)daaa.TextSize=20;daaa.TextWrapped=true
  12256. daaa.MouseButton1Down:Connect(function()
  12257. local __ba=Instance.new("ScreenGui")local a_ba=Instance.new("Frame")
  12258. local b_ba=Instance.new("ImageButton")local c_ba=Instance.new("ScrollingFrame")
  12259. local d_ba=Instance.new("ImageButton")local _aba=Instance.new("Frame")
  12260. local aaba=Instance.new("ImageButton")local baba=Instance.new("Frame")
  12261. local caba=Instance.new("ImageButton")local daba=Instance.new("Frame")
  12262. local _bba=Instance.new("ImageButton")local abba=Instance.new("Frame")
  12263. local bbba=Instance.new("ImageButton")local cbba=Instance.new("Frame")
  12264. local dbba=Instance.new("ImageButton")local _cba=Instance.new("Frame")
  12265. local acba=Instance.new("ImageButton")local bcba=Instance.new("Frame")
  12266. local ccba=Instance.new("ImageButton")local dcba=Instance.new("Frame")
  12267. local _dba=Instance.new("ImageButton")local adba=Instance.new("Frame")
  12268. local bdba=Instance.new("ImageButton")local cdba=Instance.new("Frame")
  12269. local ddba=Instance.new("ImageButton")local __ca=Instance.new("Frame")
  12270. local a_ca=Instance.new("ImageButton")local b_ca=Instance.new("Frame")
  12271. local c_ca=Instance.new("ImageButton")local d_ca=Instance.new("Frame")
  12272. local _aca=Instance.new("ImageButton")local aaca=Instance.new("Frame")
  12273. local baca=Instance.new("ImageButton")local caca=Instance.new("Frame")
  12274. local daca=Instance.new("ImageButton")local _bca=Instance.new("Frame")
  12275. local abca=Instance.new("ImageButton")local bbca=Instance.new("Frame")
  12276. local cbca=Instance.new("ImageButton")local dbca=Instance.new("Frame")
  12277. local _cca=Instance.new("ImageButton")local acca=Instance.new("Frame")__ba.Name="ColorPicker"
  12278. __ba.Parent=game.Players.LocalPlayer:WaitForChild("PlayerGui")a_ba.Name="ChangeColor"a_ba.Parent=__ba
  12279. a_ba.BackgroundColor3=Color3.new(0.176471,0.254902,0.427451)a_ba.BorderColor3=Color3.new(0,0,0)a_ba.BorderSizePixel=2;a_ba.Position=UDim2.new(0,10,1,
  12280. -110)
  12281. a_ba.Size=UDim2.new(0,100,0,100)a_ba.ZIndex=2;__ba.Enabled=false;b_ba.Name="CurrentColor"
  12282. b_ba.Parent=a_ba
  12283. b_ba.BackgroundColor3=Color3.new(0.176471,0.254902,0.427451)b_ba.BorderColor3=Color3.new(0,0,0)b_ba.BorderSizePixel=2
  12284. b_ba.Position=UDim2.new(0,10,0,10)b_ba.Size=UDim2.new(0,80,0,80)b_ba.ZIndex=2
  12285. b_ba.Image="rbxassetid://2712547918"b_ba.ScaleType=Enum.ScaleType.Crop;c_ba.Name="Picker"
  12286. c_ba.Parent=__ba
  12287. c_ba.BackgroundColor3=Color3.new(0.176471,0.254902,0.427451)c_ba.BorderColor3=Color3.new(0,0,0)c_ba.BorderSizePixel=2;c_ba.Position=UDim2.new(0,10,1,
  12288. -320)
  12289. c_ba.Size=UDim2.new(0,100,0,200)c_ba.CanvasPosition=Vector2.new(0,700)
  12290. c_ba.CanvasSize=UDim2.new(0,0,0,900)c_ba.ScrollBarThickness=7
  12291. c_ba.VerticalScrollBarPosition=Enum.VerticalScrollBarPosition.Left;c_ba.Visible=false;d_ba.Name="Birch"d_ba.Parent=c_ba
  12292. d_ba.BackgroundColor3=Color3.new(1,1,1)d_ba.BorderColor3=Color3.new(0,0,0)
  12293. d_ba.Position=UDim2.new(0,10,0,5)d_ba.Size=UDim2.new(0,80,0,40)d_ba.ZIndex=3
  12294. d_ba.Image="rbxassetid://2712547918"d_ba.ScaleType=Enum.ScaleType.Crop;_aba.Name="DropShadow"
  12295. _aba.Parent=d_ba;_aba.BackgroundColor3=Color3.new(0,0,0)_aba.BorderSizePixel=0
  12296. _aba.Position=UDim2.new(0,4,0,4)_aba.Size=UDim2.new(1,0,1,0)_aba.ZIndex=2;aaba.Name="Grey"
  12297. aaba.Parent=c_ba;aaba.BackgroundColor3=Color3.new(1,1,1)
  12298. aaba.BorderColor3=Color3.new(0,0,0)aaba.Position=UDim2.new(0,10,0,55)
  12299. aaba.Size=UDim2.new(0,80,0,40)aaba.ZIndex=3;aaba.Image="rbxassetid://924320031"
  12300. aaba.ScaleType=Enum.ScaleType.Crop;baba.Name="DropShadow"baba.Parent=aaba
  12301. baba.BackgroundColor3=Color3.new(0,0,0)baba.BorderSizePixel=0;baba.Position=UDim2.new(0,4,0,4)
  12302. baba.Size=UDim2.new(1,0,1,0)baba.ZIndex=2;caba.Name="Walnut"caba.Parent=c_ba
  12303. caba.BackgroundColor3=Color3.new(1,1,1)caba.BorderColor3=Color3.new(0,0,0)
  12304. caba.Position=UDim2.new(0,10,0,105)caba.Size=UDim2.new(0,80,0,40)caba.ZIndex=3
  12305. caba.Image="rbxassetid://2712559790"caba.ScaleType=Enum.ScaleType.Crop;daba.Name="DropShadow"
  12306. daba.Parent=caba;daba.BackgroundColor3=Color3.new(0,0,0)daba.BorderSizePixel=0
  12307. daba.Position=UDim2.new(0,4,0,4)daba.Size=UDim2.new(1,0,1,0)daba.ZIndex=2;_bba.Name="Generic"
  12308. _bba.Parent=c_ba;_bba.BackgroundColor3=Color3.new(1,1,1)
  12309. _bba.BorderColor3=Color3.new(0,0,0)_bba.Position=UDim2.new(0,10,0,155)
  12310. _bba.Size=UDim2.new(0,80,0,40)_bba.ZIndex=3;_bba.Image="rbxassetid://2712568624"
  12311. _bba.ScaleType=Enum.ScaleType.Crop;abba.Name="DropShadow"abba.Parent=_bba
  12312. abba.BackgroundColor3=Color3.new(0,0,0)abba.BorderSizePixel=0;abba.Position=UDim2.new(0,4,0,4)
  12313. abba.Size=UDim2.new(1,0,1,0)abba.ZIndex=2;bbba.Name="Oak"bbba.Parent=c_ba
  12314. bbba.BackgroundColor3=Color3.new(1,1,1)bbba.BorderColor3=Color3.new(0,0,0)
  12315. bbba.Position=UDim2.new(0,10,0,205)bbba.Size=UDim2.new(0,80,0,40)bbba.ZIndex=3
  12316. bbba.Image="rbxassetid://2712579185"bbba.ScaleType=Enum.ScaleType.Crop;cbba.Name="DropShadow"
  12317. cbba.Parent=bbba;cbba.BackgroundColor3=Color3.new(0,0,0)cbba.BorderSizePixel=0
  12318. cbba.Position=UDim2.new(0,4,0,4)cbba.Size=UDim2.new(1,0,1,0)cbba.ZIndex=2;dbba.Name="Pine"
  12319. dbba.Parent=c_ba;dbba.BackgroundColor3=Color3.new(1,1,1)
  12320. dbba.BorderColor3=Color3.new(0,0,0)dbba.Position=UDim2.new(0,10,0,255)
  12321. dbba.Size=UDim2.new(0,80,0,40)dbba.ZIndex=3;dbba.Image="rbxassetid://2712591183"
  12322. dbba.ScaleType=Enum.ScaleType.Crop;_cba.Name="DropShadow"_cba.Parent=dbba
  12323. _cba.BackgroundColor3=Color3.new(0,0,0)_cba.BorderSizePixel=0;_cba.Position=UDim2.new(0,4,0,4)
  12324. _cba.Size=UDim2.new(1,0,1,0)_cba.ZIndex=2;acba.Name="Palm"acba.Parent=c_ba
  12325. acba.BackgroundColor3=Color3.new(1,1,1)acba.BorderColor3=Color3.new(0,0,0)
  12326. acba.Position=UDim2.new(0,10,0,305)acba.Size=UDim2.new(0,80,0,40)acba.ZIndex=3
  12327. acba.Image="rbxassetid://2712597395"acba.ScaleType=Enum.ScaleType.Crop;bcba.Name="DropShadow"
  12328. bcba.Parent=acba;bcba.BackgroundColor3=Color3.new(0,0,0)bcba.BorderSizePixel=0
  12329. bcba.Position=UDim2.new(0,4,0,4)bcba.Size=UDim2.new(1,0,1,0)bcba.ZIndex=2;ccba.Name="Cherry"
  12330. ccba.Parent=c_ba;ccba.BackgroundColor3=Color3.new(1,1,1)
  12331. ccba.BorderColor3=Color3.new(0,0,0)ccba.Position=UDim2.new(0,10,0,355)
  12332. ccba.Size=UDim2.new(0,80,0,40)ccba.ZIndex=3;ccba.Image="rbxassetid://2712608599"
  12333. ccba.ScaleType=Enum.ScaleType.Crop;dcba.Name="DropShadow"dcba.Parent=ccba
  12334. dcba.BackgroundColor3=Color3.new(0,0,0)dcba.BorderSizePixel=0;dcba.Position=UDim2.new(0,4,0,4)
  12335. dcba.Size=UDim2.new(1,0,1,0)dcba.ZIndex=2;_dba.Name="Koa"_dba.Parent=c_ba
  12336. _dba.BackgroundColor3=Color3.new(1,1,1)_dba.BorderColor3=Color3.new(0,0,0)
  12337. _dba.Position=UDim2.new(0,10,0,355)_dba.Size=UDim2.new(0,80,0,40)_dba.ZIndex=3
  12338. _dba.Image="rbxassetid://2712612798"_dba.ScaleType=Enum.ScaleType.Crop;adba.Name="DropShadow"
  12339. adba.Parent=_dba;adba.BackgroundColor3=Color3.new(0,0,0)adba.BorderSizePixel=0
  12340. adba.Position=UDim2.new(0,4,0,4)adba.Size=UDim2.new(1,0,1,0)adba.ZIndex=2;bdba.Name="Volcano"
  12341. bdba.Parent=c_ba;bdba.BackgroundColor3=Color3.new(1,1,1)
  12342. bdba.BorderColor3=Color3.new(0,0,0)bdba.Position=UDim2.new(0,10,0,405)
  12343. bdba.Size=UDim2.new(0,80,0,40)bdba.ZIndex=3;bdba.Image="rbxassetid://2712618609"
  12344. bdba.ScaleType=Enum.ScaleType.Crop;cdba.Name="DropShadow"cdba.Parent=bdba
  12345. cdba.BackgroundColor3=Color3.new(0,0,0)cdba.BorderSizePixel=0;cdba.Position=UDim2.new(0,4,0,4)
  12346. cdba.Size=UDim2.new(1,0,1,0)cdba.ZIndex=2;ddba.Name="GreenSwampy"ddba.Parent=c_ba
  12347. ddba.BackgroundColor3=Color3.new(1,1,1)ddba.BorderColor3=Color3.new(0,0,0)
  12348. ddba.Position=UDim2.new(0,10,0,455)ddba.Size=UDim2.new(0,80,0,40)ddba.ZIndex=3
  12349. ddba.Image="rbxassetid://2712623896"ddba.ScaleType=Enum.ScaleType.Crop;__ca.Name="DropShadow"
  12350. __ca.Parent=ddba;__ca.BackgroundColor3=Color3.new(0,0,0)__ca.BorderSizePixel=0
  12351. __ca.Position=UDim2.new(0,4,0,4)__ca.Size=UDim2.new(1,0,1,0)__ca.ZIndex=2
  12352. a_ca.Name="GoldSwampy"a_ca.Parent=c_ba;a_ca.BackgroundColor3=Color3.new(1,1,1)
  12353. a_ca.BorderColor3=Color3.new(0,0,0)a_ca.Position=UDim2.new(0,10,0,505)
  12354. a_ca.Size=UDim2.new(0,80,0,40)a_ca.ZIndex=3;a_ca.Image="rbxassetid://2712631457"
  12355. a_ca.ScaleType=Enum.ScaleType.Crop;b_ca.Name="DropShadow"b_ca.Parent=a_ca
  12356. b_ca.BackgroundColor3=Color3.new(0,0,0)b_ca.BorderSizePixel=0;b_ca.Position=UDim2.new(0,4,0,4)
  12357. b_ca.Size=UDim2.new(1,0,1,0)b_ca.ZIndex=2;c_ca.Name="GenericSpecial"c_ca.Parent=c_ba
  12358. c_ca.BackgroundColor3=Color3.new(1,1,1)c_ca.BorderColor3=Color3.new(0,0,0)
  12359. c_ca.Position=UDim2.new(0,10,0,555)c_ca.Size=UDim2.new(0,80,0,40)c_ca.ZIndex=3
  12360. c_ca.Image="rbxassetid://2712639396"c_ca.ScaleType=Enum.ScaleType.Crop;d_ca.Name="DropShadow"
  12361. d_ca.Parent=c_ca;d_ca.BackgroundColor3=Color3.new(0,0,0)d_ca.BorderSizePixel=0
  12362. d_ca.Position=UDim2.new(0,4,0,4)d_ca.Size=UDim2.new(1,0,1,0)d_ca.ZIndex=2;_aca.Name="SnowGlow"
  12363. _aca.Parent=c_ba;_aca.BackgroundColor3=Color3.new(1,1,1)
  12364. _aca.BorderColor3=Color3.new(0,0,0)_aca.Position=UDim2.new(0,10,0,605)
  12365. _aca.Size=UDim2.new(0,80,0,40)_aca.ZIndex=3;_aca.Image="rbxassetid://2712651454"
  12366. _aca.ScaleType=Enum.ScaleType.Crop;aaca.Name="DropShadow"aaca.Parent=_aca
  12367. aaca.BackgroundColor3=Color3.new(0,0,0)aaca.BorderSizePixel=0;aaca.Position=UDim2.new(0,4,0,4)
  12368. aaca.Size=UDim2.new(1,0,1,0)aaca.ZIndex=2;baca.Name="Frost"baca.Parent=c_ba
  12369. baca.BackgroundColor3=Color3.new(1,1,1)baca.BorderColor3=Color3.new(0,0,0)
  12370. baca.Position=UDim2.new(0,10,0,655)baca.Size=UDim2.new(0,80,0,40)baca.ZIndex=3
  12371. baca.Image="rbxassetid://2712667804"baca.ScaleType=Enum.ScaleType.Crop;caca.Name="DropShadow"
  12372. caca.Parent=baca;caca.BackgroundColor3=Color3.new(0,0,0)caca.BorderSizePixel=0
  12373. caca.Position=UDim2.new(0,4,0,4)caca.Size=UDim2.new(1,0,1,0)caca.ZIndex=2
  12374. daca.Name="CaveCrawler"daca.Parent=c_ba;daca.BackgroundColor3=Color3.new(1,1,1)
  12375. daca.BorderColor3=Color3.new(0,0,0)daca.Position=UDim2.new(0,10,0,705)
  12376. daca.Size=UDim2.new(0,80,0,40)daca.ZIndex=3;daca.Image="rbxassetid://2712673980"
  12377. daca.ScaleType=Enum.ScaleType.Crop;_bca.Name="DropShadow"_bca.Parent=daca
  12378. _bca.BackgroundColor3=Color3.new(0,0,0)_bca.BorderSizePixel=0;_bca.Position=UDim2.new(0,4,0,4)
  12379. _bca.Size=UDim2.new(1,0,1,0)_bca.ZIndex=2;abca.Name="LoneCave"abca.Parent=c_ba
  12380. abca.BackgroundColor3=Color3.new(1,1,1)abca.BorderColor3=Color3.new(0,0,0)
  12381. abca.Position=UDim2.new(0,10,0,755)abca.Size=UDim2.new(0,80,0,40)abca.ZIndex=3
  12382. abca.Image="rbxassetid://2712693147"abca.ScaleType=Enum.ScaleType.Crop;bbca.Name="DropShadow"
  12383. bbca.Parent=abca;bbca.BackgroundColor3=Color3.new(0,0,0)bbca.BorderSizePixel=0
  12384. bbca.Position=UDim2.new(0,4,0,4)bbca.Size=UDim2.new(1,0,1,0)bbca.ZIndex=2;cbca.Name="Spooky"
  12385. cbca.Parent=c_ba;cbca.BackgroundColor3=Color3.new(1,1,1)
  12386. cbca.BorderColor3=Color3.new(0,0,0)cbca.Position=UDim2.new(0,10,0,805)
  12387. cbca.Size=UDim2.new(0,80,0,40)cbca.ZIndex=3;cbca.Image="rbxassetid://2712696822"
  12388. cbca.ScaleType=Enum.ScaleType.Crop;dbca.Name="DropShadow"dbca.Parent=cbca
  12389. dbca.BackgroundColor3=Color3.new(0,0,0)dbca.BorderSizePixel=0;dbca.Position=UDim2.new(0,4,0,4)
  12390. dbca.Size=UDim2.new(1,0,1,0)dbca.ZIndex=2;_cca.Name="SpookyNeon"_cca.Parent=c_ba
  12391. _cca.BackgroundColor3=Color3.new(1,1,1)_cca.BorderColor3=Color3.new(0,0,0)
  12392. _cca.Position=UDim2.new(0,10,0,855)_cca.Size=UDim2.new(0,80,0,40)_cca.ZIndex=3
  12393. _cca.Image="rbxassetid://2712700047"_cca.ScaleType=Enum.ScaleType.Crop;acca.Name="DropShadow"
  12394. acca.Parent=_cca;acca.BackgroundColor3=Color3.new(0,0,0)acca.BorderSizePixel=0
  12395. acca.Position=UDim2.new(0,4,0,4)acca.Size=UDim2.new(1,0,1,0)acca.ZIndex=2;woodtype="Birch"
  12396. local bcca=Instance.new("Tool",game.Players.LocalPlayer.Backpack)bcca.RequiresHandle=false;bcca.Name="Paint"
  12397. bcca.ToolTip="Changes A Stucture's Wood Type"
  12398. bcca.Equipped:connect(function(ccca)__ba.Enabled=true
  12399. ccca.Button1Down:connect(function()
  12400. if
  12401.  
  12402. ccca.Target.Parent:FindFirstChild("Type")or ccca.Target.Parent:FindFirstChild("BlueprintWoodClass")then local dcca
  12403. if ccca.Target.Parent:FindFirstChild("MainCFrame")then
  12404. dcca=ccca.Target.Parent.MainCFrame.Value else dcca=ccca.Target.Parent.PrimaryPart.CFrame end
  12405. if ccca.Target.Parent~=nil then
  12406. game.ReplicatedStorage.PlaceStructure.ClientPlacedStructure:FireServer(ccca.Target.Parent.ItemName.Value,dcca,game.Players.LocalPlayer,woodtype,ccca.Target.Parent,false)end else end end)end)
  12407. bcca.Unequipped:connect(function(ccca)__ba.Enabled=false end)
  12408. d_ba.MouseButton1Click:Connect(function()b_ba.Image=d_ba.Image;woodtype="Birch"end)
  12409. aaba.MouseButton1Click:Connect(function()b_ba.Image=aaba.Image;woodtype=nil end)
  12410. caba.MouseButton1Click:Connect(function()b_ba.Image=caba.Image;woodtype="Walnut"end)
  12411. _bba.MouseButton1Click:Connect(function()b_ba.Image=_bba.Image;woodtype="Generic"end)
  12412. bbba.MouseButton1Click:Connect(function()b_ba.Image=bbba.Image;woodtype="Oak"end)
  12413. dbba.MouseButton1Click:Connect(function()b_ba.Image=dbba.Image;woodtype="Pine"end)
  12414. acba.MouseButton1Click:Connect(function()b_ba.Image=acba.Image;woodtype="Palm"end)
  12415. _dba.MouseButton1Click:Connect(function()b_ba.Image=_dba.Image;woodtype="Koa"end)
  12416. bdba.MouseButton1Click:Connect(function()b_ba.Image=bdba.Image;woodtype="Volcano"end)
  12417. ddba.MouseButton1Click:Connect(function()b_ba.Image=ddba.Image;woodtype="GreenSwampy"end)
  12418. a_ca.MouseButton1Click:Connect(function()b_ba.Image=a_ca.Image;woodtype="GoldSwampy"end)
  12419. c_ca.MouseButton1Click:Connect(function()b_ba.Image=c_ca.Image
  12420. woodtype="GenericSpecial"end)
  12421. _aca.MouseButton1Click:Connect(function()b_ba.Image=_aca.Image;woodtype="SnowGlow"end)
  12422. baca.MouseButton1Click:Connect(function()b_ba.Image=baca.Image;woodtype="Frost"end)
  12423. daca.MouseButton1Click:Connect(function()b_ba.Image=daca.Image;woodtype="CaveCrawler"end)
  12424. abca.MouseButton1Click:Connect(function()b_ba.Image=abca.Image;woodtype="LoneCave"end)
  12425. cbca.MouseButton1Click:Connect(function()b_ba.Image=cbca.Image;woodtype="Spooky"end)
  12426. _cca.MouseButton1Click:Connect(function()b_ba.Image=_cca.Image;woodtype="SpookyNeon"end)
  12427. b_ba.MouseButton1Click:Connect(function()if c_ba.Visible==false then c_ba.Visible=true else
  12428. c_ba.Visible=false end end)end)_baa.Name="fuckferry"_baa.Parent=__aa
  12429. _baa.BackgroundColor3=Color3.new(1,1,1)_baa.BorderSizePixel=0
  12430. _baa.Position=UDim2.new(0.23634322,0,0.69846499,0)_baa.Size=UDim2.new(0,200,0,50)
  12431. _baa.Style=Enum.ButtonStyle.RobloxRoundButton;_baa.Font=Enum.Font.Cartoon;_baa.Text="[FUVK FERRY LT 2]"
  12432. _baa.TextColor3=Color3.new(0,0,0)_baa.TextSize=20;_baa.TextWrapped=true
  12433. _baa.MouseButton1Down:connect(function()
  12434. abaa.Visible=true end)abaa.Name="fuckfrry"abaa.Parent=dbc;abaa.Active=true
  12435. abaa.BackgroundColor3=Color3.new(0.368627,0.368627,0.368627)abaa.BorderSizePixel=0
  12436. abaa.Position=UDim2.new(0.00779220788,0,0.379581153,0)abaa.Selectable=true;abaa.Size=UDim2.new(0,382,0,277)
  12437. abaa.Visible=false;bbaa.Name="drag"bbaa.Parent=abaa
  12438. bbaa.BackgroundColor3=Color3.new(0.898039,0.6,0)bbaa.BorderSizePixel=0;bbaa.Size=UDim2.new(0,382,0,21)
  12439. cbaa.Name="drag2"cbaa.Parent=abaa
  12440. cbaa.BackgroundColor3=Color3.new(1,0.666667,0)cbaa.BorderSizePixel=0
  12441. cbaa.Position=UDim2.new(0,0,0.0509501398,0)cbaa.Size=UDim2.new(0,382,0,48)dbaa.Name="exit"
  12442. dbaa.Parent=abaa;dbaa.BackgroundColor3=Color3.new(1,1,1)
  12443. dbaa.BackgroundTransparency=1;dbaa.Position=UDim2.new(0.929890513,0,0,0)
  12444. dbaa.Size=UDim2.new(0,28,0,21)dbaa.Font=Enum.Font.Cartoon;dbaa.Text="X"
  12445. dbaa.TextColor3=Color3.new(0.980392,0.980392,0.980392)dbaa.TextScaled=true;dbaa.TextSize=14
  12446. dbaa.TextStrokeColor3=Color3.new(1,1,1)dbaa.TextStrokeTransparency=2;dbaa.TextWrapped=true
  12447. dbaa.MouseButton1Down:connect(function()
  12448. abaa.Visible=false end)acaa.Name="copybase"acaa.Parent=abaa
  12449. acaa.BackgroundColor3=Color3.new(1,1,1)acaa.BorderSizePixel=0
  12450. acaa.Position=UDim2.new(0.665662587,0,0.495505214,0)acaa.Size=UDim2.new(0,120,0,36)
  12451. acaa.Style=Enum.ButtonStyle.RobloxRoundButton;acaa.Font=Enum.Font.Cartoon;acaa.Text="COPY BASE"
  12452. acaa.TextColor3=Color3.new(0,0,0)acaa.TextSize=20;acaa.TextWrapped=true
  12453. acaa.MouseButton1Down:connect(function()
  12454. player=game.Players.LocalPlayer;plr=bcaa.Text;pmds=game.Workspace.PlayerModels
  12455. PlaceR=game.ReplicatedStorage.PlaceStructure.ClientPlacedBlueprint
  12456. PlaceS=game.ReplicatedStorage.PlaceStructure.ClientPlacedStructure;Property=nil;MProperty=nil
  12457. for __ba,a_ba in
  12458. pairs(game.Workspace.Properties:GetChildren())do
  12459. if
  12460.  
  12461. a_ba:FindFirstChild("Owner")and a_ba.Owner.Value~=nil and a_ba.Owner.Value==game.Players[plr]then Property=a_ba.OriginSquare end end
  12462. for __ba,a_ba in
  12463. pairs(game.Workspace.Properties:GetChildren())do
  12464. if
  12465.  
  12466. a_ba:FindFirstChild("Owner")and a_ba.Owner.Value~=nil and a_ba.Owner.Value==game.Players.LocalPlayer then MProperty=a_ba.OriginSquare end end
  12467. function copypart(__ba)if __ba:FindFirstChild("MainCFrame")then Cframe=__ba.MainCFrame.Value else
  12468. Cframe=__ba.PrimaryPart.CFrame end;X=
  12469. Property.Position.X-Cframe.X
  12470. Y=Property.Position.Y-Cframe.Y;Z=Property.Position.Z-Cframe.Z
  12471. PlaceR:FireServer(__ba.ItemName.Value,
  12472. (
  12473. CFrame.new(MProperty.Position.X,MProperty.Position.Y,MProperty.Position.Z)*CFrame.Angles(Cframe:toEulerAnglesXYZ()))-Vector3.new(X,Y,Z),game.Players.LocalPlayer)wait()end
  12474. for __ba,a_ba in pairs(pmds:GetChildren())do
  12475. if
  12476.  
  12477. a_ba:FindFirstChild("Owner")and
  12478. a_ba.Owner.Value~=nil and
  12479. a_ba.Owner.Value==game.Players[plr]and
  12480. a_ba:FindFirstChild("ItemName")and
  12481. a_ba:FindFirstChild("Type")and
  12482. (a_ba.PrimaryPart~=nil or a_ba:FindFirstChild("MainCFrame"))then copypart(a_ba)end end end)bcaa.Name="bangsad"bcaa.Parent=abaa
  12483. bcaa.BackgroundColor3=Color3.new(0.254902,0.254902,0.254902)bcaa.BorderSizePixel=0
  12484. bcaa.Position=UDim2.new(0.29842934,0,0.321041793,0)bcaa.Size=UDim2.new(0,154,0,32)
  12485. bcaa.Font=Enum.Font.GothamBold
  12486. bcaa.PlaceholderColor3=Color3.new(0.698039,0.698039,0.698039)bcaa.Text="PLAYER HERE"bcaa.TextColor3=Color3.new(1,1,1)
  12487. bcaa.TextSize=14;bcaa.TextWrapped=true;ccaa.Name="wipebase"ccaa.Parent=abaa
  12488. ccaa.BackgroundColor3=Color3.new(1,1,1)ccaa.BorderSizePixel=0
  12489. ccaa.Position=UDim2.new(0.0190657377,0,0.495505184,0)ccaa.Size=UDim2.new(0,120,0,36)
  12490. ccaa.Style=Enum.ButtonStyle.RobloxRoundButton;ccaa.Font=Enum.Font.Cartoon;ccaa.Text="WIPE BASE"
  12491. ccaa.TextColor3=Color3.new(0,0,0)ccaa.TextSize=20;ccaa.TextWrapped=true
  12492. ccaa.MouseButton1Down:Connect(function()
  12493. player=game.Players.LocalPlayer;plr=bcaa.Text;pmds=game.Workspace.PlayerModels
  12494. PlaceR=game.ReplicatedStorage.Interaction.DestroyStructure
  12495. for __ba,a_ba in pairs(pmds:GetChildren())do
  12496. if
  12497.  
  12498. a_ba:FindFirstChild("Owner")and
  12499. a_ba.Owner.Value~=nil and
  12500. a_ba.Owner.Value==game.Players[plr]and
  12501. a_ba:FindFirstChild("ItemName")and
  12502. a_ba:FindFirstChild("Type")and
  12503. (a_ba.PrimaryPart~=nil or a_ba:FindFirstChild("MainCFrame"))then PlaceR:FireServer(a_ba)end end end)dcaa.Name="tpaxe"dcaa.Parent=abaa
  12504. dcaa.BackgroundColor3=Color3.new(1,1,1)dcaa.BorderSizePixel=0
  12505. dcaa.Position=UDim2.new(0.0190657377,0,0.627104402,0)dcaa.Size=UDim2.new(0,120,0,36)
  12506. dcaa.Style=Enum.ButtonStyle.RobloxRoundButton;dcaa.Font=Enum.Font.Cartoon;dcaa.Text="AXE"
  12507. dcaa.TextColor3=Color3.new(0,0,0)dcaa.TextSize=20;dcaa.TextWrapped=true
  12508. dcaa.MouseButton1Down:connect(function()
  12509. player=game.Players.LocalPlayer;local __ba=bcaa.Text;local a_ba="Tool"local b_ba=0
  12510. for c_ba,d_ba in
  12511. pairs(game.Workspace.PlayerModels:GetChildren())do
  12512. if d_ba:FindFirstChild("Owner")and
  12513. tostring(d_ba.Owner.Value)==__ba then
  12514. if a_ba~="TreeClass"then
  12515. if
  12516.  
  12517. d_ba:FindFirstChild("Type")and tostring(d_ba.Type.Value)==a_ba then
  12518. if d_ba.PrimaryPart then
  12519. d_ba.PrimaryPart.CFrame=
  12520. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  12521. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(d_ba.PrimaryPart)
  12522. d_ba.PrimaryPart.CFrame=
  12523. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  12524. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(d_ba.PrimaryPart)
  12525. d_ba.PrimaryPart.CFrame=
  12526. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)b_ba=b_ba+1;if b_ba==10 then b_ba=0;wait(0.1)end end end else
  12527. if d_ba:FindFirstChild("TreeClass")then
  12528. if d_ba.WoodSection then
  12529. d_ba.WoodSection.CFrame=
  12530. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  12531. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(d_ba.WoodSection)
  12532. d_ba.WoodSection.CFrame=
  12533. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  12534. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(d_ba.WoodSection)
  12535. d_ba.WoodSection.CFrame=
  12536. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)b_ba=b_ba+1;if b_ba==10 then b_ba=0;wait(0.1)end end end end end end end)_daa.Name="tpplanks"_daa.Parent=abaa
  12537. _daa.BackgroundColor3=Color3.new(1,1,1)_daa.BorderSizePixel=0
  12538. _daa.Position=UDim2.new(0.665662587,0,0.623494327,0)_daa.Size=UDim2.new(0,120,0,36)
  12539. _daa.Style=Enum.ButtonStyle.RobloxRoundButton;_daa.Font=Enum.Font.Cartoon;_daa.Text="PLANKS"
  12540. _daa.TextColor3=Color3.new(0,0,0)_daa.TextSize=20;_daa.TextWrapped=true
  12541. _daa.MouseButton1Down:connect(function()
  12542. player=game.Players.LocalPlayer;local __ba=bcaa.Text;local a_ba="TreeClass"local b_ba=0
  12543. for c_ba,d_ba in
  12544. pairs(game.Workspace.PlayerModels:GetChildren())do
  12545. if d_ba:FindFirstChild("Owner")and
  12546. tostring(d_ba.Owner.Value)==__ba then
  12547. if a_ba~="TreeClass"then
  12548. if
  12549.  
  12550. d_ba:FindFirstChild("Type")and tostring(d_ba.Type.Value)==a_ba then
  12551. if d_ba.PrimaryPart then
  12552. d_ba.PrimaryPart.CFrame=
  12553. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  12554. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(d_ba.PrimaryPart)
  12555. d_ba.PrimaryPart.CFrame=
  12556. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  12557. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(d_ba.PrimaryPart)
  12558. d_ba.PrimaryPart.CFrame=
  12559. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)b_ba=b_ba+1;if b_ba==10 then b_ba=0;wait(0.1)end end end else
  12560. if d_ba:FindFirstChild("TreeClass")then
  12561. if d_ba.WoodSection then
  12562. d_ba.WoodSection.CFrame=
  12563. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  12564. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(d_ba.WoodSection)
  12565. d_ba.WoodSection.CFrame=
  12566. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  12567. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(d_ba.WoodSection)
  12568. d_ba.WoodSection.CFrame=
  12569. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)b_ba=b_ba+1;if b_ba==10 then b_ba=0;wait(0.1)end end end end end end end)adaa.Name="gift"adaa.Parent=abaa
  12570. adaa.BackgroundColor3=Color3.new(1,1,1)adaa.BorderSizePixel=0
  12571. adaa.Position=UDim2.new(0.0190657377,0,0.757068276,0)adaa.Size=UDim2.new(0,120,0,36)
  12572. adaa.Style=Enum.ButtonStyle.RobloxRoundButton;adaa.Font=Enum.Font.Cartoon;adaa.Text="GIFTS"
  12573. adaa.TextColor3=Color3.new(0,0,0)adaa.TextSize=20;adaa.TextWrapped=true
  12574. adaa.MouseButton1Down:connect(function()
  12575. player=game.Players.LocalPlayer;local __ba=bcaa.Text;local a_ba="Gift"local b_ba=0
  12576. for c_ba,d_ba in
  12577. pairs(game.Workspace.PlayerModels:GetChildren())do
  12578. if d_ba:FindFirstChild("Owner")and
  12579. tostring(d_ba.Owner.Value)==__ba then
  12580. if a_ba~="TreeClass"then
  12581. if
  12582.  
  12583. d_ba:FindFirstChild("Type")and tostring(d_ba.Type.Value)==a_ba then
  12584. if d_ba.PrimaryPart then
  12585. d_ba.PrimaryPart.CFrame=
  12586. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  12587. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(d_ba.PrimaryPart)
  12588. d_ba.PrimaryPart.CFrame=
  12589. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  12590. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(d_ba.PrimaryPart)
  12591. d_ba.PrimaryPart.CFrame=
  12592. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)b_ba=b_ba+1;if b_ba==10 then b_ba=0;wait(0.1)end end end else
  12593. if d_ba:FindFirstChild("TreeClass")then
  12594. if d_ba.WoodSection then
  12595. d_ba.WoodSection.CFrame=
  12596. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  12597. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(d_ba.WoodSection)
  12598. d_ba.WoodSection.CFrame=
  12599. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  12600. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(d_ba.WoodSection)
  12601. d_ba.WoodSection.CFrame=
  12602. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)b_ba=b_ba+1;if b_ba==10 then b_ba=0;wait(0.1)end end end end end end end)bdaa.Name="title"bdaa.Parent=abaa;bdaa.Active=true
  12603. bdaa.BackgroundColor3=Color3.new(1,1,1)bdaa.BackgroundTransparency=1;bdaa.BorderSizePixel=0
  12604. bdaa.Position=UDim2.new(0.0337662324,0,0.0900621116,0)bdaa.Selectable=true;bdaa.Size=UDim2.new(0,366,0,29)
  12605. bdaa.Font=Enum.Font.Cartoon;bdaa.Text="FUVK FERRY LT 2"bdaa.TextColor3=Color3.new(1,1,1)
  12606. bdaa.TextScaled=true;bdaa.TextSize=15
  12607. bdaa.TextStrokeColor3=Color3.new(0.141176,0.188235,0.282353)bdaa.TextStrokeTransparency=0;bdaa.TextTransparency=1
  12608. bdaa.TextWrapped=true;cdaa.Parent=abaa;cdaa.BackgroundColor3=Color3.new(1,1,1)
  12609. cdaa.BackgroundTransparency=1;cdaa.BorderSizePixel=0
  12610. cdaa.Position=UDim2.new(0.366492152,0,0.884476542,0)cdaa.Size=UDim2.new(0,128,0,26)
  12611. cdaa.Font=Enum.Font.Cartoon;cdaa.Text="Coming Soon~"cdaa.TextColor3=Color3.new(1,1,1)
  12612. cdaa.TextSize=25;ddaa.Name="loose"ddaa.Parent=abaa
  12613. ddaa.BackgroundColor3=Color3.new(1,1,1)ddaa.BorderSizePixel=0
  12614. ddaa.Position=UDim2.new(0.665662587,0,0.753458261,0)ddaa.Size=UDim2.new(0,120,0,36)
  12615. ddaa.Style=Enum.ButtonStyle.RobloxRoundButton;ddaa.Font=Enum.Font.Cartoon;ddaa.Text="LOOSE"
  12616. ddaa.TextColor3=Color3.new(0,0,0)ddaa.TextSize=20;ddaa.TextWrapped=true
  12617. ddaa.MouseButton1Down:connect(function()
  12618. player=game.Players.LocalPlayer;local __ba=bcaa.Text;local a_ba="Loose Item"local b_ba=0
  12619. for c_ba,d_ba in
  12620. pairs(game.Workspace.PlayerModels:GetChildren())do
  12621. if d_ba:FindFirstChild("Owner")and
  12622. tostring(d_ba.Owner.Value)==__ba then
  12623. if a_ba~="TreeClass"then
  12624. if
  12625.  
  12626. d_ba:FindFirstChild("Type")and tostring(d_ba.Type.Value)==a_ba then
  12627. if d_ba.PrimaryPart then
  12628. d_ba.PrimaryPart.CFrame=
  12629. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  12630. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(d_ba.PrimaryPart)
  12631. d_ba.PrimaryPart.CFrame=
  12632. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  12633. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(d_ba.PrimaryPart)
  12634. d_ba.PrimaryPart.CFrame=
  12635. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)b_ba=b_ba+1;if b_ba==10 then b_ba=0;wait(0.1)end end end else
  12636. if d_ba:FindFirstChild("TreeClass")then
  12637. if d_ba.WoodSection then
  12638. d_ba.WoodSection.CFrame=
  12639. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  12640. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(d_ba.WoodSection)
  12641. d_ba.WoodSection.CFrame=
  12642. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  12643. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(d_ba.WoodSection)
  12644. d_ba.WoodSection.CFrame=
  12645. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)b_ba=b_ba+1;if b_ba==10 then b_ba=0;wait(0.1)end end end end end end end)
  12646. end)
  12647.  
  12648. TpClick.Name = "TpClick"
  12649. TpClick.Parent = Frame
  12650. TpClick.BackgroundColor3 = Color3.new(0, 0, 0)
  12651. TpClick.Position = UDim2.new(0.14009662, 0, 0.455696195, 0)
  12652. TpClick.Size = UDim2.new(0, 102, 0, 83)
  12653. TpClick.Font = Enum.Font.SourceSans
  12654. TpClick.Text = "TpClick"
  12655. TpClick.TextColor3 = Color3.new(0, 0, 1)
  12656. TpClick.TextScaled = true
  12657. TpClick.TextSize = 14
  12658. TpClick.TextWrapped = true
  12659. TPClick.MouseButton1Down:connect(function()
  12660. local Player = game.Players.LocalPlayer
  12661. local Mouse = Player:GetMouse()
  12662. local UserInputService = game:GetService('UserInputService')
  12663.  
  12664. local HoldingControl = false
  12665.  
  12666. Mouse.Button1Down:connect(function()
  12667. if HoldingControl then
  12668. Player.Character:MoveTo(Mouse.Hit.p)
  12669. end
  12670. end)
  12671.  
  12672. UserInputService.InputBegan:connect(function(Input, Processed)
  12673. if Input.UserInputType == Enum.UserInputType.Keyboard then
  12674. if Input.KeyCode == Enum.KeyCode.LeftControl then
  12675. HoldingControl = true
  12676. elseif Input.KeyCode == Enum.KeyCode.RightControl then
  12677. HoldingControl = true
  12678. end
  12679. end
  12680. end)
  12681.  
  12682. UserInputService.InputEnded:connect(function(Input, Processed)
  12683. if Input.UserInputType == Enum.UserInputType.Keyboard then
  12684. if Input.KeyCode == Enum.KeyCode.LeftControl then
  12685. HoldingControl = false
  12686. elseif Input.KeyCode == Enum.KeyCode.RightControl then
  12687. HoldingControl = false
  12688. end
  12689. end
  12690. end)
  12691. end)
  12692.  
  12693. Close.Name = "Close"
  12694. Close.Parent = Frame
  12695. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  12696. Close.BackgroundTransparency = 1
  12697. Close.Position = UDim2.new(0.892853022, 0, 0, 0)
  12698. Close.Size = UDim2.new(0, 44, 0, 28)
  12699. Close.Font = Enum.Font.SourceSans
  12700. Close.Text = "🎮"
  12701. Close.TextColor3 = Color3.new(0, 0, 0)
  12702. Close.TextScaled = true
  12703. Close.TextSize = 14
  12704. Close.TextWrapped = true
  12705.  
  12706. Open.Name = "Open"
  12707. Open.Parent = ScreenGui
  12708. Open.BackgroundColor3 = Color3.new(1, 1, 1)
  12709. Open.BackgroundTransparency = 1
  12710. Open.Position = UDim2.new(0, 0, 0.687374771, 0)
  12711. Open.Size = UDim2.new(0, 78, 0, 50)
  12712. Open.Font = Enum.Font.SourceSans
  12713. Open.Text = "⚽"
  12714. Open.TextColor3 = Color3.new(0, 0, 0)
  12715. Open.TextScaled = true
  12716. Open.TextSize = 14
  12717. Open.TextWrapped = true
  12718. -- Scripts:
  12719. function SCRIPT_FHRG67_FAKESCRIPT() -- Frame.Script
  12720. local script = Instance.new('Script')
  12721. script.Parent = Frame
  12722. local frame = script.Parent
  12723. local close = frame:WaitForChild("Close")
  12724. local open = frame.Parent:WaitForChild("Open")
  12725.  
  12726. open.MouseButton1Click:Connect(function()
  12727. open.Visible = false
  12728. frame.Visible = true
  12729. end)
  12730.  
  12731. close.MouseButton1Click:Connect(function()
  12732. open.Visible = true
  12733. frame.Visible = false
  12734. end)
  12735.  
  12736. end
  12737. coroutine.resume(coroutine.create(SCRIPT_FHRG67_FAKESCRIPT))
  12738. function SCRIPT_BSOB78_FAKESCRIPT() -- Open.LocalScript
  12739. local script = Instance.new('LocalScript')
  12740. script.Parent = Open
  12741. local frame = script.Parent.Parent.Frame
  12742. local open = false
  12743.  
  12744. script.Parent.MouseButton1Click:connect(function()
  12745. if frame.Visible == false then
  12746. frame.Visible = true
  12747. else
  12748. frame.Visible = false
  12749. end
  12750. end)
  12751.  
  12752. end
  12753. coroutine.resume(coroutine.create(SCRIPT_BSOB78_FAKESCRIPT))
Add Comment
Please, Sign In to add comment