Advertisement
Guest User

ReverseMenu v0.1Beta

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