Advertisement
mikwbm

LT2 limited gui - MikeTheNoob#8463

May 20th, 2019
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 92.14 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local title = Instance.new("TextLabel")
  7. local LT2clone = Instance.new("TextButton")
  8. local close = Instance.new("TextButton")
  9. local lt2gui2 = Instance.new("TextButton")
  10. --Properties:
  11. ScreenGui.Parent = game.CoreGui
  12.  
  13. Frame.Parent = ScreenGui
  14. Frame.Active = true
  15. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  16. Frame.Position = UDim2.new(0.724945128, 0, 0.66393441, 0)
  17. Frame.Selectable = true
  18. Frame.Size = UDim2.new(0, 226, 0, 165)
  19. Frame.Style = Enum.FrameStyle.RobloxRound
  20.  
  21. title.Name = "title"
  22. title.Parent = Frame
  23. title.BackgroundColor3 = Color3.new(0.282353, 0.282353, 0.282353)
  24. title.Position = UDim2.new(0.0770034119, 0, 0.0437346473, 0)
  25. title.Size = UDim2.new(0, 163, 0, 18)
  26. title.Font = Enum.Font.SourceSans
  27. title.Text = "LT2 gui V1 - made by mikwbm"
  28. title.TextColor3 = Color3.new(1, 0, 1)
  29. title.TextSize = 14
  30.  
  31. LT2clone.Name = "LT2clone"
  32. LT2clone.Parent = Frame
  33. LT2clone.BackgroundColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  34. LT2clone.Position = UDim2.new(0.122414954, 0, 0.274137139, 0)
  35. LT2clone.Size = UDim2.new(0, 143, 0, 29)
  36. LT2clone.Font = Enum.Font.SourceSans
  37. LT2clone.Text = "LT2 clone tool"
  38. LT2clone.TextColor3 = Color3.new(0.333333, 0.333333, 1)
  39. LT2clone.TextSize = 14
  40. LT2clone.MouseButton1Click:connect(function()
  41. local Character = game.Players.LocalPlayer.Character
  42. local Mouse = game.Players.LocalPlayer:GetMouse()
  43. local Land = nil
  44.  
  45. for i,v in pairs(game.Workspace.Properties:GetChildren()) do
  46. if v.Owner.Value == game.Players.LocalPlayer or v.Owner.Value == nil then
  47. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(v)
  48. break
  49. end
  50. end
  51.  
  52. for i,v in pairs(game.Workspace.Properties:GetChildren()) do
  53. if v.Owner.Value == game.Players.LocalPlayer then
  54. Land = v
  55. break
  56. end
  57. end
  58.  
  59. function Clone(Item)
  60. local Info = {}
  61. Info.Name = "Wire"
  62. Info.Type = Item
  63. Info.OtherInfo = game.ReplicatedStorage.Purchasables.WireObjects.Wire.OtherInfo
  64.  
  65. local Points = {Land.OriginSquare.Position - Vector3.new(0,100,0), Land.OriginSquare.Position - Vector3.new(0,100,0)}
  66. game.ReplicatedStorage.PlaceStructure.ClientPlacedWire:FireServer(Info, Points)
  67. end
  68.  
  69. local Tool = Instance.new("Tool")
  70. Tool.Name = "Clone"
  71. Tool.RequiresHandle = false
  72. Tool.Parent = game.Players.LocalPlayer.Backpack
  73.  
  74. Tool.Activated:Connect(function()
  75. if Mouse.Target and Land then
  76. local Target = Mouse.Target
  77.  
  78. if Target.Parent:IsA("Model") and Target.Parent:FindFirstChild("Main") then
  79. Target = Target.Parent
  80. elseif Target.Parent.Parent:IsA("Model") and Target.Parent.Parent:FindFirstChild("Main") then
  81. Target = Target.Parent.Parent
  82. elseif Target.Parent:IsA("Model") and Target.Parent:FindFirstChild("CutEvent") then
  83. Target = Target.Parent
  84. end
  85.  
  86. Clone(Target)
  87. else
  88. for i,v in pairs(game.Workspace.Properties:GetChildren()) do
  89. if v.Owner.Value == game.Players.LocalPlayer or v.Owner.Value == nil then
  90. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(v)
  91. break
  92. end
  93. end
  94.  
  95. for i,v in pairs(game.Workspace.Properties:GetChildren()) do
  96. if v.Owner.Value == game.Players.LocalPlayer then
  97. Land = v
  98. break
  99. end
  100. end
  101. end
  102. end)
  103. end)
  104.  
  105.  
  106. close.Name = "close"
  107. close.Parent = Frame
  108. close.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  109. close.Position = UDim2.new(0.879828751, 0, -0.0458714366, 0)
  110. close.Size = UDim2.new(0, 32, 0, 26)
  111. close.Font = Enum.Font.SourceSans
  112. close.Text = "X"
  113. close.TextColor3 = Color3.new(1, 0, 0)
  114. close.TextSize = 14
  115. close.MouseButton1Click:connect(function()
  116. Frame.Visible = false
  117. end)
  118.  
  119. lt2gui2.Name = "lt2gui2"
  120. lt2gui2.Parent = Frame
  121. lt2gui2.BackgroundColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  122. lt2gui2.Position = UDim2.new(0.159520566, 0, 0.608848512, 0)
  123. lt2gui2.Size = UDim2.new(0, 143, 0, 29)
  124. lt2gui2.Font = Enum.Font.SourceSans
  125. lt2gui2.Text = "LT2 GUI Add On (V2)"
  126. lt2gui2.TextColor3 = Color3.new(0.333333, 0.333333, 1)
  127. lt2gui2.TextSize = 14
  128. lt2gui2.MouseButton1Click:connect(function()
  129. ------------------
  130. --CRACKED BY RTX/LiLWally
  131. --https://v3rmillion.net/member.php?action=profile&uid=516951
  132. ------------------
  133.  
  134. Found=false;Tool="None"Down=false
  135. Mouse=game.Players.LocalPlayer:GetMouse()
  136. Client=game.ReplicatedStorage.Interaction.ClientSetListPlayer;players=game.Players
  137. for bbab,cbab in pairs(players:GetPlayers())do if cbab.Name~=
  138. players.LocalPlayer.Name then
  139. Client:InvokeServer(players.LocalPlayer.BlacklistFolder,cbab,false)end end
  140. players.PlayerAdded:connect(function(bbab)
  141. Client:InvokeServer(players.LocalPlayer.BlacklistFolder,bbab,false)end)
  142. function move(bbab)
  143. bbab:MoveTo(
  144. game.Players.LocalPlayer.Character.Head.Position+Vector3.new(5,-4,5))bbab.WoodSection.Anchored=true;wait(2)
  145. bbab.WoodSection.Anchored=false end
  146. function tree(bbab,cbab)
  147. for dbab,_cab in pairs(bbab:GetChildren())do if _cab.Name=="TreeClass"then
  148. if
  149. _cab.Value==cbab then if Found==false then move(bbab)Found=true end end end end end;local dc_a=Instance.new("ScreenGui")
  150. local _d_a=Instance.new("TextButton")local ad_a=Instance.new("ImageLabel")
  151. local bd_a=Instance.new("TextLabel")local cd_a=Instance.new("Frame")
  152. local dd_a=Instance.new("Frame")local __aa=Instance.new("ImageLabel")
  153. local a_aa=Instance.new("ImageButton")local b_aa=Instance.new("TextLabel")
  154. local c_aa=Instance.new("Frame")local d_aa=Instance.new("ImageButton")
  155. local _aaa=Instance.new("TextLabel")local aaaa=Instance.new("ImageButton")
  156. local baaa=Instance.new("TextLabel")local caaa=Instance.new("ImageButton")
  157. local daaa=Instance.new("TextLabel")local _baa=Instance.new("ImageButton")
  158. local abaa=Instance.new("TextLabel")local bbaa=Instance.new("ImageButton")
  159. local cbaa=Instance.new("TextLabel")local dbaa=Instance.new("Frame")
  160. local _caa=Instance.new("Frame")local acaa=Instance.new("ImageLabel")
  161. local bcaa=Instance.new("ImageButton")local ccaa=Instance.new("TextLabel")
  162. local dcaa=Instance.new("Frame")local _daa=Instance.new("ImageButton")
  163. local adaa=Instance.new("TextLabel")local bdaa=Instance.new("ImageButton")
  164. local cdaa=Instance.new("TextLabel")local ddaa=Instance.new("ImageButton")
  165. local __ba=Instance.new("TextLabel")local a_ba=Instance.new("ImageButton")
  166. local b_ba=Instance.new("TextLabel")local c_ba=Instance.new("ImageButton")
  167. local d_ba=Instance.new("TextLabel")local _aba=Instance.new("Frame")
  168. local aaba=Instance.new("Frame")local baba=Instance.new("Frame")
  169. local caba=Instance.new("ImageLabel")local daba=Instance.new("TextLabel")
  170. local _bba=Instance.new("TextLabel")local abba=Instance.new("TextLabel")
  171. local bbba=Instance.new("ImageButton")local cbba=Instance.new("TextLabel")
  172. local dbba=Instance.new("Frame")local _cba=Instance.new("Frame")
  173. local acba=Instance.new("Frame")local bcba=Instance.new("ImageLabel")
  174. local ccba=Instance.new("ImageButton")local dcba=Instance.new("TextLabel")
  175. local _dba=Instance.new("ImageButton")local adba=Instance.new("TextLabel")
  176. local bdba=Instance.new("ImageButton")local cdba=Instance.new("TextLabel")
  177. local ddba=Instance.new("ImageButton")local __ca=Instance.new("TextLabel")
  178. local a_ca=Instance.new("ImageButton")local b_ca=Instance.new("TextLabel")
  179. local c_ca=Instance.new("ImageLabel")local d_ca=Instance.new("TextBox")
  180. local _aca=Instance.new("ImageButton")local aaca=Instance.new("TextLabel")
  181. local baca=Instance.new("ImageButton")local caca=Instance.new("TextLabel")
  182. local daca=Instance.new("ImageButton")local _bca=Instance.new("TextLabel")
  183. local abca=Instance.new("ImageButton")local bbca=Instance.new("TextLabel")
  184. local cbca=Instance.new("ImageButton")local dbca=Instance.new("TextLabel")
  185. local _cca=Instance.new("Frame")local acca=Instance.new("Frame")
  186. local bcca=Instance.new("Frame")local ccca=Instance.new("ImageLabel")
  187. local dcca=Instance.new("ImageButton")local _dca=Instance.new("TextLabel")
  188. local adca=Instance.new("TextLabel")local bdca=Instance.new("ImageButton")
  189. local cdca=Instance.new("TextLabel")local ddca=Instance.new("ImageButton")
  190. local __da=Instance.new("TextLabel")local a_da=Instance.new("ImageButton")
  191. local b_da=Instance.new("TextLabel")local c_da=Instance.new("ImageButton")
  192. local d_da=Instance.new("TextLabel")local _ada=Instance.new("ImageButton")
  193. local aada=Instance.new("TextLabel")local bada=Instance.new("ImageButton")
  194. local cada=Instance.new("TextLabel")local dada=Instance.new("ImageButton")
  195. local _bda=Instance.new("TextLabel")local abda=Instance.new("TextButton")
  196. local bbda=Instance.new("ImageLabel")local cbda=Instance.new("TextLabel")
  197. local dbda=Instance.new("TextButton")local _cda=Instance.new("ImageLabel")
  198. local acda=Instance.new("TextLabel")local bcda=Instance.new("TextButton")
  199. local ccda=Instance.new("ImageLabel")local dcda=Instance.new("TextLabel")
  200. local _dda=Instance.new("TextButton")local adda=Instance.new("ImageLabel")
  201. local bdda=Instance.new("TextLabel")local cdda=Instance.new("Frame")
  202. local ddda=Instance.new("Frame")local ___b=Instance.new("Frame")
  203. local a__b=Instance.new("ImageLabel")local b__b=Instance.new("ImageButton")
  204. local c__b=Instance.new("TextLabel")local d__b=Instance.new("ImageButton")
  205. local _a_b=Instance.new("TextLabel")local aa_b=Instance.new("ImageLabel")
  206. local ba_b=Instance.new("TextBox")local ca_b=Instance.new("ImageLabel")
  207. local da_b=Instance.new("TextBox")local _b_b=Instance.new("Frame")
  208. local ab_b=Instance.new("Frame")local bb_b=Instance.new("Frame")
  209. local cb_b=Instance.new("ImageLabel")local db_b=Instance.new("ImageButton")
  210. local _c_b=Instance.new("TextLabel")local ac_b=Instance.new("ScrollingFrame")
  211. local bc_b=Instance.new("UIListLayout")local cc_b=Instance.new("TextLabel")
  212. local dc_b=Instance.new("TextLabel")local _d_b=Instance.new("TextLabel")
  213. local ad_b=Instance.new("TextLabel")local bd_b=Instance.new("TextLabel")
  214. local cd_b=Instance.new("TextLabel")local dd_b=Instance.new("TextLabel")
  215. local __ab=Instance.new("TextLabel")local a_ab=Instance.new("TextLabel")
  216. local b_ab=Instance.new("TextLabel")local c_ab=Instance.new("TextLabel")
  217. local d_ab=Instance.new("TextLabel")local _aab=Instance.new("TextLabel")
  218. local aaab=Instance.new("TextLabel")local baab=Instance.new("TextLabel")
  219. local caab=Instance.new("TextLabel")local daab=Instance.new("TextLabel")
  220. local _bab=Instance.new("TextLabel")local abab=game.Players.LocalPlayer
  221. game:GetService("StarterGui"):SetCore("SendNotification",{Title="Your Account :",Text=game.Players.LocalPlayer.Name})
  222. game:GetService("StarterGui"):SetCore("SendNotification",{Title="Checking Whitelist :",Text="Whitelisted"})dc_a.Name="FERRYLT2"dc_a.Parent=game.CoreGui;_d_a.Name="b2"
  223. _d_a.Parent=dc_a
  224. _d_a.BackgroundColor3=Color3.new(0.517647,0.517647,0.517647)_d_a.BorderSizePixel=0;_d_a.ClipsDescendants=true
  225. _d_a.Position=UDim2.new(-0.00200000009,0,0.529999971,0)_d_a.Selectable=false;_d_a.Size=UDim2.new(0,160,0,30)
  226. _d_a.Font=Enum.Font.SourceSansBold;_d_a.Text=""_d_a.TextColor3=Color3.new(1,1,1)
  227. _d_a.TextScaled=true;_d_a.TextSize=14;_d_a.TextStrokeTransparency=0.69999998807907
  228. _d_a.TextWrapped=true;ad_a.Parent=_d_a;ad_a.BackgroundColor3=Color3.new(1,1,1)
  229. ad_a.BackgroundTransparency=1;ad_a.Size=UDim2.new(0,20,0,20)ad_a.Visible=false
  230. ad_a.Image="rbxassetid://210453768"ad_a.ImageTransparency=0.20000000298023;bd_a.Parent=_d_a
  231. bd_a.BackgroundColor3=Color3.new(1,1,1)bd_a.BackgroundTransparency=1;bd_a.Size=UDim2.new(1,0,1,0)
  232. bd_a.ZIndex=2;bd_a.Font=Enum.Font.SourceSansBold;bd_a.Text="MAIN MENU"
  233. bd_a.TextColor3=Color3.new(1,1,1)bd_a.TextScaled=true;bd_a.TextSize=14
  234. bd_a.TextStrokeTransparency=0.69999998807907;bd_a.TextWrapped=true;cd_a.Name="woods"cd_a.Parent=dc_a
  235. cd_a.BackgroundColor3=Color3.new(0.301961,0.301961,0.301961)cd_a.BorderSizePixel=0
  236. cd_a.Position=UDim2.new(0.629000008,0,-1,0)cd_a.Size=UDim2.new(0,241,0,330)dd_a.Parent=cd_a
  237. dd_a.BackgroundColor3=Color3.new(0.270588,0.0901961,0.545098)dd_a.BorderSizePixel=0;dd_a.Size=UDim2.new(0,242,0,39)
  238. __aa.Name="WOOD MENU"__aa.Parent=cd_a;__aa.BackgroundColor3=Color3.new(1,1,1)
  239. __aa.BackgroundTransparency=1;__aa.Position=UDim2.new(0.103139281,0,0.0204323977,0)
  240. __aa.Size=UDim2.new(0,167,0,24)__aa.Image="rbxassetid://2978417973"a_aa.Name="minim6"a_aa.Parent=cd_a
  241. a_aa.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)a_aa.BackgroundTransparency=1;a_aa.BorderSizePixel=0;a_aa.Position=UDim2.new(0.900565624,0,
  242. -0.000636407116,0)
  243. a_aa.Size=UDim2.new(0,25,0,13)a_aa.Image="rbxassetid://2790389767"
  244. a_aa.ImageColor3=Color3.new(0.466667,0.392157,0.87451)a_aa.ScaleType=Enum.ScaleType.Slice
  245. a_aa.SliceCenter=Rect.new(8,8,248,248)b_aa.Name="minim5"b_aa.Parent=a_aa
  246. b_aa.AnchorPoint=Vector2.new(0.5,0.5)b_aa.BackgroundTransparency=1
  247. b_aa.Position=UDim2.new(0.494003624,0,0.5,0)b_aa.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  248. b_aa.Font=Enum.Font.Cartoon;b_aa.Text="-"b_aa.TextColor3=Color3.new(0,0,0)
  249. b_aa.TextSize=21;c_aa.Parent=cd_a
  250. c_aa.BackgroundColor3=Color3.new(0.270588,0.0901961,0.545098)c_aa.BorderSizePixel=0
  251. c_aa.Position=UDim2.new(-0.00414937781,0,0.881818175,0)c_aa.Size=UDim2.new(0,242,0,39)d_aa.Name="volcano"
  252. d_aa.Parent=cd_a
  253. d_aa.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)d_aa.BackgroundTransparency=1;d_aa.BorderSizePixel=0
  254. d_aa.Position=UDim2.new(0.208800852,0,0.147848472,0)d_aa.Size=UDim2.new(0,143,0,41)
  255. d_aa.Image="rbxassetid://2790389767"d_aa.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  256. d_aa.ScaleType=Enum.ScaleType.Slice;d_aa.SliceCenter=Rect.new(8,8,248,248)
  257. d_aa.MouseButton1Down:connect(function()for bbab,cbab in
  258. pairs(game.Workspace.LogModels:GetChildren())do cut(cbab,"Volcano")end end)_aaa.Name="volcanotext"_aaa.Parent=d_aa
  259. _aaa.AnchorPoint=Vector2.new(0.5,0.5)_aaa.BackgroundTransparency=1
  260. _aaa.Position=UDim2.new(0.494003624,0,0.5,0)_aaa.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  261. _aaa.Font=Enum.Font.Cartoon;_aaa.Text="VOLCANO"_aaa.TextColor3=Color3.new(0,0,0)
  262. _aaa.TextSize=25;aaaa.Name="palm"aaaa.Parent=cd_a
  263. aaaa.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)aaaa.BackgroundTransparency=1;aaaa.BorderSizePixel=0
  264. aaaa.Position=UDim2.new(0.204651475,0,0.293303013,0)aaaa.Size=UDim2.new(0,143,0,41)
  265. aaaa.Image="rbxassetid://2790389767"aaaa.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  266. aaaa.ScaleType=Enum.ScaleType.Slice;aaaa.SliceCenter=Rect.new(8,8,248,248)
  267. aaaa.MouseButton1Down:connect(function()for bbab,cbab in
  268. pairs(game.Workspace.LogModels:GetChildren())do cut(cbab,"Palm")end end)baaa.Name="palm"baaa.Parent=aaaa
  269. baaa.AnchorPoint=Vector2.new(0.5,0.5)baaa.BackgroundTransparency=1
  270. baaa.Position=UDim2.new(0.494003624,0,0.5,0)baaa.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  271. baaa.Font=Enum.Font.Cartoon;baaa.Text="PALM"baaa.TextColor3=Color3.new(0,0,0)
  272. baaa.TextSize=25;caaa.Name="greenwood"caaa.Parent=cd_a
  273. caaa.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)caaa.BackgroundTransparency=1;caaa.BorderSizePixel=0
  274. caaa.Position=UDim2.new(0.204651475,0,0.435727239,0)caaa.Size=UDim2.new(0,143,0,41)
  275. caaa.Image="rbxassetid://2790389767"caaa.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  276. caaa.ScaleType=Enum.ScaleType.Slice;caaa.SliceCenter=Rect.new(8,8,248,248)
  277. caaa.MouseButton1Down:connect(function()
  278. for bbab,cbab in
  279. pairs(game.Workspace.LogModels:GetChildren())do cut(cbab,"GreenSwampy")end end)daaa.Name="greenwood"daaa.Parent=caaa
  280. daaa.AnchorPoint=Vector2.new(0.5,0.5)daaa.BackgroundTransparency=1
  281. daaa.Position=UDim2.new(0.494003624,0,0.5,0)daaa.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  282. daaa.Font=Enum.Font.Cartoon;daaa.Text="GREEN WOOD"daaa.TextColor3=Color3.new(0,0,0)
  283. daaa.TextSize=25;_baa.Name="goldenwood"_baa.Parent=cd_a
  284. _baa.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)_baa.BackgroundTransparency=1;_baa.BorderSizePixel=0
  285. _baa.Position=UDim2.new(0.200502098,0,0.578151464,0)_baa.Size=UDim2.new(0,143,0,41)
  286. _baa.Image="rbxassetid://2790389767"_baa.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  287. _baa.ScaleType=Enum.ScaleType.Slice;_baa.SliceCenter=Rect.new(8,8,248,248)
  288. _baa.MouseButton1Down:connect(function()
  289. for bbab,cbab in
  290. pairs(game.Workspace.LogModels:GetChildren())do cut(cbab,"GoldSwampy")end end)abaa.Name="goldenwood"abaa.Parent=_baa
  291. abaa.AnchorPoint=Vector2.new(0.5,0.5)abaa.BackgroundTransparency=1
  292. abaa.Position=UDim2.new(0.494003624,0,0.5,0)abaa.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  293. abaa.Font=Enum.Font.Cartoon;abaa.Text="GOLDEN WOOD"abaa.TextColor3=Color3.new(0,0,0)
  294. abaa.TextSize=24;bbaa.Name="bluewood"bbaa.Parent=cd_a
  295. bbaa.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)bbaa.BackgroundTransparency=1;bbaa.BorderSizePixel=0
  296. bbaa.Position=UDim2.new(0.19635272,0,0.726636291,0)bbaa.Size=UDim2.new(0,143,0,41)
  297. bbaa.Image="rbxassetid://2790389767"bbaa.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  298. bbaa.ScaleType=Enum.ScaleType.Slice;bbaa.SliceCenter=Rect.new(8,8,248,248)
  299. bbaa.MouseButton1Down:connect(function()
  300. for bbab,cbab in
  301. pairs(game.Workspace.LogModels:GetChildren())do cut(cbab,"CaveCrawler")end end)cbaa.Name="bluewood"cbaa.Parent=bbaa
  302. cbaa.AnchorPoint=Vector2.new(0.5,0.5)cbaa.BackgroundTransparency=1
  303. cbaa.Position=UDim2.new(0.494003624,0,0.5,0)cbaa.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  304. cbaa.Font=Enum.Font.Cartoon;cbaa.Text="BLUE WOOD"cbaa.TextColor3=Color3.new(0,0,0)
  305. cbaa.TextSize=25;dbaa.Name="bringmenu"dbaa.Parent=cd_a
  306. dbaa.BackgroundColor3=Color3.new(0.301961,0.301961,0.301961)dbaa.BorderSizePixel=0
  307. dbaa.Position=UDim2.new(-1.08387113,0,-0.00256957673,0)dbaa.Size=UDim2.new(0,241,0,330)_caa.Parent=dbaa
  308. _caa.BackgroundColor3=Color3.new(0.270588,0.0901961,0.545098)_caa.BorderSizePixel=0;_caa.Size=UDim2.new(0,242,0,39)
  309. acaa.Name="BRING MENU"acaa.Parent=dbaa;acaa.BackgroundColor3=Color3.new(1,1,1)
  310. acaa.BackgroundTransparency=1;acaa.Position=UDim2.new(0.103139281,0,0.0204323977,0)
  311. acaa.Size=UDim2.new(0,167,0,24)acaa.Image="rbxassetid://2978417876"bcaa.Name="minim7"bcaa.Parent=dbaa
  312. bcaa.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)bcaa.BackgroundTransparency=1;bcaa.BorderSizePixel=0;bcaa.Position=UDim2.new(0.900565624,0,
  313. -0.000636407116,0)
  314. bcaa.Size=UDim2.new(0,25,0,13)bcaa.Image="rbxassetid://2790389767"
  315. bcaa.ImageColor3=Color3.new(0.466667,0.392157,0.87451)bcaa.ScaleType=Enum.ScaleType.Slice
  316. bcaa.SliceCenter=Rect.new(8,8,248,248)ccaa.Name="minim7"ccaa.Parent=bcaa
  317. ccaa.AnchorPoint=Vector2.new(0.5,0.5)ccaa.BackgroundTransparency=1
  318. ccaa.Position=UDim2.new(0.494003624,0,0.5,0)ccaa.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  319. ccaa.Font=Enum.Font.Cartoon;ccaa.Text="-"ccaa.TextColor3=Color3.new(0,0,0)
  320. ccaa.TextSize=21;dcaa.Parent=dbaa
  321. dcaa.BackgroundColor3=Color3.new(0.270588,0.0901961,0.545098)dcaa.BorderSizePixel=0
  322. dcaa.Position=UDim2.new(-0.00414937781,0,0.881818175,0)dcaa.Size=UDim2.new(0,242,0,39)_daa.Name="volcano2"
  323. _daa.Parent=dbaa
  324. _daa.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)_daa.BackgroundTransparency=1;_daa.BorderSizePixel=0
  325. _daa.Position=UDim2.new(0.208800852,0,0.147848472,0)_daa.Size=UDim2.new(0,143,0,41)
  326. _daa.Image="rbxassetid://2790389767"_daa.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  327. _daa.ScaleType=Enum.ScaleType.Slice;_daa.SliceCenter=Rect.new(8,8,248,248)
  328. _daa.MouseButton1Down:connect(function()
  329. Found=false
  330. for bbab,cbab in pairs(game.Workspace:GetChildren())do if
  331. cbab.Name=="TreeRegion"then
  332. for dbab,_cab in pairs(cbab:GetChildren())do tree(_cab,"Volcano")end end end end)adaa.Name="volcanotext2"adaa.Parent=_daa
  333. adaa.AnchorPoint=Vector2.new(0.5,0.5)adaa.BackgroundTransparency=1
  334. adaa.Position=UDim2.new(0.494003624,0,0.5,0)adaa.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  335. adaa.Font=Enum.Font.Cartoon;adaa.Text="VOLCANO"adaa.TextColor3=Color3.new(0,0,0)
  336. adaa.TextSize=25;bdaa.Name="palm2"bdaa.Parent=dbaa
  337. bdaa.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)bdaa.BackgroundTransparency=1;bdaa.BorderSizePixel=0
  338. bdaa.Position=UDim2.new(0.204651475,0,0.293303013,0)bdaa.Size=UDim2.new(0,143,0,41)
  339. bdaa.Image="rbxassetid://2790389767"bdaa.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  340. bdaa.ScaleType=Enum.ScaleType.Slice;bdaa.SliceCenter=Rect.new(8,8,248,248)
  341. bdaa.MouseButton1Down:connect(function()
  342. Found=false
  343. for bbab,cbab in pairs(game.Workspace:GetChildren())do if
  344. cbab.Name=="TreeRegion"then
  345. for dbab,_cab in pairs(cbab:GetChildren())do tree(_cab,"Palm")end end end end)cdaa.Name="palm2"cdaa.Parent=bdaa
  346. cdaa.AnchorPoint=Vector2.new(0.5,0.5)cdaa.BackgroundTransparency=1
  347. cdaa.Position=UDim2.new(0.494003624,0,0.5,0)cdaa.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  348. cdaa.Font=Enum.Font.Cartoon;cdaa.Text="PALM"cdaa.TextColor3=Color3.new(0,0,0)
  349. cdaa.TextSize=25;ddaa.Name="greenwood2"ddaa.Parent=dbaa
  350. ddaa.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)ddaa.BackgroundTransparency=1;ddaa.BorderSizePixel=0
  351. ddaa.Position=UDim2.new(0.204651475,0,0.435727239,0)ddaa.Size=UDim2.new(0,143,0,41)
  352. ddaa.Image="rbxassetid://2790389767"ddaa.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  353. ddaa.ScaleType=Enum.ScaleType.Slice;ddaa.SliceCenter=Rect.new(8,8,248,248)
  354. ddaa.MouseButton1Down:connect(function()
  355. Found=false
  356. for bbab,cbab in pairs(game.Workspace:GetChildren())do if
  357. cbab.Name=="TreeRegion"then
  358. for dbab,_cab in pairs(cbab:GetChildren())do tree(_cab,"GreenSwampy")end end end end)__ba.Name="greenwood2"__ba.Parent=ddaa
  359. __ba.AnchorPoint=Vector2.new(0.5,0.5)__ba.BackgroundTransparency=1
  360. __ba.Position=UDim2.new(0.494003624,0,0.5,0)__ba.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  361. __ba.Font=Enum.Font.Cartoon;__ba.Text="GREEN WOOD"__ba.TextColor3=Color3.new(0,0,0)
  362. __ba.TextSize=25;a_ba.Name="goldenwood2"a_ba.Parent=dbaa
  363. a_ba.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)a_ba.BackgroundTransparency=1;a_ba.BorderSizePixel=0
  364. a_ba.Position=UDim2.new(0.200502098,0,0.578151464,0)a_ba.Size=UDim2.new(0,143,0,41)
  365. a_ba.Image="rbxassetid://2790389767"a_ba.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  366. a_ba.ScaleType=Enum.ScaleType.Slice;a_ba.SliceCenter=Rect.new(8,8,248,248)
  367. a_ba.MouseButton1Down:connect(function()
  368. Found=false
  369. for bbab,cbab in pairs(game.Workspace:GetChildren())do if
  370. cbab.Name=="TreeRegion"then
  371. for dbab,_cab in pairs(cbab:GetChildren())do tree(_cab,"GoldSwampy")end end end end)b_ba.Name="goldenwood2"b_ba.Parent=a_ba
  372. b_ba.AnchorPoint=Vector2.new(0.5,0.5)b_ba.BackgroundTransparency=1
  373. b_ba.Position=UDim2.new(0.494003624,0,0.5,0)b_ba.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  374. b_ba.Font=Enum.Font.Cartoon;b_ba.Text="GOLDEN WOOD"b_ba.TextColor3=Color3.new(0,0,0)
  375. b_ba.TextSize=24;c_ba.Name="bluewood2"c_ba.Parent=dbaa
  376. c_ba.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)c_ba.BackgroundTransparency=1;c_ba.BorderSizePixel=0
  377. c_ba.Position=UDim2.new(0.19635272,0,0.726636291,0)c_ba.Size=UDim2.new(0,143,0,41)
  378. c_ba.Image="rbxassetid://2790389767"c_ba.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  379. c_ba.ScaleType=Enum.ScaleType.Slice;c_ba.SliceCenter=Rect.new(8,8,248,248)
  380. c_ba.MouseButton1Down:connect(function()
  381. Found=false
  382. for bbab,cbab in pairs(game.Workspace:GetChildren())do if
  383. cbab.Name=="TreeRegion"then
  384. for dbab,_cab in pairs(cbab:GetChildren())do tree(_cab,"CavCrawler")end end end end)d_ba.Name="bluewood2"d_ba.Parent=c_ba
  385. d_ba.AnchorPoint=Vector2.new(0.5,0.5)d_ba.BackgroundTransparency=1
  386. d_ba.Position=UDim2.new(0.494003624,0,0.5,0)d_ba.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  387. d_ba.Font=Enum.Font.Cartoon;d_ba.Text="BLUE WOOD"d_ba.TextColor3=Color3.new(0,0,0)
  388. d_ba.TextSize=25;_aba.Name="creditsmenu"_aba.Parent=dc_a
  389. _aba.BackgroundColor3=Color3.new(0.301961,0.301961,0.301961)_aba.BorderSizePixel=0
  390. _aba.Position=UDim2.new(0.349999994,0,-1,0)_aba.Size=UDim2.new(0,447,0,330)aaba.Parent=_aba
  391. aaba.BackgroundColor3=Color3.new(0.270588,0.0901961,0.545098)aaba.BorderSizePixel=0;aaba.Size=UDim2.new(0,447,0,39)
  392. baba.Parent=_aba
  393. baba.BackgroundColor3=Color3.new(0.270588,0.0901961,0.545098)baba.BorderSizePixel=0
  394. baba.Position=UDim2.new(0,0,0.881818175,0)baba.Size=UDim2.new(0,447,0,39)caba.Name="CREDITS"
  395. caba.Parent=_aba;caba.BackgroundColor3=Color3.new(1,1,1)
  396. caba.BackgroundTransparency=1;caba.Position=UDim2.new(0.311592132,0,0.0204323977,0)
  397. caba.Size=UDim2.new(0,167,0,24)caba.Image="rbxassetid://2978329813"daba.Name="creditsnum2"
  398. daba.Parent=_aba;daba.BackgroundColor3=Color3.new(1,1,1)
  399. daba.BackgroundTransparency=1;daba.BorderSizePixel=0
  400. daba.Position=UDim2.new(0.185043171,0,0.367304683,0)daba.Size=UDim2.new(0,231,0,25)
  401. daba.Font=Enum.Font.Cartoon;daba.Text="-RBXLStealit[TEAM]"
  402. daba.TextColor3=Color3.new(1,1,1)daba.TextSize=25;daba.TextWrapped=true;_bba.Name="creditsnum3"
  403. _bba.Parent=_aba;_bba.BackgroundColor3=Color3.new(1,1,1)
  404. _bba.BackgroundTransparency=1;_bba.BorderSizePixel=0
  405. _bba.Position=UDim2.new(0.204970941,0,0.439242482,0)_bba.Size=UDim2.new(0,104,0,25)
  406. _bba.Font=Enum.Font.Cartoon;_bba.Text="-CharWar"_bba.TextColor3=Color3.new(1,1,1)
  407. _bba.TextSize=25;_bba.TextWrapped=true;abba.Name="creditsnum"abba.Parent=_aba
  408. abba.BackgroundColor3=Color3.new(1,1,1)abba.BackgroundTransparency=1;abba.BorderSizePixel=0
  409. abba.Position=UDim2.new(0.205177397,0,0.29457736,0)abba.Size=UDim2.new(0,269,0,25)
  410. abba.Font=Enum.Font.Cartoon;abba.Text="-FerryDeveloper [OWNER]"
  411. abba.TextColor3=Color3.new(1,1,1)abba.TextSize=25;abba.TextWrapped=true;bbba.Name="minim3"
  412. bbba.Parent=_aba
  413. bbba.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)bbba.BackgroundTransparency=1;bbba.BorderSizePixel=0;bbba.Position=UDim2.new(0.943400443,0,
  414. -0.000636407116,0)
  415. bbba.Size=UDim2.new(0,25,0,13)bbba.Image="rbxassetid://2790389767"
  416. bbba.ImageColor3=Color3.new(0.466667,0.392157,0.87451)bbba.ScaleType=Enum.ScaleType.Slice
  417. bbba.SliceCenter=Rect.new(8,8,248,248)cbba.Name="minim3"cbba.Parent=bbba
  418. cbba.AnchorPoint=Vector2.new(0.5,0.5)cbba.BackgroundTransparency=1
  419. cbba.Position=UDim2.new(0.494003624,0,0.5,0)cbba.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  420. cbba.Font=Enum.Font.Cartoon;cbba.Text="-"cbba.TextColor3=Color3.new(0,0,0)
  421. cbba.TextSize=21;dbba.Name="ferrymenu"dbba.Parent=dc_a
  422. dbba.BackgroundColor3=Color3.new(0.301961,0.301961,0.301961)dbba.BorderSizePixel=0
  423. dbba.Position=UDim2.new(0.349999994,0,-1,0)dbba.Size=UDim2.new(0,447,0,330)_cba.Parent=dbba
  424. _cba.BackgroundColor3=Color3.new(0.270588,0.0901961,0.545098)_cba.BorderSizePixel=0;_cba.Size=UDim2.new(0,447,0,39)
  425. acba.Parent=dbba
  426. acba.BackgroundColor3=Color3.new(0.270588,0.0901961,0.545098)acba.BorderSizePixel=0
  427. acba.Position=UDim2.new(0,0,0.881818175,0)acba.Size=UDim2.new(0,447,0,39)bcba.Name="FERRY MENU"
  428. bcba.Parent=dbba;bcba.BackgroundColor3=Color3.new(1,1,1)
  429. bcba.BackgroundTransparency=1;bcba.Position=UDim2.new(0.311592132,0,0.0204323977,0)
  430. bcba.Size=UDim2.new(0,167,0,24)bcba.Image="rbxassetid://2978304809"ccba.Name="planks"ccba.Parent=dbba
  431. ccba.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)ccba.BackgroundTransparency=1;ccba.BorderSizePixel=0
  432. ccba.Position=UDim2.new(0.0261745248,0,0.381181777,0)ccba.Size=UDim2.new(0,143,0,41)
  433. ccba.Image="rbxassetid://2790389767"ccba.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  434. ccba.ScaleType=Enum.ScaleType.Slice;ccba.SliceCenter=Rect.new(8,8,248,248)
  435. ccba.MouseButton1Click:connect(function()
  436. abab=game.Players.LocalPlayer;local bbab=d_ca.Text;local cbab="TreeClass"local dbab=0
  437. for _cab,acab in
  438. pairs(game.Workspace.PlayerModels:GetChildren())do
  439. if acab:FindFirstChild("Owner")and
  440. tostring(acab.Owner.Value)==bbab then
  441. if cbab~="TreeClass"then
  442. if
  443.  
  444. acab:FindFirstChild("Type")and tostring(acab.Type.Value)==cbab then
  445. if acab.PrimaryPart then
  446. acab.PrimaryPart.CFrame=
  447. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  448. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(acab.PrimaryPart)
  449. acab.PrimaryPart.CFrame=
  450. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  451. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(acab.PrimaryPart)
  452. acab.PrimaryPart.CFrame=
  453. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)dbab=dbab+1;if dbab==10 then dbab=0;wait(0.1)end end end else
  454. if acab:FindFirstChild("TreeClass")then
  455. if acab.WoodSection then
  456. acab.WoodSection.CFrame=
  457. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  458. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(acab.WoodSection)
  459. acab.WoodSection.CFrame=
  460. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  461. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(acab.WoodSection)
  462. acab.WoodSection.CFrame=
  463. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)dbab=dbab+1;if dbab==10 then dbab=0;wait(0.1)end end end end end end end)dcba.Name="plankstext"dcba.Parent=ccba
  464. dcba.AnchorPoint=Vector2.new(0.5,0.5)dcba.BackgroundTransparency=1
  465. dcba.Position=UDim2.new(0.494003624,0,0.5,0)dcba.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  466. dcba.Font=Enum.Font.Cartoon;dcba.Text="PLANKS"dcba.TextColor3=Color3.new(0,0,0)
  467. dcba.TextSize=25;_dba.Name="loose"_dba.Parent=dbba
  468. _dba.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)_dba.BackgroundTransparency=1;_dba.BorderSizePixel=0
  469. _dba.Position=UDim2.new(0.0261745248,0,0.532696962,0)_dba.Size=UDim2.new(0,143,0,41)
  470. _dba.Image="rbxassetid://2790389767"_dba.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  471. _dba.ScaleType=Enum.ScaleType.Slice;_dba.SliceCenter=Rect.new(8,8,248,248)
  472. _dba.MouseButton1Click:connect(function()
  473. abab=game.Players.LocalPlayer;local bbab=d_ca.Text;local cbab="Loose Item"local dbab=0
  474. for _cab,acab in
  475. pairs(game.Workspace.PlayerModels:GetChildren())do
  476. if acab:FindFirstChild("Owner")and
  477. tostring(acab.Owner.Value)==bbab then
  478. if cbab~="TreeClass"then
  479. if
  480.  
  481. acab:FindFirstChild("Type")and tostring(acab.Type.Value)==cbab then
  482. if acab.PrimaryPart then
  483. acab.PrimaryPart.CFrame=
  484. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  485. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(acab.PrimaryPart)
  486. acab.PrimaryPart.CFrame=
  487. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  488. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(acab.PrimaryPart)
  489. acab.PrimaryPart.CFrame=
  490. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)dbab=dbab+1;if dbab==10 then dbab=0;wait(0.1)end end end else
  491. if acab:FindFirstChild("TreeClass")then
  492. if acab.WoodSection then
  493. acab.WoodSection.CFrame=
  494. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  495. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(acab.WoodSection)
  496. acab.WoodSection.CFrame=
  497. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  498. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(acab.WoodSection)
  499. acab.WoodSection.CFrame=
  500. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)dbab=dbab+1;if dbab==10 then dbab=0;wait(0.1)end end end end end end end)adba.Name="loosetext"adba.Parent=_dba
  501. adba.AnchorPoint=Vector2.new(0.5,0.5)adba.BackgroundTransparency=1
  502. adba.Position=UDim2.new(0.494003624,0,0.5,0)adba.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  503. adba.Font=Enum.Font.Cartoon;adba.Text="LOOSE ITEM"adba.TextColor3=Color3.new(0,0,0)
  504. adba.TextSize=21;bdba.Name="vehicle"bdba.Parent=dbba
  505. bdba.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)bdba.BackgroundTransparency=1;bdba.BorderSizePixel=0
  506. bdba.Position=UDim2.new(0.0261745248,0,0.681181788,0)bdba.Size=UDim2.new(0,143,0,41)
  507. bdba.Image="rbxassetid://2790389767"bdba.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  508. bdba.ScaleType=Enum.ScaleType.Slice;bdba.SliceCenter=Rect.new(8,8,248,248)
  509. bdba.MouseButton1Click:connect(function()
  510. abab=game.Players.LocalPlayer;local bbab=d_ca.Text;local cbab="Vehicle"local dbab=0
  511. for _cab,acab in
  512. pairs(game.Workspace.PlayerModels:GetChildren())do
  513. if acab:FindFirstChild("Owner")and
  514. tostring(acab.Owner.Value)==bbab then
  515. if cbab~="TreeClass"then
  516. if
  517.  
  518. acab:FindFirstChild("Type")and tostring(acab.Type.Value)==cbab then
  519. if acab.PrimaryPart then
  520. acab.PrimaryPart.CFrame=
  521. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  522. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(acab.PrimaryPart)
  523. acab.PrimaryPart.CFrame=
  524. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  525. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(acab.PrimaryPart)
  526. acab.PrimaryPart.CFrame=
  527. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)dbab=dbab+1;if dbab==10 then dbab=0;wait(0.1)end end end else
  528. if acab:FindFirstChild("TreeClass")then
  529. if acab.WoodSection then
  530. acab.WoodSection.CFrame=
  531. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  532. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(acab.WoodSection)
  533. acab.WoodSection.CFrame=
  534. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  535. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(acab.WoodSection)
  536. acab.WoodSection.CFrame=
  537. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)dbab=dbab+1;if dbab==10 then dbab=0;wait(0.1)end end end end end end end)cdba.Name="vehicletext"cdba.Parent=bdba
  538. cdba.AnchorPoint=Vector2.new(0.5,0.5)cdba.BackgroundTransparency=1
  539. cdba.Position=UDim2.new(0.494003624,0,0.5,0)cdba.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  540. cdba.Font=Enum.Font.Cartoon;cdba.Text="VEHICLE"cdba.TextColor3=Color3.new(0,0,0)
  541. cdba.TextSize=21;ddba.Name="gift"ddba.Parent=dbba
  542. ddba.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)ddba.BackgroundTransparency=1;ddba.BorderSizePixel=0
  543. ddba.Position=UDim2.new(0.648098469,0,0.381181777,0)ddba.Size=UDim2.new(0,143,0,41)
  544. ddba.Image="rbxassetid://2790389767"ddba.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  545. ddba.ScaleType=Enum.ScaleType.Slice;ddba.SliceCenter=Rect.new(8,8,248,248)
  546. ddba.MouseButton1Click:connect(function()
  547. abab=game.Players.LocalPlayer;local bbab=d_ca.Text;local cbab="Gift"local dbab=0
  548. for _cab,acab in
  549. pairs(game.Workspace.PlayerModels:GetChildren())do
  550. if acab:FindFirstChild("Owner")and
  551. tostring(acab.Owner.Value)==bbab then
  552. if cbab~="TreeClass"then
  553. if
  554.  
  555. acab:FindFirstChild("Type")and tostring(acab.Type.Value)==cbab then
  556. if acab.PrimaryPart then
  557. acab.PrimaryPart.CFrame=
  558. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  559. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(acab.PrimaryPart)
  560. acab.PrimaryPart.CFrame=
  561. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  562. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(acab.PrimaryPart)
  563. acab.PrimaryPart.CFrame=
  564. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)dbab=dbab+1;if dbab==10 then dbab=0;wait(0.1)end end end else
  565. if acab:FindFirstChild("TreeClass")then
  566. if acab.WoodSection then
  567. acab.WoodSection.CFrame=
  568. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  569. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(acab.WoodSection)
  570. acab.WoodSection.CFrame=
  571. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  572. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(acab.WoodSection)
  573. acab.WoodSection.CFrame=
  574. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)dbab=dbab+1;if dbab==10 then dbab=0;wait(0.1)end end end end end end end)__ca.Name="gifttext"__ca.Parent=ddba
  575. __ca.AnchorPoint=Vector2.new(0.5,0.5)__ca.BackgroundTransparency=1
  576. __ca.Position=UDim2.new(0.494003624,0,0.5,0)__ca.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  577. __ca.Font=Enum.Font.Cartoon;__ca.Text="GIFT"__ca.TextColor3=Color3.new(0,0,0)
  578. __ca.TextSize=25;a_ca.Name="axe"a_ca.Parent=dbba
  579. a_ca.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)a_ca.BackgroundTransparency=1;a_ca.BorderSizePixel=0
  580. a_ca.Position=UDim2.new(0.648098469,0,0.532696962,0)a_ca.Size=UDim2.new(0,143,0,41)
  581. a_ca.Image="rbxassetid://2790389767"a_ca.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  582. a_ca.ScaleType=Enum.ScaleType.Slice;a_ca.SliceCenter=Rect.new(8,8,248,248)
  583. a_ca.MouseButton1Click:connect(function()
  584. abab=game.Players.LocalPlayer;local bbab=d_ca.Text;local cbab="Tool"local dbab=0
  585. for _cab,acab in
  586. pairs(game.Workspace.PlayerModels:GetChildren())do
  587. if acab:FindFirstChild("Owner")and
  588. tostring(acab.Owner.Value)==bbab then
  589. if cbab~="TreeClass"then
  590. if
  591.  
  592. acab:FindFirstChild("Type")and tostring(acab.Type.Value)==cbab then
  593. if acab.PrimaryPart then
  594. acab.PrimaryPart.CFrame=
  595. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  596. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(acab.PrimaryPart)
  597. acab.PrimaryPart.CFrame=
  598. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  599. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(acab.PrimaryPart)
  600. acab.PrimaryPart.CFrame=
  601. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)dbab=dbab+1;if dbab==10 then dbab=0;wait(0.1)end end end else
  602. if acab:FindFirstChild("TreeClass")then
  603. if acab.WoodSection then
  604. acab.WoodSection.CFrame=
  605. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  606. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(acab.WoodSection)
  607. acab.WoodSection.CFrame=
  608. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  609. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(acab.WoodSection)
  610. acab.WoodSection.CFrame=
  611. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)dbab=dbab+1;if dbab==10 then dbab=0;wait(0.1)end end end end end end end)b_ca.Name="axetext"b_ca.Parent=a_ca
  612. b_ca.AnchorPoint=Vector2.new(0.5,0.5)b_ca.BackgroundTransparency=1
  613. b_ca.Position=UDim2.new(0.494003624,0,0.5,0)b_ca.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  614. b_ca.Font=Enum.Font.Cartoon;b_ca.Text="AXE"b_ca.TextColor3=Color3.new(0,0,0)
  615. b_ca.TextSize=25;c_ca.Name="ayoh"c_ca.Parent=dbba
  616. c_ca.BackgroundColor3=Color3.new(0.364706,0.196078,0.65098)c_ca.BackgroundTransparency=1
  617. c_ca.Position=UDim2.new(0.277404934,0,0.224242419,0)c_ca.Size=UDim2.new(0,196,0,45)
  618. c_ca.Image="rbxassetid://2790389767"c_ca.ImageColor3=Color3.new(0.364706,0.196078,0.65098)
  619. c_ca.ScaleType=Enum.ScaleType.Slice;c_ca.SliceCenter=Rect.new(8,8,248,248)d_ca.Name="Bangsad"
  620. d_ca.Parent=c_ca;d_ca.AnchorPoint=Vector2.new(0.5,0.5)
  621. d_ca.BackgroundTransparency=1;d_ca.Position=UDim2.new(0.5,0,0.5,0)
  622. d_ca.Size=UDim2.new(1,0,0.899999976,0)d_ca.Font=Enum.Font.Cartoon;d_ca.Text="PLAYERS NAME"
  623. d_ca.TextColor3=Color3.new(1,1,1)d_ca.TextSize=25;_aca.Name="wipebase"_aca.Parent=dbba
  624. _aca.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)_aca.BackgroundTransparency=1;_aca.BorderSizePixel=0
  625. _aca.Position=UDim2.new(0.724161029,0,0.890272677,0)_aca.Size=UDim2.new(0,109,0,33)
  626. _aca.Image="rbxassetid://2790389767"_aca.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  627. _aca.ScaleType=Enum.ScaleType.Slice;_aca.SliceCenter=Rect.new(8,8,248,248)
  628. _aca.MouseButton1Click:Connect(function()
  629. abab=game.Players.LocalPlayer;plr=d_ca.Text;pmds=game.Workspace.PlayerModels
  630. PlaceR=game.ReplicatedStorage.Interaction.DestroyStructure
  631. for bbab,cbab in pairs(pmds:GetChildren())do
  632. if
  633.  
  634. cbab:FindFirstChild("Owner")and
  635. cbab.Owner.Value~=nil and
  636. cbab.Owner.Value==game.Players[plr]and
  637. cbab:FindFirstChild("ItemName")and
  638. cbab:FindFirstChild("Type")and
  639. (cbab.PrimaryPart~=nil or cbab:FindFirstChild("MainCFrame"))then PlaceR:FireServer(cbab)end end end)aaca.Name="wipebase"aaca.Parent=_aca
  640. aaca.AnchorPoint=Vector2.new(0.5,0.5)aaca.BackgroundTransparency=1
  641. aaca.Position=UDim2.new(0.494003624,0,0.5,0)aaca.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  642. aaca.Font=Enum.Font.Cartoon;aaca.Text="WIPE BASE"aaca.TextColor3=Color3.new(0,0,0)
  643. aaca.TextSize=21;baca.Name="minim2"baca.Parent=dbba
  644. baca.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)baca.BackgroundTransparency=1;baca.BorderSizePixel=0;baca.Position=UDim2.new(0.943400443,0,
  645. -0.000636407116,0)
  646. baca.Size=UDim2.new(0,25,0,13)baca.Image="rbxassetid://2790389767"
  647. baca.ImageColor3=Color3.new(0.466667,0.392157,0.87451)baca.ScaleType=Enum.ScaleType.Slice
  648. baca.SliceCenter=Rect.new(8,8,248,248)caca.Name="minim2"caca.Parent=baca
  649. caca.AnchorPoint=Vector2.new(0.5,0.5)caca.BackgroundTransparency=1
  650. caca.Position=UDim2.new(0.494003624,0,0.5,0)caca.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  651. caca.Font=Enum.Font.Cartoon;caca.Text="-"caca.TextColor3=Color3.new(0,0,0)
  652. caca.TextSize=21;daca.Name="copybase"daca.Parent=dbba
  653. daca.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)daca.BackgroundTransparency=1;daca.BorderSizePixel=0
  654. daca.Position=UDim2.new(0.648098469,0,0.681181788,0)daca.Size=UDim2.new(0,143,0,41)
  655. daca.Image="rbxassetid://2790389767"daca.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  656. daca.ScaleType=Enum.ScaleType.Slice;daca.SliceCenter=Rect.new(8,8,248,248)
  657. daca.MouseButton1Click:Connect(function()
  658. abab=game.Players.LocalPlayer;plr=d_ca.Text;pmds=game.Workspace.PlayerModels
  659. PlaceR=game.ReplicatedStorage.PlaceStructure.ClientPlacedBlueprint
  660. PlaceS=game.ReplicatedStorage.PlaceStructure.ClientPlacedStructure;Property=nil;MProperty=nil
  661. for bbab,cbab in
  662. pairs(game.Workspace.Properties:GetChildren())do
  663. if
  664.  
  665. cbab:FindFirstChild("Owner")and cbab.Owner.Value~=nil and cbab.Owner.Value==game.Players[plr]then Property=cbab.OriginSquare end end
  666. for bbab,cbab in
  667. pairs(game.Workspace.Properties:GetChildren())do
  668. if
  669.  
  670. cbab:FindFirstChild("Owner")and cbab.Owner.Value~=nil and cbab.Owner.Value==game.Players.LocalPlayer then MProperty=cbab.OriginSquare end end
  671. function copypart(bbab)if bbab:FindFirstChild("MainCFrame")then Cframe=bbab.MainCFrame.Value else
  672. Cframe=bbab.PrimaryPart.CFrame end;X=
  673. Property.Position.X-Cframe.X
  674. Y=Property.Position.Y-Cframe.Y;Z=Property.Position.Z-Cframe.Z
  675. PlaceR:FireServer(bbab.ItemName.Value,
  676. (
  677. CFrame.new(MProperty.Position.X,MProperty.Position.Y,MProperty.Position.Z)*CFrame.Angles(Cframe:toEulerAnglesXYZ()))-Vector3.new(X,Y,Z),game.Players.LocalPlayer)wait()end
  678. for bbab,cbab in pairs(pmds:GetChildren())do
  679. if
  680.  
  681. cbab:FindFirstChild("Owner")and
  682. cbab.Owner.Value~=nil and
  683. cbab.Owner.Value==game.Players[plr]and
  684. cbab:FindFirstChild("ItemName")and
  685. cbab:FindFirstChild("Type")and
  686. (cbab.PrimaryPart~=nil or cbab:FindFirstChild("MainCFrame"))then copypart(cbab)end end end)_bca.Name="copybasetext"_bca.Parent=daca
  687. _bca.AnchorPoint=Vector2.new(0.5,0.5)_bca.BackgroundTransparency=1
  688. _bca.Position=UDim2.new(0.494003624,0,0.5,0)_bca.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  689. _bca.Font=Enum.Font.Cartoon;_bca.Text="COPY BASE"_bca.TextColor3=Color3.new(0,0,0)
  690. _bca.TextSize=25;abca.Name="painting"abca.Parent=dbba
  691. abca.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)abca.BackgroundTransparency=1;abca.BorderSizePixel=0
  692. abca.Position=UDim2.new(0.379642069,0,0.396333277,0)abca.Size=UDim2.new(0,109,0,33)
  693. abca.Image="rbxassetid://2790389767"abca.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  694. abca.ScaleType=Enum.ScaleType.Slice;abca.SliceCenter=Rect.new(8,8,248,248)
  695. abca.MouseButton1Click:connect(function()
  696. abab=game.Players.LocalPlayer;local bbab=d_ca.Text;local cbab="Painting"local dbab=0
  697. for _cab,acab in
  698. pairs(game.Workspace.PlayerModels:GetChildren())do
  699. if acab:FindFirstChild("Owner")and
  700. tostring(acab.Owner.Value)==bbab then
  701. if cbab~="TreeClass"then
  702. if
  703.  
  704. acab:FindFirstChild("Type")and tostring(acab.Type.Value)==cbab then
  705. if acab.PrimaryPart then
  706. acab.PrimaryPart.CFrame=
  707. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  708. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(acab.PrimaryPart)
  709. acab.PrimaryPart.CFrame=
  710. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  711. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(acab.PrimaryPart)
  712. acab.PrimaryPart.CFrame=
  713. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)dbab=dbab+1;if dbab==10 then dbab=0;wait(0.1)end end end else
  714. if acab:FindFirstChild("TreeClass")then
  715. if acab.WoodSection then
  716. acab.WoodSection.CFrame=
  717. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  718. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(acab.WoodSection)
  719. acab.WoodSection.CFrame=
  720. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  721. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(acab.WoodSection)
  722. acab.WoodSection.CFrame=
  723. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)dbab=dbab+1;if dbab==10 then dbab=0;wait(0.1)end end end end end end end)bbca.Name="paintingtext"bbca.Parent=abca
  724. bbca.AnchorPoint=Vector2.new(0.5,0.5)bbca.BackgroundTransparency=1
  725. bbca.Position=UDim2.new(0.494003624,0,0.5,0)bbca.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  726. bbca.Font=Enum.Font.Cartoon;bbca.Text="PAINTING"bbca.TextColor3=Color3.new(0,0,0)
  727. bbca.TextSize=21;cbca.Name="wire"cbca.Parent=dbba
  728. cbca.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)cbca.BackgroundTransparency=1;cbca.BorderSizePixel=0
  729. cbca.Position=UDim2.new(0.375167787,0,0.675121188,0)cbca.Size=UDim2.new(0,109,0,33)
  730. cbca.Image="rbxassetid://2790389767"cbca.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  731. cbca.ScaleType=Enum.ScaleType.Slice;cbca.SliceCenter=Rect.new(8,8,248,248)
  732. cbca.MouseButton1Click:connect(function()
  733. abab=game.Players.LocalPlayer;local bbab=d_ca.Text;local cbab="Wire"local dbab=0
  734. for _cab,acab in
  735. pairs(game.Workspace.PlayerModels:GetChildren())do
  736. if acab:FindFirstChild("Owner")and
  737. tostring(acab.Owner.Value)==bbab then
  738. if cbab~="TreeClass"then
  739. if
  740.  
  741. acab:FindFirstChild("Type")and tostring(acab.Type.Value)==cbab then
  742. if acab.PrimaryPart then
  743. acab.PrimaryPart.CFrame=
  744. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  745. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(acab.PrimaryPart)
  746. acab.PrimaryPart.CFrame=
  747. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  748. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(acab.PrimaryPart)
  749. acab.PrimaryPart.CFrame=
  750. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)dbab=dbab+1;if dbab==10 then dbab=0;wait(0.1)end end end else
  751. if acab:FindFirstChild("TreeClass")then
  752. if acab.WoodSection then
  753. acab.WoodSection.CFrame=
  754. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  755. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(acab.WoodSection)
  756. acab.WoodSection.CFrame=
  757. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  758. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(acab.WoodSection)
  759. acab.WoodSection.CFrame=
  760. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)dbab=dbab+1;if dbab==10 then dbab=0;wait(0.1)end end end end end end end)dbca.Name="wiretext"dbca.Parent=cbca
  761. dbca.AnchorPoint=Vector2.new(0.5,0.5)dbca.BackgroundTransparency=1
  762. dbca.Position=UDim2.new(0.494003624,0,0.5,0)dbca.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  763. dbca.Font=Enum.Font.Cartoon;dbca.Text="WIRE"dbca.TextColor3=Color3.new(0,0,0)
  764. dbca.TextSize=21;_cca.Name="Border5"_cca.Parent=dc_a
  765. _cca.BackgroundColor3=Color3.new(0.301961,0.301961,0.301961)_cca.BorderSizePixel=0
  766. _cca.Position=UDim2.new(0.349999994,0,-1,0)_cca.Size=UDim2.new(0,447,0,330)acca.Parent=_cca
  767. acca.BackgroundColor3=Color3.new(0.270588,0.0901961,0.545098)acca.BorderSizePixel=0;acca.Size=UDim2.new(0,447,0,39)
  768. bcca.Parent=_cca
  769. bcca.BackgroundColor3=Color3.new(0.270588,0.0901961,0.545098)bcca.BorderSizePixel=0
  770. bcca.Position=UDim2.new(0,0,0.881818175,0)bcca.Size=UDim2.new(0,447,0,39)ccca.Name="LT 2\"FERRY\""
  771. ccca.Parent=_cca;ccca.BackgroundColor3=Color3.new(1,1,1)
  772. ccca.BackgroundTransparency=1;ccca.Position=UDim2.new(0.309354991,0,0.0204323977,0)
  773. ccca.Size=UDim2.new(0,167,0,24)ccca.Image="rbxassetid://2978220566"dcca.Name="Dupe"dcca.Parent=_cca
  774. dcca.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)dcca.BackgroundTransparency=1;dcca.BorderSizePixel=0
  775. dcca.Position=UDim2.new(0.274290383,0,0.662502229,0)dcca.Size=UDim2.new(0,200,0,50)
  776. dcca.Image="rbxassetid://2790389767"dcca.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  777. dcca.ScaleType=Enum.ScaleType.Slice;dcca.SliceCenter=Rect.new(8,8,248,248)
  778. dcca.MouseButton1Down:connect(function()
  779. plr=game:GetService("Players").LocalPlayer;slot=plr.CurrentSaveSlot
  780. if Option==false then
  781. if slot.Value==-1 then
  782. game:GetService("StarterGui"):SetCore("SendNotification",{Title="STATUS DUPE :",Text="DUPE ACTIVE!"})Option=true;slot.RobloxLocked=true
  783. dcca.BackgroundColor3=Color3.new(0,1,0)adca.Text="Status Dupe : Active"end else
  784. game:GetService("StarterGui"):SetCore("SendNotification",{Title="STATUS DUPE :",Text="DUPE NOT ACTIVE!"})Option=false;slot.RobloxLocked=false
  785. dcca.BackgroundColor3=Color3.new(0.7,0,0)adca.Text="Status Dupe : Not Active"
  786. adca.Text=Color3.new(63,253,4)end end)_dca.Name="Dupetext"_dca.Parent=dcca
  787. _dca.AnchorPoint=Vector2.new(0.5,0.5)_dca.BackgroundTransparency=1
  788. _dca.Position=UDim2.new(0.494003624,0,0.5,0)_dca.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  789. _dca.Font=Enum.Font.Cartoon;_dca.Text="DUPE"_dca.TextColor3=Color3.new(0,0,0)
  790. _dca.TextSize=39;adca.Name="DupeLabel"adca.Parent=_cca;adca.Active=true
  791. adca.BackgroundColor3=Color3.new(1,1,1)adca.BackgroundTransparency=1
  792. adca.Position=UDim2.new(0.274654567,0,0.803698897,0)adca.Size=UDim2.new(0,200,0,21)
  793. adca.Font=Enum.Font.Cartoon;adca.Text="Status Dupe : Not Active"
  794. adca.TextColor3=Color3.new(0.247059,0.992157,0.0156863)adca.TextSize=14;adca.TextWrapped=true;bdca.Name="woodmenu"
  795. bdca.Parent=_cca
  796. bdca.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)bdca.BackgroundTransparency=1;bdca.BorderSizePixel=0
  797. bdca.Position=UDim2.new(0.0261745248,0,0.193303004,0)bdca.Size=UDim2.new(0,143,0,41)
  798. bdca.Image="rbxassetid://2790389767"bdca.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  799. bdca.ScaleType=Enum.ScaleType.Slice;bdca.SliceCenter=Rect.new(8,8,248,248)cdca.Name="woodmenutext"
  800. cdca.Parent=bdca;cdca.AnchorPoint=Vector2.new(0.5,0.5)
  801. cdca.BackgroundTransparency=1;cdca.Position=UDim2.new(0.494003624,0,0.5,0)
  802. cdca.Size=UDim2.new(0.0926923454,0,0.899999917,0)cdca.Font=Enum.Font.Cartoon;cdca.Text="WOOD MENU"
  803. cdca.TextColor3=Color3.new(0,0,0)cdca.TextSize=21;ddca.Name="tpsystem"ddca.Parent=_cca
  804. ddca.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)ddca.BackgroundTransparency=1;ddca.BorderSizePixel=0
  805. ddca.Position=UDim2.new(0.0261745248,0,0.344818175,0)ddca.Size=UDim2.new(0,143,0,41)
  806. ddca.Image="rbxassetid://2790389767"ddca.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  807. ddca.ScaleType=Enum.ScaleType.Slice;ddca.SliceCenter=Rect.new(8,8,248,248)__da.Name="tpsystemtext"
  808. __da.Parent=ddca;__da.AnchorPoint=Vector2.new(0.5,0.5)
  809. __da.BackgroundTransparency=1;__da.Position=UDim2.new(0.494003624,0,0.5,0)
  810. __da.Size=UDim2.new(0.0926923454,0,0.899999917,0)__da.Font=Enum.Font.Cartoon;__da.Text="TP SYSTEM"
  811. __da.TextColor3=Color3.new(0,0,0)__da.TextSize=21;a_da.Name="maxland"a_da.Parent=_cca
  812. a_da.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)a_da.BackgroundTransparency=1;a_da.BorderSizePixel=0
  813. a_da.Position=UDim2.new(0.0261745248,0,0.493303031,0)a_da.Size=UDim2.new(0,143,0,41)
  814. a_da.Image="rbxassetid://2790389767"a_da.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  815. a_da.ScaleType=Enum.ScaleType.Slice;a_da.SliceCenter=Rect.new(8,8,248,248)
  816. a_da.MouseButton1Click:connect(function()
  817. for bbab,cbab in
  818. pairs(game:GetService("Workspace").Properties:GetChildren())do
  819. if cbab:FindFirstChild("Owner")and
  820. cbab.Owner.Value==game.Players.LocalPlayer then base=cbab;square=cbab.OriginSquare end end
  821. function makebase(bbab)
  822. local cbab=game:GetService("ReplicatedStorage").PropertyPurchasing.ClientExpandedProperty;cbab:FireServer(base,bbab)end;spos=square.Position
  823. makebase(CFrame.new(spos.X+40,spos.Y,spos.Z))
  824. makebase(CFrame.new(spos.X-40,spos.Y,spos.Z))
  825. makebase(CFrame.new(spos.X,spos.Y,spos.Z+40))
  826. makebase(CFrame.new(spos.X,spos.Y,spos.Z-40))
  827. makebase(CFrame.new(spos.X+40,spos.Y,spos.Z+40))
  828. makebase(CFrame.new(spos.X+40,spos.Y,spos.Z-40))
  829. makebase(CFrame.new(spos.X-40,spos.Y,spos.Z+40))
  830. makebase(CFrame.new(spos.X-40,spos.Y,spos.Z-40))
  831. makebase(CFrame.new(spos.X+80,spos.Y,spos.Z))
  832. makebase(CFrame.new(spos.X-80,spos.Y,spos.Z))
  833. makebase(CFrame.new(spos.X,spos.Y,spos.Z+80))
  834. makebase(CFrame.new(spos.X,spos.Y,spos.Z-80))
  835. makebase(CFrame.new(spos.X+80,spos.Y,spos.Z+80))
  836. makebase(CFrame.new(spos.X+80,spos.Y,spos.Z-80))
  837. makebase(CFrame.new(spos.X-80,spos.Y,spos.Z+80))
  838. makebase(CFrame.new(spos.X-80,spos.Y,spos.Z-80))
  839. makebase(CFrame.new(spos.X+40,spos.Y,spos.Z+80))
  840. makebase(CFrame.new(spos.X-40,spos.Y,spos.Z+80))
  841. makebase(CFrame.new(spos.X+80,spos.Y,spos.Z+40))
  842. makebase(CFrame.new(spos.X+80,spos.Y,spos.Z-40))
  843. makebase(CFrame.new(spos.X-80,spos.Y,spos.Z+40))
  844. makebase(CFrame.new(spos.X-80,spos.Y,spos.Z-40))
  845. makebase(CFrame.new(spos.X+40,spos.Y,spos.Z-80))
  846. makebase(CFrame.new(spos.X-40,spos.Y,spos.Z-80))end)b_da.Name="maxlandtext"b_da.Parent=a_da
  847. b_da.AnchorPoint=Vector2.new(0.5,0.5)b_da.BackgroundTransparency=1
  848. b_da.Position=UDim2.new(0.494003624,0,0.5,0)b_da.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  849. b_da.Font=Enum.Font.Cartoon;b_da.Text="MAX LAND"b_da.TextColor3=Color3.new(0,0,0)
  850. b_da.TextSize=21;c_da.Name="goldaxe"c_da.Parent=_cca
  851. c_da.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)c_da.BackgroundTransparency=1;c_da.BorderSizePixel=0
  852. c_da.Position=UDim2.new(0.648098469,0,0.193303004,0)c_da.Size=UDim2.new(0,143,0,41)
  853. c_da.Image="rbxassetid://2790389767"c_da.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  854. c_da.ScaleType=Enum.ScaleType.Slice;c_da.SliceCenter=Rect.new(8,8,248,248)
  855. c_da.MouseButton1Click:connect(function()
  856. Detect=coroutine.wrap(function()
  857. Player=game.Players.LocalPlayer;mouse=Player:GetMouse()
  858. mouse.Button1Down:connect(function()MouseDown=true end)
  859. mouse.Button1Up:connect(function()MouseDown=false end)end)Detect()Player=game.Players.LocalPlayer
  860. mouse=Player:GetMouse()
  861. game:GetService('RunService').RenderStepped:connect(function()
  862. if
  863. Player.Character:FindFirstChild("Tool")then
  864. if MouseDown==true then
  865. if mouse.Target.Name=="WoodSection"then
  866. targetWood=mouse.Target;Tool=Player.Character.Tool
  867. Height=
  868. targetWood.CFrame:pointToObjectSpace(mouse.Hit.p).Y+targetWood.Size.Y/2
  869. local bbab=Ray.new(Player.Character.Head.Position,
  870. (
  871. (targetWood.CFrame*CFrame.new(0,Height-
  872. targetWood.Size.Y/2,0)).p-Player.Character.Head.Position).unit*200)
  873. part,_,p=workspace:FindPartOnRay(bbab,Player.Character)function fixVector(dcab)
  874. return Vector3.new(math.floor(dcab.X+0.5),math.floor(dcab.Y+0.5),math.floor(
  875. dcab.Z+0.5))end
  876. local cbab=fixVector(targetWood.CFrame:vectorToObjectSpace(p))if cbab.Y~=0 then return end
  877. local dbab=CFrame.new(Player.Character.Head.Position,mouse.Hit.p)
  878. local _cab=dbab:toObjectSpace(targetWood.CFrame*CFrame.Angles(math.pi/2,0,0))local acab=_cab.lookVector;local bcab=acab.Y>=0 and 1 or-1
  879. if
  880. cbab.X==1 then cbab=Vector3.new(0,0,-1)*bcab elseif cbab.X==-1 then cbab=
  881. Vector3.new(0,0,1)*bcab elseif cbab.Z==1 then
  882. cbab=Vector3.new(1,0,0)*bcab elseif cbab.Z==-1 then cbab=Vector3.new(-1,0,0)*bcab end;local ccab=targetWood.Parent.CutEvent
  883. game.ReplicatedStorage.Interaction.RemoteProxy:FireServer(ccab,{sectionId=targetWood.ID.Value,faceVector=cbab,height=Height,hitPoints=0.2,cooldown=0,cuttingClass="Axe",tool=Player.Character.Tool})end end end end)end)d_da.Name="goldaxetext"d_da.Parent=c_da
  884. d_da.AnchorPoint=Vector2.new(0.5,0.5)d_da.BackgroundTransparency=1
  885. d_da.Position=UDim2.new(0.494003624,0,0.5,0)d_da.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  886. d_da.Font=Enum.Font.Cartoon;d_da.Text="GOLD AXE"d_da.TextColor3=Color3.new(0,0,0)
  887. d_da.TextSize=21;_ada.Name="painttools"_ada.Parent=_cca
  888. _ada.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)_ada.BackgroundTransparency=1;_ada.BorderSizePixel=0
  889. _ada.Position=UDim2.new(0.648098469,0,0.344818175,0)_ada.Size=UDim2.new(0,143,0,41)
  890. _ada.Image="rbxassetid://2790389767"_ada.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  891. _ada.ScaleType=Enum.ScaleType.Slice;_ada.SliceCenter=Rect.new(8,8,248,248)
  892. _ada.MouseButton1Down:Connect(function()
  893. local bbab=Instance.new("ScreenGui")local cbab=Instance.new("Frame")
  894. local dbab=Instance.new("ImageButton")local _cab=Instance.new("ScrollingFrame")
  895. local acab=Instance.new("ImageButton")local bcab=Instance.new("Frame")
  896. local ccab=Instance.new("ImageButton")local dcab=Instance.new("Frame")
  897. local _dab=Instance.new("ImageButton")local adab=Instance.new("Frame")
  898. local bdab=Instance.new("ImageButton")local cdab=Instance.new("Frame")
  899. local ddab=Instance.new("ImageButton")local __bb=Instance.new("Frame")
  900. local a_bb=Instance.new("ImageButton")local b_bb=Instance.new("Frame")
  901. local c_bb=Instance.new("ImageButton")local d_bb=Instance.new("Frame")
  902. local _abb=Instance.new("ImageButton")local aabb=Instance.new("Frame")
  903. local babb=Instance.new("ImageButton")local cabb=Instance.new("Frame")
  904. local dabb=Instance.new("ImageButton")local _bbb=Instance.new("Frame")
  905. local abbb=Instance.new("ImageButton")local bbbb=Instance.new("Frame")
  906. local cbbb=Instance.new("ImageButton")local dbbb=Instance.new("Frame")
  907. local _cbb=Instance.new("ImageButton")local acbb=Instance.new("Frame")
  908. local bcbb=Instance.new("ImageButton")local ccbb=Instance.new("Frame")
  909. local dcbb=Instance.new("ImageButton")local _dbb=Instance.new("Frame")
  910. local adbb=Instance.new("ImageButton")local bdbb=Instance.new("Frame")
  911. local cdbb=Instance.new("ImageButton")local ddbb=Instance.new("Frame")
  912. local __cb=Instance.new("ImageButton")local a_cb=Instance.new("Frame")
  913. local b_cb=Instance.new("ImageButton")local c_cb=Instance.new("Frame")bbab.Name="ColorPicker"
  914. bbab.Parent=game.Players.LocalPlayer:WaitForChild("PlayerGui")cbab.Name="ChangeColor"cbab.Parent=bbab
  915. cbab.BackgroundColor3=Color3.new(0.176471,0.254902,0.427451)cbab.BorderColor3=Color3.new(0,0,0)cbab.BorderSizePixel=2;cbab.Position=UDim2.new(0,10,1,
  916. -110)
  917. cbab.Size=UDim2.new(0,100,0,100)cbab.ZIndex=2;bbab.Enabled=false;dbab.Name="CurrentColor"
  918. dbab.Parent=cbab
  919. dbab.BackgroundColor3=Color3.new(0.176471,0.254902,0.427451)dbab.BorderColor3=Color3.new(0,0,0)dbab.BorderSizePixel=2
  920. dbab.Position=UDim2.new(0,10,0,10)dbab.Size=UDim2.new(0,80,0,80)dbab.ZIndex=2
  921. dbab.Image="rbxassetid://2712547918"dbab.ScaleType=Enum.ScaleType.Crop;_cab.Name="Picker"
  922. _cab.Parent=bbab
  923. _cab.BackgroundColor3=Color3.new(0.176471,0.254902,0.427451)_cab.BorderColor3=Color3.new(0,0,0)_cab.BorderSizePixel=2;_cab.Position=UDim2.new(0,10,1,
  924. -320)
  925. _cab.Size=UDim2.new(0,100,0,200)_cab.CanvasPosition=Vector2.new(0,700)
  926. _cab.CanvasSize=UDim2.new(0,0,0,900)_cab.ScrollBarThickness=7
  927. _cab.VerticalScrollBarPosition=Enum.VerticalScrollBarPosition.Left;_cab.Visible=false;acab.Name="Birch"acab.Parent=_cab
  928. acab.BackgroundColor3=Color3.new(1,1,1)acab.BorderColor3=Color3.new(0,0,0)
  929. acab.Position=UDim2.new(0,10,0,5)acab.Size=UDim2.new(0,80,0,40)acab.ZIndex=3
  930. acab.Image="rbxassetid://2712547918"acab.ScaleType=Enum.ScaleType.Crop;bcab.Name="DropShadow"
  931. bcab.Parent=acab;bcab.BackgroundColor3=Color3.new(0,0,0)bcab.BorderSizePixel=0
  932. bcab.Position=UDim2.new(0,4,0,4)bcab.Size=UDim2.new(1,0,1,0)bcab.ZIndex=2;ccab.Name="Grey"
  933. ccab.Parent=_cab;ccab.BackgroundColor3=Color3.new(1,1,1)
  934. ccab.BorderColor3=Color3.new(0,0,0)ccab.Position=UDim2.new(0,10,0,55)
  935. ccab.Size=UDim2.new(0,80,0,40)ccab.ZIndex=3;ccab.Image="rbxassetid://924320031"
  936. ccab.ScaleType=Enum.ScaleType.Crop;dcab.Name="DropShadow"dcab.Parent=ccab
  937. dcab.BackgroundColor3=Color3.new(0,0,0)dcab.BorderSizePixel=0;dcab.Position=UDim2.new(0,4,0,4)
  938. dcab.Size=UDim2.new(1,0,1,0)dcab.ZIndex=2;_dab.Name="Walnut"_dab.Parent=_cab
  939. _dab.BackgroundColor3=Color3.new(1,1,1)_dab.BorderColor3=Color3.new(0,0,0)
  940. _dab.Position=UDim2.new(0,10,0,105)_dab.Size=UDim2.new(0,80,0,40)_dab.ZIndex=3
  941. _dab.Image="rbxassetid://2712559790"_dab.ScaleType=Enum.ScaleType.Crop;adab.Name="DropShadow"
  942. adab.Parent=_dab;adab.BackgroundColor3=Color3.new(0,0,0)adab.BorderSizePixel=0
  943. adab.Position=UDim2.new(0,4,0,4)adab.Size=UDim2.new(1,0,1,0)adab.ZIndex=2;bdab.Name="Generic"
  944. bdab.Parent=_cab;bdab.BackgroundColor3=Color3.new(1,1,1)
  945. bdab.BorderColor3=Color3.new(0,0,0)bdab.Position=UDim2.new(0,10,0,155)
  946. bdab.Size=UDim2.new(0,80,0,40)bdab.ZIndex=3;bdab.Image="rbxassetid://2712568624"
  947. bdab.ScaleType=Enum.ScaleType.Crop;cdab.Name="DropShadow"cdab.Parent=bdab
  948. cdab.BackgroundColor3=Color3.new(0,0,0)cdab.BorderSizePixel=0;cdab.Position=UDim2.new(0,4,0,4)
  949. cdab.Size=UDim2.new(1,0,1,0)cdab.ZIndex=2;ddab.Name="Oak"ddab.Parent=_cab
  950. ddab.BackgroundColor3=Color3.new(1,1,1)ddab.BorderColor3=Color3.new(0,0,0)
  951. ddab.Position=UDim2.new(0,10,0,205)ddab.Size=UDim2.new(0,80,0,40)ddab.ZIndex=3
  952. ddab.Image="rbxassetid://2712579185"ddab.ScaleType=Enum.ScaleType.Crop;__bb.Name="DropShadow"
  953. __bb.Parent=ddab;__bb.BackgroundColor3=Color3.new(0,0,0)__bb.BorderSizePixel=0
  954. __bb.Position=UDim2.new(0,4,0,4)__bb.Size=UDim2.new(1,0,1,0)__bb.ZIndex=2;a_bb.Name="Pine"
  955. a_bb.Parent=_cab;a_bb.BackgroundColor3=Color3.new(1,1,1)
  956. a_bb.BorderColor3=Color3.new(0,0,0)a_bb.Position=UDim2.new(0,10,0,255)
  957. a_bb.Size=UDim2.new(0,80,0,40)a_bb.ZIndex=3;a_bb.Image="rbxassetid://2712591183"
  958. a_bb.ScaleType=Enum.ScaleType.Crop;b_bb.Name="DropShadow"b_bb.Parent=a_bb
  959. b_bb.BackgroundColor3=Color3.new(0,0,0)b_bb.BorderSizePixel=0;b_bb.Position=UDim2.new(0,4,0,4)
  960. b_bb.Size=UDim2.new(1,0,1,0)b_bb.ZIndex=2;c_bb.Name="Palm"c_bb.Parent=_cab
  961. c_bb.BackgroundColor3=Color3.new(1,1,1)c_bb.BorderColor3=Color3.new(0,0,0)
  962. c_bb.Position=UDim2.new(0,10,0,305)c_bb.Size=UDim2.new(0,80,0,40)c_bb.ZIndex=3
  963. c_bb.Image="rbxassetid://2712597395"c_bb.ScaleType=Enum.ScaleType.Crop;d_bb.Name="DropShadow"
  964. d_bb.Parent=c_bb;d_bb.BackgroundColor3=Color3.new(0,0,0)d_bb.BorderSizePixel=0
  965. d_bb.Position=UDim2.new(0,4,0,4)d_bb.Size=UDim2.new(1,0,1,0)d_bb.ZIndex=2;_abb.Name="Cherry"
  966. _abb.Parent=_cab;_abb.BackgroundColor3=Color3.new(1,1,1)
  967. _abb.BorderColor3=Color3.new(0,0,0)_abb.Position=UDim2.new(0,10,0,355)
  968. _abb.Size=UDim2.new(0,80,0,40)_abb.ZIndex=3;_abb.Image="rbxassetid://2712608599"
  969. _abb.ScaleType=Enum.ScaleType.Crop;aabb.Name="DropShadow"aabb.Parent=_abb
  970. aabb.BackgroundColor3=Color3.new(0,0,0)aabb.BorderSizePixel=0;aabb.Position=UDim2.new(0,4,0,4)
  971. aabb.Size=UDim2.new(1,0,1,0)aabb.ZIndex=2;babb.Name="Koa"babb.Parent=_cab
  972. babb.BackgroundColor3=Color3.new(1,1,1)babb.BorderColor3=Color3.new(0,0,0)
  973. babb.Position=UDim2.new(0,10,0,355)babb.Size=UDim2.new(0,80,0,40)babb.ZIndex=3
  974. babb.Image="rbxassetid://2712612798"babb.ScaleType=Enum.ScaleType.Crop;cabb.Name="DropShadow"
  975. cabb.Parent=babb;cabb.BackgroundColor3=Color3.new(0,0,0)cabb.BorderSizePixel=0
  976. cabb.Position=UDim2.new(0,4,0,4)cabb.Size=UDim2.new(1,0,1,0)cabb.ZIndex=2;dabb.Name="Volcano"
  977. dabb.Parent=_cab;dabb.BackgroundColor3=Color3.new(1,1,1)
  978. dabb.BorderColor3=Color3.new(0,0,0)dabb.Position=UDim2.new(0,10,0,405)
  979. dabb.Size=UDim2.new(0,80,0,40)dabb.ZIndex=3;dabb.Image="rbxassetid://2712618609"
  980. dabb.ScaleType=Enum.ScaleType.Crop;_bbb.Name="DropShadow"_bbb.Parent=dabb
  981. _bbb.BackgroundColor3=Color3.new(0,0,0)_bbb.BorderSizePixel=0;_bbb.Position=UDim2.new(0,4,0,4)
  982. _bbb.Size=UDim2.new(1,0,1,0)_bbb.ZIndex=2;abbb.Name="GreenSwampy"abbb.Parent=_cab
  983. abbb.BackgroundColor3=Color3.new(1,1,1)abbb.BorderColor3=Color3.new(0,0,0)
  984. abbb.Position=UDim2.new(0,10,0,455)abbb.Size=UDim2.new(0,80,0,40)abbb.ZIndex=3
  985. abbb.Image="rbxassetid://2712623896"abbb.ScaleType=Enum.ScaleType.Crop;bbbb.Name="DropShadow"
  986. bbbb.Parent=abbb;bbbb.BackgroundColor3=Color3.new(0,0,0)bbbb.BorderSizePixel=0
  987. bbbb.Position=UDim2.new(0,4,0,4)bbbb.Size=UDim2.new(1,0,1,0)bbbb.ZIndex=2
  988. cbbb.Name="GoldSwampy"cbbb.Parent=_cab;cbbb.BackgroundColor3=Color3.new(1,1,1)
  989. cbbb.BorderColor3=Color3.new(0,0,0)cbbb.Position=UDim2.new(0,10,0,505)
  990. cbbb.Size=UDim2.new(0,80,0,40)cbbb.ZIndex=3;cbbb.Image="rbxassetid://2712631457"
  991. cbbb.ScaleType=Enum.ScaleType.Crop;dbbb.Name="DropShadow"dbbb.Parent=cbbb
  992. dbbb.BackgroundColor3=Color3.new(0,0,0)dbbb.BorderSizePixel=0;dbbb.Position=UDim2.new(0,4,0,4)
  993. dbbb.Size=UDim2.new(1,0,1,0)dbbb.ZIndex=2;_cbb.Name="GenericSpecial"_cbb.Parent=_cab
  994. _cbb.BackgroundColor3=Color3.new(1,1,1)_cbb.BorderColor3=Color3.new(0,0,0)
  995. _cbb.Position=UDim2.new(0,10,0,555)_cbb.Size=UDim2.new(0,80,0,40)_cbb.ZIndex=3
  996. _cbb.Image="rbxassetid://2712639396"_cbb.ScaleType=Enum.ScaleType.Crop;acbb.Name="DropShadow"
  997. acbb.Parent=_cbb;acbb.BackgroundColor3=Color3.new(0,0,0)acbb.BorderSizePixel=0
  998. acbb.Position=UDim2.new(0,4,0,4)acbb.Size=UDim2.new(1,0,1,0)acbb.ZIndex=2;bcbb.Name="SnowGlow"
  999. bcbb.Parent=_cab;bcbb.BackgroundColor3=Color3.new(1,1,1)
  1000. bcbb.BorderColor3=Color3.new(0,0,0)bcbb.Position=UDim2.new(0,10,0,605)
  1001. bcbb.Size=UDim2.new(0,80,0,40)bcbb.ZIndex=3;bcbb.Image="rbxassetid://2712651454"
  1002. bcbb.ScaleType=Enum.ScaleType.Crop;ccbb.Name="DropShadow"ccbb.Parent=bcbb
  1003. ccbb.BackgroundColor3=Color3.new(0,0,0)ccbb.BorderSizePixel=0;ccbb.Position=UDim2.new(0,4,0,4)
  1004. ccbb.Size=UDim2.new(1,0,1,0)ccbb.ZIndex=2;dcbb.Name="Frost"dcbb.Parent=_cab
  1005. dcbb.BackgroundColor3=Color3.new(1,1,1)dcbb.BorderColor3=Color3.new(0,0,0)
  1006. dcbb.Position=UDim2.new(0,10,0,655)dcbb.Size=UDim2.new(0,80,0,40)dcbb.ZIndex=3
  1007. dcbb.Image="rbxassetid://2712667804"dcbb.ScaleType=Enum.ScaleType.Crop;_dbb.Name="DropShadow"
  1008. _dbb.Parent=dcbb;_dbb.BackgroundColor3=Color3.new(0,0,0)_dbb.BorderSizePixel=0
  1009. _dbb.Position=UDim2.new(0,4,0,4)_dbb.Size=UDim2.new(1,0,1,0)_dbb.ZIndex=2
  1010. adbb.Name="CaveCrawler"adbb.Parent=_cab;adbb.BackgroundColor3=Color3.new(1,1,1)
  1011. adbb.BorderColor3=Color3.new(0,0,0)adbb.Position=UDim2.new(0,10,0,705)
  1012. adbb.Size=UDim2.new(0,80,0,40)adbb.ZIndex=3;adbb.Image="rbxassetid://2712673980"
  1013. adbb.ScaleType=Enum.ScaleType.Crop;bdbb.Name="DropShadow"bdbb.Parent=adbb
  1014. bdbb.BackgroundColor3=Color3.new(0,0,0)bdbb.BorderSizePixel=0;bdbb.Position=UDim2.new(0,4,0,4)
  1015. bdbb.Size=UDim2.new(1,0,1,0)bdbb.ZIndex=2;cdbb.Name="LoneCave"cdbb.Parent=_cab
  1016. cdbb.BackgroundColor3=Color3.new(1,1,1)cdbb.BorderColor3=Color3.new(0,0,0)
  1017. cdbb.Position=UDim2.new(0,10,0,755)cdbb.Size=UDim2.new(0,80,0,40)cdbb.ZIndex=3
  1018. cdbb.Image="rbxassetid://2712693147"cdbb.ScaleType=Enum.ScaleType.Crop;ddbb.Name="DropShadow"
  1019. ddbb.Parent=cdbb;ddbb.BackgroundColor3=Color3.new(0,0,0)ddbb.BorderSizePixel=0
  1020. ddbb.Position=UDim2.new(0,4,0,4)ddbb.Size=UDim2.new(1,0,1,0)ddbb.ZIndex=2;__cb.Name="Spooky"
  1021. __cb.Parent=_cab;__cb.BackgroundColor3=Color3.new(1,1,1)
  1022. __cb.BorderColor3=Color3.new(0,0,0)__cb.Position=UDim2.new(0,10,0,805)
  1023. __cb.Size=UDim2.new(0,80,0,40)__cb.ZIndex=3;__cb.Image="rbxassetid://2712696822"
  1024. __cb.ScaleType=Enum.ScaleType.Crop;a_cb.Name="DropShadow"a_cb.Parent=__cb
  1025. a_cb.BackgroundColor3=Color3.new(0,0,0)a_cb.BorderSizePixel=0;a_cb.Position=UDim2.new(0,4,0,4)
  1026. a_cb.Size=UDim2.new(1,0,1,0)a_cb.ZIndex=2;b_cb.Name="SpookyNeon"b_cb.Parent=_cab
  1027. b_cb.BackgroundColor3=Color3.new(1,1,1)b_cb.BorderColor3=Color3.new(0,0,0)
  1028. b_cb.Position=UDim2.new(0,10,0,855)b_cb.Size=UDim2.new(0,80,0,40)b_cb.ZIndex=3
  1029. b_cb.Image="rbxassetid://2712700047"b_cb.ScaleType=Enum.ScaleType.Crop;c_cb.Name="DropShadow"
  1030. c_cb.Parent=b_cb;c_cb.BackgroundColor3=Color3.new(0,0,0)c_cb.BorderSizePixel=0
  1031. c_cb.Position=UDim2.new(0,4,0,4)c_cb.Size=UDim2.new(1,0,1,0)c_cb.ZIndex=2;woodtype="Birch"
  1032. local d_cb=Instance.new("Tool",game.Players.LocalPlayer.Backpack)d_cb.RequiresHandle=false;d_cb.Name="Paint"
  1033. d_cb.ToolTip="Changes A Stucture's Wood Type"
  1034. d_cb.Equipped:connect(function(_acb)bbab.Enabled=true
  1035. _acb.Button1Down:connect(function()
  1036. if
  1037.  
  1038. _acb.Target.Parent:FindFirstChild("Type")or _acb.Target.Parent:FindFirstChild("BlueprintWoodClass")then local aacb
  1039. if _acb.Target.Parent:FindFirstChild("MainCFrame")then
  1040. aacb=_acb.Target.Parent.MainCFrame.Value else aacb=_acb.Target.Parent.PrimaryPart.CFrame end
  1041. if _acb.Target.Parent~=nil then
  1042. game.ReplicatedStorage.PlaceStructure.ClientPlacedStructure:FireServer(_acb.Target.Parent.ItemName.Value,aacb,game.Players.LocalPlayer,woodtype,_acb.Target.Parent,false)end else end end)end)
  1043. d_cb.Unequipped:connect(function(_acb)bbab.Enabled=false end)
  1044. acab.MouseButton1Click:Connect(function()dbab.Image=acab.Image;woodtype="Birch"end)
  1045. ccab.MouseButton1Click:Connect(function()dbab.Image=ccab.Image;woodtype=nil end)
  1046. _dab.MouseButton1Click:Connect(function()dbab.Image=_dab.Image;woodtype="Walnut"end)
  1047. bdab.MouseButton1Click:Connect(function()dbab.Image=bdab.Image;woodtype="Generic"end)
  1048. ddab.MouseButton1Click:Connect(function()dbab.Image=ddab.Image;woodtype="Oak"end)
  1049. a_bb.MouseButton1Click:Connect(function()dbab.Image=a_bb.Image;woodtype="Pine"end)
  1050. c_bb.MouseButton1Click:Connect(function()dbab.Image=c_bb.Image;woodtype="Palm"end)
  1051. babb.MouseButton1Click:Connect(function()dbab.Image=babb.Image;woodtype="Koa"end)
  1052. dabb.MouseButton1Click:Connect(function()dbab.Image=dabb.Image;woodtype="Volcano"end)
  1053. abbb.MouseButton1Click:Connect(function()dbab.Image=abbb.Image;woodtype="GreenSwampy"end)
  1054. cbbb.MouseButton1Click:Connect(function()dbab.Image=cbbb.Image;woodtype="GoldSwampy"end)
  1055. _cbb.MouseButton1Click:Connect(function()dbab.Image=_cbb.Image
  1056. woodtype="GenericSpecial"end)
  1057. bcbb.MouseButton1Click:Connect(function()dbab.Image=bcbb.Image;woodtype="SnowGlow"end)
  1058. dcbb.MouseButton1Click:Connect(function()dbab.Image=dcbb.Image;woodtype="Frost"end)
  1059. adbb.MouseButton1Click:Connect(function()dbab.Image=adbb.Image;woodtype="CaveCrawler"end)
  1060. cdbb.MouseButton1Click:Connect(function()dbab.Image=cdbb.Image;woodtype="LoneCave"end)
  1061. __cb.MouseButton1Click:Connect(function()dbab.Image=__cb.Image;woodtype="Spooky"end)
  1062. b_cb.MouseButton1Click:Connect(function()dbab.Image=b_cb.Image;woodtype="SpookyNeon"end)
  1063. dbab.MouseButton1Click:Connect(function()if _cab.Visible==false then _cab.Visible=true else
  1064. _cab.Visible=false end end)end)aada.Name="painttools"aada.Parent=_ada
  1065. aada.AnchorPoint=Vector2.new(0.5,0.5)aada.BackgroundTransparency=1
  1066. aada.Position=UDim2.new(0.494003624,0,0.5,0)aada.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  1067. aada.Font=Enum.Font.Cartoon;aada.Text="PAINT TOOLS"aada.TextColor3=Color3.new(0,0,0)
  1068. aada.TextSize=21;bada.Name="fvckferry"bada.Parent=_cca
  1069. bada.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)bada.BackgroundTransparency=1;bada.BorderSizePixel=0
  1070. bada.Position=UDim2.new(0.648098469,0,0.493303031,0)bada.Size=UDim2.new(0,143,0,41)
  1071. bada.Image="rbxassetid://2790389767"bada.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  1072. bada.ScaleType=Enum.ScaleType.Slice;bada.SliceCenter=Rect.new(8,8,248,248)
  1073. cada.Name="fvckferrytext"cada.Parent=bada;cada.AnchorPoint=Vector2.new(0.5,0.5)
  1074. cada.BackgroundTransparency=1;cada.Position=UDim2.new(0.494003624,0,0.5,0)
  1075. cada.Size=UDim2.new(0.0926923454,0,0.899999917,0)cada.Font=Enum.Font.Cartoon;cada.Text="FERRY MENU!"
  1076. cada.TextColor3=Color3.new(0,0,0)cada.TextSize=21;dada.Name="minim"dada.Parent=_cca
  1077. dada.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)dada.BackgroundTransparency=1;dada.BorderSizePixel=0;dada.Position=UDim2.new(0.943400443,0,
  1078. -0.000636407116,0)
  1079. dada.Size=UDim2.new(0,25,0,13)dada.Image="rbxassetid://2790389767"
  1080. dada.ImageColor3=Color3.new(0.466667,0.392157,0.87451)dada.ScaleType=Enum.ScaleType.Slice
  1081. dada.SliceCenter=Rect.new(8,8,248,248)_bda.Name="minim"_bda.Parent=dada
  1082. _bda.AnchorPoint=Vector2.new(0.5,0.5)_bda.BackgroundTransparency=1
  1083. _bda.Position=UDim2.new(0.494003624,0,0.5,0)_bda.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  1084. _bda.Font=Enum.Font.Cartoon;_bda.Text="-"_bda.TextColor3=Color3.new(0,0,0)
  1085. _bda.TextSize=21;abda.Name="b3"abda.Parent=dc_a
  1086. abda.BackgroundColor3=Color3.new(0.517647,0.517647,0.517647)abda.BorderSizePixel=0;abda.ClipsDescendants=true
  1087. abda.Position=UDim2.new(-0.00200000009,0,0.601364493,0)abda.Selectable=false;abda.Size=UDim2.new(0,160,0,30)
  1088. abda.Font=Enum.Font.SourceSansBold;abda.Text=""abda.TextColor3=Color3.new(1,1,1)
  1089. abda.TextScaled=true;abda.TextSize=14;abda.TextStrokeTransparency=0.69999998807907
  1090. abda.TextWrapped=true;bbda.Parent=abda;bbda.BackgroundColor3=Color3.new(1,1,1)
  1091. bbda.BackgroundTransparency=1;bbda.Size=UDim2.new(0,20,0,20)bbda.Visible=false
  1092. bbda.Image="rbxassetid://2513701731"bbda.ImageTransparency=0.20000000298023;cbda.Parent=abda
  1093. cbda.BackgroundColor3=Color3.new(1,1,1)cbda.BackgroundTransparency=1;cbda.Size=UDim2.new(1,0,1,0)
  1094. cbda.ZIndex=2;cbda.Font=Enum.Font.SourceSansBold;cbda.Text="FERRY MENU"
  1095. cbda.TextColor3=Color3.new(1,1,1)cbda.TextScaled=true;cbda.TextSize=14
  1096. cbda.TextStrokeTransparency=0.69999998807907;cbda.TextWrapped=true;dbda.Name="b4"dbda.Parent=dc_a
  1097. dbda.BackgroundColor3=Color3.new(0.517647,0.517647,0.517647)dbda.BorderSizePixel=0;dbda.ClipsDescendants=true
  1098. dbda.Position=UDim2.new(-0.00065229123,0,0.673099458,0)dbda.Selectable=false;dbda.Size=UDim2.new(0,160,0,30)
  1099. dbda.Font=Enum.Font.SourceSansBold;dbda.Text=""dbda.TextColor3=Color3.new(1,1,1)
  1100. dbda.TextScaled=true;dbda.TextSize=14;dbda.TextStrokeTransparency=0.69999998807907
  1101. dbda.TextWrapped=true;_cda.Parent=dbda;_cda.BackgroundColor3=Color3.new(1,1,1)
  1102. _cda.BackgroundTransparency=1;_cda.Size=UDim2.new(0,20,0,20)_cda.Visible=false
  1103. _cda.Image="rbxassetid://856547512"_cda.ImageTransparency=0.20000000298023;acda.Parent=dbda
  1104. acda.BackgroundColor3=Color3.new(1,1,1)acda.BackgroundTransparency=1
  1105. acda.Size=UDim2.new(0.993749976,0,1,0)acda.ZIndex=2;acda.Font=Enum.Font.SourceSansBold
  1106. acda.Text="WOOD MENU"acda.TextColor3=Color3.new(1,1,1)acda.TextScaled=true
  1107. acda.TextSize=14;acda.TextStrokeTransparency=0.69999998807907;acda.TextWrapped=true
  1108. bcda.Name="b5"bcda.Parent=dc_a
  1109. bcda.BackgroundColor3=Color3.new(0.517647,0.517647,0.517647)bcda.BorderSizePixel=0;bcda.ClipsDescendants=true
  1110. bcda.Position=UDim2.new(-0.00100000005,0,0.745224178,0)bcda.Selectable=false;bcda.Size=UDim2.new(0,160,0,30)
  1111. bcda.Font=Enum.Font.SourceSansBold;bcda.Text=""bcda.TextColor3=Color3.new(1,1,1)
  1112. bcda.TextScaled=true;bcda.TextSize=14;bcda.TextStrokeTransparency=0.69999998807907
  1113. bcda.TextWrapped=true;ccda.Parent=bcda;ccda.BackgroundColor3=Color3.new(1,1,1)
  1114. ccda.BackgroundTransparency=1;ccda.Size=UDim2.new(0,20,0,20)ccda.Visible=false
  1115. ccda.Image="rbxassetid://2927751166"ccda.ImageTransparency=0.20000000298023;dcda.Parent=bcda
  1116. dcda.BackgroundColor3=Color3.new(1,1,1)dcda.BackgroundTransparency=1
  1117. dcda.Size=UDim2.new(0.995362461,0,1,0)dcda.ZIndex=2;dcda.Font=Enum.Font.SourceSansBold
  1118. dcda.Text="INSTANT BLUEPRINT"dcda.TextColor3=Color3.new(1,1,1)dcda.TextScaled=true
  1119. dcda.TextSize=14;dcda.TextStrokeTransparency=0.69999998807907;dcda.TextWrapped=true
  1120. _dda.Name="b6"_dda.Parent=dc_a
  1121. _dda.BackgroundColor3=Color3.new(0.517647,0.517647,0.517647)_dda.BorderSizePixel=0;_dda.ClipsDescendants=true
  1122. _dda.Position=UDim2.new(-0.00234770891,0,0.819688082,0)_dda.Selectable=false;_dda.Size=UDim2.new(0,160,0,30)
  1123. _dda.Font=Enum.Font.SourceSansBold;_dda.Text=""_dda.TextColor3=Color3.new(1,1,1)
  1124. _dda.TextScaled=true;_dda.TextSize=14;_dda.TextStrokeTransparency=0.69999998807907
  1125. _dda.TextWrapped=true;adda.Parent=_dda;adda.BackgroundColor3=Color3.new(1,1,1)
  1126. adda.BackgroundTransparency=1;adda.Size=UDim2.new(0,20,0,20)adda.Visible=false
  1127. adda.Image="rbxassetid://2664323359"adda.ImageTransparency=0.20000000298023;bdda.Parent=_dda
  1128. bdda.BackgroundColor3=Color3.new(1,1,1)bdda.BackgroundTransparency=1;bdda.Size=UDim2.new(1,0,1,0)
  1129. bdda.ZIndex=2;bdda.Font=Enum.Font.SourceSansBold;bdda.Text="CREDITS"
  1130. bdda.TextColor3=Color3.new(1,1,1)bdda.TextScaled=true;bdda.TextSize=14
  1131. bdda.TextStrokeTransparency=0.69999998807907;bdda.TextWrapped=true;cdda.Name="blueprint"cdda.Parent=dc_a
  1132. cdda.BackgroundColor3=Color3.new(0.301961,0.301961,0.301961)cdda.BorderSizePixel=0
  1133. cdda.Position=UDim2.new(0.523999989,0,-1,0)cdda.Size=UDim2.new(0,447,0,330)ddda.Parent=cdda
  1134. ddda.BackgroundColor3=Color3.new(0.270588,0.0901961,0.545098)ddda.BorderSizePixel=0;ddda.Size=UDim2.new(0,447,0,39)
  1135. ___b.Parent=cdda
  1136. ___b.BackgroundColor3=Color3.new(0.270588,0.0901961,0.545098)___b.BorderSizePixel=0
  1137. ___b.Position=UDim2.new(0,0,0.881818175,0)___b.Size=UDim2.new(0,447,0,39)a__b.Name="INSTANT BLUEPRINT"
  1138. a__b.Parent=cdda;a__b.BackgroundColor3=Color3.new(1,1,1)
  1139. a__b.BackgroundTransparency=1;a__b.Position=UDim2.new(0.284746498,0,0.0204323977,0)
  1140. a__b.Size=UDim2.new(0,197,0,24)a__b.Image="rbxassetid://2978371575"b__b.Name="minim4"b__b.Parent=cdda
  1141. b__b.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)b__b.BackgroundTransparency=1;b__b.BorderSizePixel=0;b__b.Position=UDim2.new(0.943400443,0,
  1142. -0.000636407116,0)
  1143. b__b.Size=UDim2.new(0,25,0,13)b__b.Image="rbxassetid://2790389767"
  1144. b__b.ImageColor3=Color3.new(0.466667,0.392157,0.87451)b__b.ScaleType=Enum.ScaleType.Slice
  1145. b__b.SliceCenter=Rect.new(8,8,248,248)c__b.Name="minim4"c__b.Parent=b__b
  1146. c__b.AnchorPoint=Vector2.new(0.5,0.5)c__b.BackgroundTransparency=1
  1147. c__b.Position=UDim2.new(0.494003624,0,0.5,0)c__b.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  1148. c__b.Font=Enum.Font.Cartoon;c__b.Text="-"c__b.TextColor3=Color3.new(0,0,0)
  1149. c__b.TextSize=21;d__b.Name="ok"d__b.Parent=cdda
  1150. d__b.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)d__b.BackgroundTransparency=1;d__b.BorderSizePixel=0
  1151. d__b.Position=UDim2.new(0.335055172,0,0.599363565,0)d__b.Size=UDim2.new(0,143,0,41)
  1152. d__b.Image="rbxassetid://2790389767"d__b.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  1153. d__b.ScaleType=Enum.ScaleType.Slice;d__b.SliceCenter=Rect.new(8,8,248,248)
  1154. d__b.MouseButton1Click:connect(function()
  1155. abab=game.Players.LocalPlayer;local bbab=ba_b.Text;local cbab=da_b.Text;local dbab
  1156. local _cab=game.ReplicatedStorage.PlaceStructure.ClientPlacedStructure
  1157. for acab,bcab in
  1158. pairs(game.Workspace.PlayerModels:GetChildren())do
  1159. if bcab:FindFirstChild("Owner")and
  1160. tostring(bcab.Owner.Value)==bbab then
  1161. if bcab:FindFirstChild("Type")and bcab.Type.Value==
  1162. "Blueprint"then
  1163. if
  1164. bcab:FindFirstChild("MainCFrame")then dbab=bcab.MainCFrame.Value else dbab=bcab.PrimaryPart.CFrame end;if bcab~=nil then
  1165. _cab:FireServer(bcab.Name,dbab,game.Players.LocalPlayer,cbab,bcab,false)end end end end end)_a_b.Name="oktext"_a_b.Parent=d__b
  1166. _a_b.AnchorPoint=Vector2.new(0.5,0.5)_a_b.BackgroundTransparency=1
  1167. _a_b.Position=UDim2.new(0.494003624,0,0.5,0)_a_b.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  1168. _a_b.Font=Enum.Font.Cartoon;_a_b.Text="OK!"_a_b.TextColor3=Color3.new(0,0,0)
  1169. _a_b.TextSize=40;aa_b.Name="haha"aa_b.Parent=cdda
  1170. aa_b.BackgroundColor3=Color3.new(0.364706,0.196078,0.65098)aa_b.BackgroundTransparency=1
  1171. aa_b.Position=UDim2.new(0.277404934,0,0.224242419,0)aa_b.Size=UDim2.new(0,196,0,45)
  1172. aa_b.Image="rbxassetid://2790389767"aa_b.ImageColor3=Color3.new(0.364706,0.196078,0.65098)
  1173. aa_b.ScaleType=Enum.ScaleType.Slice;aa_b.SliceCenter=Rect.new(8,8,248,248)ba_b.Name="bangsad2"
  1174. ba_b.Parent=aa_b;ba_b.AnchorPoint=Vector2.new(0.5,0.5)
  1175. ba_b.BackgroundTransparency=1;ba_b.Position=UDim2.new(0.5,0,0.5,0)
  1176. ba_b.Size=UDim2.new(1,0,0.899999976,0)ba_b.Font=Enum.Font.Cartoon;ba_b.Text="PLAYERS HERE"
  1177. ba_b.TextColor3=Color3.new(1,1,1)ba_b.TextSize=25;ca_b.Name="HIHI"ca_b.Parent=cdda
  1178. ca_b.BackgroundColor3=Color3.new(0.364706,0.196078,0.65098)ca_b.BackgroundTransparency=1
  1179. ca_b.Position=UDim2.new(0.293064922,0,0.409090936,0)ca_b.Size=UDim2.new(0,181,0,37)
  1180. ca_b.Image="rbxassetid://2790389767"ca_b.ImageColor3=Color3.new(0.364706,0.196078,0.65098)
  1181. ca_b.ScaleType=Enum.ScaleType.Slice;ca_b.SliceCenter=Rect.new(8,8,248,248)da_b.Name="bangsad3"
  1182. da_b.Parent=ca_b;da_b.AnchorPoint=Vector2.new(0.5,0.5)
  1183. da_b.BackgroundTransparency=1;da_b.Position=UDim2.new(0.5,0,0.5,0)
  1184. da_b.Size=UDim2.new(1,0,0.899999976,0)da_b.Font=Enum.Font.Cartoon;da_b.Text="Volcano"
  1185. da_b.TextColor3=Color3.new(1,1,1)da_b.TextSize=25;_b_b.Name="blueprintcodes"_b_b.Parent=cdda
  1186. _b_b.BackgroundColor3=Color3.new(0.301961,0.301961,0.301961)_b_b.BorderSizePixel=0
  1187. _b_b.Position=UDim2.new(-0.561521292,0,-0.000956892967,0)_b_b.Size=UDim2.new(0,238,0,330)ab_b.Parent=_b_b
  1188. ab_b.BackgroundColor3=Color3.new(0.270588,0.0901961,0.545098)ab_b.BorderSizePixel=0;ab_b.Size=UDim2.new(0,238,0,39)
  1189. bb_b.Parent=_b_b
  1190. bb_b.BackgroundColor3=Color3.new(0.270588,0.0901961,0.545098)bb_b.BorderSizePixel=0
  1191. bb_b.Position=UDim2.new(0,0,0.881818175,0)bb_b.Size=UDim2.new(0,238,0,39)cb_b.Name="CODE BLUEPRINT"
  1192. cb_b.Parent=_b_b;cb_b.BackgroundColor3=Color3.new(1,1,1)
  1193. cb_b.BackgroundTransparency=1
  1194. cb_b.Position=UDim2.new(0.0964094698,0,0.0204323977,0)cb_b.Size=UDim2.new(0,189,0,24)
  1195. cb_b.Image="rbxassetid://2978835053"db_b.Name="minim4"db_b.Parent=_b_b
  1196. db_b.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)db_b.BackgroundTransparency=1;db_b.BorderSizePixel=0;db_b.Position=UDim2.new(0.910271406,0,
  1197. -0.000636430224,0)
  1198. db_b.Size=UDim2.new(0,22,0,13)db_b.Image="rbxassetid://2790389767"
  1199. db_b.ImageColor3=Color3.new(0.466667,0.392157,0.87451)db_b.ScaleType=Enum.ScaleType.Slice
  1200. db_b.SliceCenter=Rect.new(8,8,248,248)_c_b.Name="minim4"_c_b.Parent=db_b
  1201. _c_b.AnchorPoint=Vector2.new(0.5,0.5)_c_b.BackgroundTransparency=1
  1202. _c_b.Position=UDim2.new(0.494003624,0,0.5,0)_c_b.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  1203. _c_b.Font=Enum.Font.Cartoon;_c_b.Text="-"_c_b.TextColor3=Color3.new(0,0,0)
  1204. _c_b.TextSize=21;ac_b.Name="testframe"ac_b.Parent=_b_b
  1205. ac_b.BackgroundColor3=Color3.new(0.670588,0.670588,0.670588)ac_b.Position=UDim2.new(0.0269681793,0,0.154545456,0)
  1206. ac_b.Size=UDim2.new(0,218,0,232)ac_b.CanvasPosition=Vector2.new(0,116)bc_b.Parent=ac_b
  1207. cc_b.Name="1"cc_b.Parent=ac_b;cc_b.BackgroundColor3=Color3.new(1,1,1)
  1208. cc_b.BackgroundTransparency=1;cc_b.Size=UDim2.new(0,200,0,50)
  1209. cc_b.Font=Enum.Font.Cartoon;cc_b.Text="Birch"cc_b.TextColor3=Color3.new(1,1,1)
  1210. cc_b.TextScaled=true;cc_b.TextSize=14;cc_b.TextWrapped=true;dc_b.Name="2"dc_b.Parent=ac_b
  1211. dc_b.BackgroundColor3=Color3.new(1,1,1)dc_b.BackgroundTransparency=1;dc_b.Size=UDim2.new(0,200,0,50)
  1212. dc_b.Font=Enum.Font.Cartoon;dc_b.Text="nil"dc_b.TextColor3=Color3.new(1,1,1)
  1213. dc_b.TextScaled=true;dc_b.TextSize=14;dc_b.TextWrapped=true;_d_b.Name="3"_d_b.Parent=ac_b
  1214. _d_b.BackgroundColor3=Color3.new(1,1,1)_d_b.BackgroundTransparency=1;_d_b.Size=UDim2.new(0,200,0,50)
  1215. _d_b.Font=Enum.Font.Cartoon;_d_b.Text="Walnut"_d_b.TextColor3=Color3.new(1,1,1)
  1216. _d_b.TextScaled=true;_d_b.TextSize=14;_d_b.TextWrapped=true;ad_b.Name="4"ad_b.Parent=ac_b
  1217. ad_b.BackgroundColor3=Color3.new(1,1,1)ad_b.BackgroundTransparency=1;ad_b.Size=UDim2.new(0,200,0,50)
  1218. ad_b.Font=Enum.Font.Cartoon;ad_b.Text="Generic"ad_b.TextColor3=Color3.new(1,1,1)
  1219. ad_b.TextScaled=true;ad_b.TextSize=14;ad_b.TextWrapped=true;bd_b.Name="5"bd_b.Parent=ac_b
  1220. bd_b.BackgroundColor3=Color3.new(1,1,1)bd_b.BackgroundTransparency=1;bd_b.Size=UDim2.new(0,200,0,50)
  1221. bd_b.Font=Enum.Font.Cartoon;bd_b.Text="Oak"bd_b.TextColor3=Color3.new(1,1,1)
  1222. bd_b.TextScaled=true;bd_b.TextSize=14;bd_b.TextWrapped=true;cd_b.Name="6"cd_b.Parent=ac_b
  1223. cd_b.BackgroundColor3=Color3.new(1,1,1)cd_b.BackgroundTransparency=1;cd_b.Size=UDim2.new(0,200,0,50)
  1224. cd_b.Font=Enum.Font.Cartoon;cd_b.Text="Pine"cd_b.TextColor3=Color3.new(1,1,1)
  1225. cd_b.TextScaled=true;cd_b.TextSize=14;cd_b.TextWrapped=true;dd_b.Name="7"dd_b.Parent=ac_b
  1226. dd_b.BackgroundColor3=Color3.new(1,1,1)dd_b.BackgroundTransparency=1;dd_b.Size=UDim2.new(0,200,0,50)
  1227. dd_b.Font=Enum.Font.Cartoon;dd_b.Text="Palm"dd_b.TextColor3=Color3.new(1,1,1)
  1228. dd_b.TextScaled=true;dd_b.TextSize=14;dd_b.TextWrapped=true;__ab.Name="8"__ab.Parent=ac_b
  1229. __ab.BackgroundColor3=Color3.new(1,1,1)__ab.BackgroundTransparency=1;__ab.Size=UDim2.new(0,200,0,50)
  1230. __ab.Font=Enum.Font.Cartoon;__ab.Text="Koa"__ab.TextColor3=Color3.new(1,1,1)
  1231. __ab.TextScaled=true;__ab.TextSize=14;__ab.TextWrapped=true;a_ab.Name="9"a_ab.Parent=ac_b
  1232. a_ab.BackgroundColor3=Color3.new(1,1,1)a_ab.BackgroundTransparency=1;a_ab.Size=UDim2.new(0,200,0,50)
  1233. a_ab.Font=Enum.Font.Cartoon;a_ab.Text="Volcano"a_ab.TextColor3=Color3.new(1,1,1)
  1234. a_ab.TextScaled=true;a_ab.TextSize=14;a_ab.TextWrapped=true;b_ab.Name="10"b_ab.Parent=ac_b
  1235. b_ab.BackgroundColor3=Color3.new(1,1,1)b_ab.BackgroundTransparency=1;b_ab.Size=UDim2.new(0,200,0,50)
  1236. b_ab.Font=Enum.Font.Cartoon;b_ab.Text="GreenSwampy"b_ab.TextColor3=Color3.new(1,1,1)
  1237. b_ab.TextScaled=true;b_ab.TextSize=14;b_ab.TextWrapped=true;c_ab.Name="11"c_ab.Parent=ac_b
  1238. c_ab.BackgroundColor3=Color3.new(1,1,1)c_ab.BackgroundTransparency=1
  1239. c_ab.Position=UDim2.new(0.0229357798,0,0.00606060587,0)c_ab.Size=UDim2.new(0,200,0,50)
  1240. c_ab.Font=Enum.Font.Cartoon;c_ab.Text="GoldSwampy"c_ab.TextColor3=Color3.new(1,1,1)
  1241. c_ab.TextScaled=true;c_ab.TextSize=14;c_ab.TextWrapped=true;d_ab.Name="12"d_ab.Parent=ac_b
  1242. d_ab.BackgroundColor3=Color3.new(1,1,1)d_ab.BackgroundTransparency=1;d_ab.Size=UDim2.new(0,200,0,50)
  1243. d_ab.Font=Enum.Font.Cartoon;d_ab.Text="GenericSpecial"d_ab.TextColor3=Color3.new(1,1,1)
  1244. d_ab.TextScaled=true;d_ab.TextSize=14;d_ab.TextWrapped=true;_aab.Name="13"_aab.Parent=ac_b
  1245. _aab.BackgroundColor3=Color3.new(1,1,1)_aab.BackgroundTransparency=1;_aab.Size=UDim2.new(0,200,0,50)
  1246. _aab.Font=Enum.Font.Cartoon;_aab.Text="SnowGlow"_aab.TextColor3=Color3.new(1,1,1)
  1247. _aab.TextScaled=true;_aab.TextSize=14;_aab.TextWrapped=true;aaab.Name="14"aaab.Parent=ac_b
  1248. aaab.BackgroundColor3=Color3.new(1,1,1)aaab.BackgroundTransparency=1;aaab.Size=UDim2.new(0,200,0,50)
  1249. aaab.Font=Enum.Font.Cartoon;aaab.Text="Frost"aaab.TextColor3=Color3.new(1,1,1)
  1250. aaab.TextScaled=true;aaab.TextSize=14;aaab.TextWrapped=true;baab.Name="15"baab.Parent=ac_b
  1251. baab.BackgroundColor3=Color3.new(1,1,1)baab.BackgroundTransparency=1;baab.Size=UDim2.new(0,200,0,50)
  1252. baab.Font=Enum.Font.Cartoon;baab.Text="CaveCrawler"baab.TextColor3=Color3.new(1,1,1)
  1253. baab.TextScaled=true;baab.TextSize=14;baab.TextWrapped=true;caab.Name="16"caab.Parent=ac_b
  1254. caab.BackgroundColor3=Color3.new(1,1,1)caab.BackgroundTransparency=1;caab.Size=UDim2.new(0,200,0,50)
  1255. caab.Font=Enum.Font.Cartoon;caab.Text="LoneCave"caab.TextColor3=Color3.new(1,1,1)
  1256. caab.TextScaled=true;caab.TextSize=14;caab.TextWrapped=true;daab.Name="17"daab.Parent=ac_b
  1257. daab.BackgroundColor3=Color3.new(1,1,1)daab.BackgroundTransparency=1;daab.Size=UDim2.new(0,200,0,50)
  1258. daab.Font=Enum.Font.Cartoon;daab.Text="Spooky"daab.TextColor3=Color3.new(1,1,1)
  1259. daab.TextScaled=true;daab.TextSize=14;daab.TextWrapped=true;_bab.Name="18"_bab.Parent=ac_b
  1260. _bab.BackgroundColor3=Color3.new(1,1,1)_bab.BackgroundTransparency=1;_bab.Size=UDim2.new(0,200,0,50)
  1261. _bab.Font=Enum.Font.Cartoon;_bab.Text="SpookyNeon"_bab.TextColor3=Color3.new(1,1,1)
  1262. _bab.TextScaled=true;_bab.TextSize=14;_bab.TextWrapped=true
  1263. function SCRIPT_HYYQ80_FAKESCRIPT()
  1264. local bbab=Instance.new('LocalScript')bbab.Parent=_d_a
  1265. local cbab={0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9,1}
  1266. while wait(.2)do local dbab=bbab.Parent.ImageLabel:clone()
  1267. game.Debris:AddItem(dbab,3)dbab.Parent=bbab.Parent;dbab.Visible=true
  1268. local _cab=cbab[math.random(1,#cbab)]dbab.Position=UDim2.new(_cab,0,1,0,"Out","Quad",1,true)
  1269. dbab:TweenPosition(UDim2.new(_cab,0,
  1270. -1,0),"Out","Quad",1,true)end end
  1271. coroutine.resume(coroutine.create(SCRIPT_HYYQ80_FAKESCRIPT))
  1272. function SCRIPT_TEHT81_FAKESCRIPT()local bbab=Instance.new('LocalScript')
  1273. bbab.Parent=dc_a;repeat wait()until game.Players.LocalPlayer.Character
  1274. local cbab=game.Players.LocalPlayer.Character;local dbab=cbab:WaitForChild("Humanoid")
  1275. local _cab=Instance.new("Sound",bbab.Parent)_cab.SoundId="rbxassetid://408524543"_cab.Volume=1
  1276. local acab={0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9,1}local bcab=true;local ccab=Instance.new("Sound",bbab.Parent)
  1277. ccab.SoundId="rbxassetid://452267918"local dcab=bbab.Parent.b2;local _dab=bbab.Parent.b3
  1278. local adab=bbab.Parent.b4;local bdab=bbab.Parent.b5;local cdab=bbab.Parent.b6;local ddab=false;local __bb=false
  1279. local a_bb=bbab.Parent.Border5;local b_bb=bbab.Parent.ferrymenu;local c_bb=bbab.Parent.woods
  1280. local d_bb=bbab.Parent.blueprint;local _abb=bbab.Parent.creditsmenu
  1281. local aabb=Instance.new("BlurEffect",workspace.CurrentCamera)aabb.Size=0
  1282. function bluron()for i=0,20,1 do aabb.Size=i;wait()end end
  1283. function bluroff()for i=20,0,-1 do aabb.Size=i;wait()end end
  1284. dbab.Died:Connect(function()aabb:Destroy()end)
  1285. dcab.MouseButton1Click:Connect(function()ccab:Play()
  1286. if ddab==false then ddab=true
  1287. if
  1288. aabb.Size~=20 then
  1289. local babb=coroutine.create(function()bluron()end)coroutine.resume(babb)end;if __bb==true then __bb=false
  1290. b_bb:TweenPosition(UDim2.new(.35,0,-1,0),"Out","Back",1,true)end
  1291. a_bb:TweenPosition(UDim2.new(.35,0,.15,0),"Out","Back",1,true)elseif ddab==true then ddab=false
  1292. local babb=coroutine.create(function()bluroff()end)coroutine.resume(babb)
  1293. a_bb:TweenPosition(UDim2.new(.35,0,-1,0),"Out","Back",1,true)end end)
  1294. _dab.MouseButton1Click:Connect(function()ccab:Play()
  1295. if ddab==false then ddab=true
  1296. if
  1297. aabb.Size~=20 then
  1298. local babb=coroutine.create(function()bluron()end)coroutine.resume(babb)end;if __bb==true then __bb=false
  1299. b_bb:TweenPosition(UDim2.new(.35,0,-1,0),"Out","Back",1,true)end
  1300. b_bb:TweenPosition(UDim2.new(.35,0,.15,0),"Out","Back",1,true)elseif ddab==true then ddab=false
  1301. local babb=coroutine.create(function()bluroff()end)coroutine.resume(babb)
  1302. b_bb:TweenPosition(UDim2.new(.35,0,-1,0),"Out","Back",1,true)end end)
  1303. adab.MouseButton1Click:Connect(function()ccab:Play()
  1304. if ddab==false then ddab=true
  1305. if
  1306. aabb.Size~=20 then
  1307. local babb=coroutine.create(function()bluron()end)coroutine.resume(babb)end;if __bb==true then __bb=false
  1308. c_bb:TweenPosition(UDim2.new(.35,0,-3,0),"Out","Back",1,true)end
  1309. c_bb:TweenPosition(UDim2.new(.35,0,.15,0),"Out","Back",1,true)elseif ddab==true then ddab=false
  1310. local babb=coroutine.create(function()bluroff()end)coroutine.resume(babb)
  1311. c_bb:TweenPosition(UDim2.new(.35,0,-3,0),"Out","Back",1,true)end end)
  1312. bdab.MouseButton1Click:Connect(function()ccab:Play()
  1313. if ddab==false then ddab=true
  1314. if
  1315. aabb.Size~=20 then
  1316. local babb=coroutine.create(function()bluron()end)coroutine.resume(babb)end;if __bb==true then __bb=false
  1317. d_bb:TweenPosition(UDim2.new(.35,0,-3,0),"Out","Back",1,true)end
  1318. d_bb:TweenPosition(UDim2.new(.35,0,.15,0),"Out","Back",1,true)elseif ddab==true then ddab=false
  1319. local babb=coroutine.create(function()bluroff()end)coroutine.resume(babb)
  1320. d_bb:TweenPosition(UDim2.new(.35,0,-3,0),"Out","Back",1,true)end end)
  1321. cdab.MouseButton1Click:Connect(function()ccab:Play()
  1322. if ddab==false then ddab=true
  1323. if
  1324. aabb.Size~=20 then
  1325. local babb=coroutine.create(function()bluron()end)coroutine.resume(babb)end;if __bb==true then __bb=false
  1326. _abb:TweenPosition(UDim2.new(.35,0,-3,0),"Out","Back",1,true)end
  1327. _abb:TweenPosition(UDim2.new(.35,0,.15,0),"Out","Back",1,true)elseif ddab==true then ddab=false
  1328. local babb=coroutine.create(function()bluroff()end)coroutine.resume(babb)
  1329. _abb:TweenPosition(UDim2.new(.35,0,-3,0),"Out","Back",1,true)end end)
  1330. dcab.MouseEnter:Connect(function()_cab:Play()dcab.TextLabel.TextColor3=Color3.new(255 /255,
  1331. 100 /255,100 /255)
  1332. dcab:TweenSize(UDim2.new(0,165,0,30),"Out","Quad",.2,true)end)
  1333. dcab.MouseLeave:Connect(function()
  1334. dcab.TextLabel.TextColor3=Color3.new(255 /255,255 /255,255 /255)
  1335. dcab:TweenSize(UDim2.new(0,160,0,30),"Out","Quad",.2,true)end)
  1336. _dab.MouseEnter:Connect(function()_cab:Play()_dab.TextLabel.TextColor3=Color3.new(255 /255,
  1337. 100 /255,100 /255)
  1338. _dab:TweenSize(UDim2.new(0,165,0,30),"Out","Quad",.2,true)end)
  1339. _dab.MouseLeave:Connect(function()
  1340. _dab.TextLabel.TextColor3=Color3.new(255 /255,255 /255,255 /255)
  1341. _dab:TweenSize(UDim2.new(0,160,0,30),"Out","Quad",.2,true)end)
  1342. adab.MouseEnter:Connect(function()_cab:Play()adab.TextLabel.TextColor3=Color3.new(255 /255,
  1343. 100 /255,100 /255)
  1344. adab:TweenSize(UDim2.new(0,165,0,30),"Out","Quad",.2,true)end)
  1345. adab.MouseLeave:Connect(function()
  1346. adab.TextLabel.TextColor3=Color3.new(255 /255,255 /255,255 /255)
  1347. adab:TweenSize(UDim2.new(0,160,0,30),"Out","Quad",.2,true)end)
  1348. bdab.MouseEnter:Connect(function()_cab:Play()bdab.TextLabel.TextColor3=Color3.new(255 /255,
  1349. 100 /255,100 /255)
  1350. bdab:TweenSize(UDim2.new(0,165,0,30),"Out","Quad",.2,true)end)
  1351. bdab.MouseLeave:Connect(function()
  1352. bdab.TextLabel.TextColor3=Color3.new(255 /255,255 /255,255 /255)
  1353. bdab:TweenSize(UDim2.new(0,160,0,30),"Out","Quad",.2,true)end)
  1354. cdab.MouseEnter:Connect(function()_cab:Play()cdab.TextLabel.TextColor3=Color3.new(255 /255,
  1355. 100 /255,100 /255)
  1356. cdab:TweenSize(UDim2.new(0,165,0,30),"Out","Quad",.2,true)end)
  1357. cdab.MouseLeave:Connect(function()
  1358. cdab.TextLabel.TextColor3=Color3.new(255 /255,255 /255,255 /255)
  1359. cdab:TweenSize(UDim2.new(0,160,0,30),"Out","Quad",.2,true)end)end
  1360. coroutine.resume(coroutine.create(SCRIPT_TEHT81_FAKESCRIPT))
  1361. function SCRIPT_RJTR66_FAKESCRIPT()local bbab=Instance.new('LocalScript')
  1362. bbab.Parent=abda;local cbab={0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9,1}
  1363. while wait(.2)do
  1364. local dbab=bbab.Parent.ImageLabel:clone()game.Debris:AddItem(dbab,3)dbab.Parent=bbab.Parent
  1365. dbab.Visible=true;local _cab=cbab[math.random(1,#cbab)]
  1366. dbab.Position=UDim2.new(_cab,0,1,0,"Out","Quad",1,true)
  1367. dbab:TweenPosition(UDim2.new(_cab,0,-1,0),"Out","Quad",1,true)end end
  1368. coroutine.resume(coroutine.create(SCRIPT_RJTR66_FAKESCRIPT))
  1369. function SCRIPT_VUYD83_FAKESCRIPT()local bbab=Instance.new('LocalScript')
  1370. bbab.Parent=dbda;local cbab={0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9,1}
  1371. while wait(.2)do
  1372. local dbab=bbab.Parent.ImageLabel:clone()game.Debris:AddItem(dbab,3)dbab.Parent=bbab.Parent
  1373. dbab.Visible=true;local _cab=cbab[math.random(1,#cbab)]
  1374. dbab.Position=UDim2.new(_cab,0,1,0,"Out","Quad",1,true)
  1375. dbab:TweenPosition(UDim2.new(_cab,0,-1,0),"Out","Quad",1,true)end end
  1376. coroutine.resume(coroutine.create(SCRIPT_VUYD83_FAKESCRIPT))
  1377. function SCRIPT_OVKE74_FAKESCRIPT()local bbab=Instance.new('LocalScript')
  1378. bbab.Parent=bcda;local cbab={0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9,1}
  1379. while wait(.2)do
  1380. local dbab=bbab.Parent.ImageLabel:clone()game.Debris:AddItem(dbab,3)dbab.Parent=bbab.Parent
  1381. dbab.Visible=true;local _cab=cbab[math.random(1,#cbab)]
  1382. dbab.Position=UDim2.new(_cab,0,1,0,"Out","Quad",1,true)
  1383. dbab:TweenPosition(UDim2.new(_cab,0,-1,0),"Out","Quad",1,true)end end
  1384. coroutine.resume(coroutine.create(SCRIPT_OVKE74_FAKESCRIPT))
  1385. function SCRIPT_AZJR74_FAKESCRIPT()local bbab=Instance.new('LocalScript')
  1386. bbab.Parent=_dda;local cbab={0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9,1}
  1387. while wait(.2)do
  1388. local dbab=bbab.Parent.ImageLabel:clone()game.Debris:AddItem(dbab,3)dbab.Parent=bbab.Parent
  1389. dbab.Visible=true;local _cab=cbab[math.random(1,#cbab)]
  1390. dbab.Position=UDim2.new(_cab,0,1,0,"Out","Quad",1,true)
  1391. dbab:TweenPosition(UDim2.new(_cab,0,-1,0),"Out","Quad",1,true)end end
  1392. coroutine.resume(coroutine.create(SCRIPT_AZJR74_FAKESCRIPT))
  1393. end)
  1394. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement