Advertisement
yoeyessjoey

WHatyourllyneed

Dec 7th, 2019
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 252.42 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3
  3.  
  4. -- Instances:
  5.  
  6. local LoginGuiScreenGUI = Instance.new("ScreenGui")
  7. local LoginMainFrame = Instance.new("Frame")
  8. local TopBarofLoginMaineFrame = Instance.new("Frame")
  9. local username = Instance.new("TextBox")
  10. local pass = Instance.new("TextBox")
  11. local submit = Instance.new("TextButton")
  12. local TextButton = Instance.new("TextButton")
  13. local MainScreenGUI = Instance.new("ScreenGui")
  14. local MainFrame = Instance.new("Frame")
  15. local TopBarofMainFrame = Instance.new("Frame")
  16. local Blood = Instance.new("TextButton")
  17. local Ferry = Instance.new("TextButton")
  18. local exitofmainframe = Instance.new("TextButton")
  19. local truelol = Instance.new("TextLabel")
  20.  
  21. --Properties:
  22.  
  23. LoginGuiScreenGUI.Name = "LoginGuiScreenGUI"
  24. LoginGuiScreenGUI.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  25. LoginGuiScreenGUI.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  26.  
  27. LoginMainFrame.Name = "LoginMainFrame"
  28. LoginMainFrame.Parent = LoginGuiScreenGUI
  29. LoginMainFrame.BackgroundColor3 = Color3.new(1, 0.0313726, 0.921569)
  30. LoginMainFrame.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  31. LoginMainFrame.BorderSizePixel = 3
  32. LoginMainFrame.Position = UDim2.new(0.32032147, 0, 0.19732441, 0)
  33. LoginMainFrame.Size = UDim2.new(0, 283, 0, 306)
  34. LoginMainFrame.Draggable = true
  35. LoginMainFrame.Active = true
  36.  
  37. TopBarofLoginMaineFrame.Name = "TopBarofLoginMaineFrame"
  38. TopBarofLoginMaineFrame.Parent = LoginMainFrame
  39. TopBarofLoginMaineFrame.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  40. TopBarofLoginMaineFrame.BorderSizePixel = 0
  41. TopBarofLoginMaineFrame.Size = UDim2.new(0, 283, 0, 34)
  42.  
  43. username.Name = "username"
  44. username.Parent = LoginMainFrame
  45. username.BackgroundColor3 = Color3.new(1, 0.0313726, 0.921569)
  46. username.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  47. username.BorderSizePixel = 3
  48. username.Position = UDim2.new(0.144876331, 0, 0.26797387, 0)
  49. username.Size = UDim2.new(0, 200, 0, 50)
  50. username.Font = Enum.Font.SciFi
  51. username.Text = "USERNAME"
  52. username.TextColor3 = Color3.new(0, 0, 0)
  53. username.TextSize = 30
  54.  
  55. pass.Name = "pass"
  56. pass.Parent = LoginMainFrame
  57. pass.BackgroundColor3 = Color3.new(1, 0.0313726, 0.921569)
  58. pass.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  59. pass.BorderSizePixel = 3
  60. pass.Position = UDim2.new(0.144876331, 0, 0.509803891, 0)
  61. pass.Size = UDim2.new(0, 200, 0, 50)
  62. pass.Font = Enum.Font.SciFi
  63. pass.Text = "PASSWORD"
  64. pass.TextColor3 = Color3.new(0, 0, 0)
  65. pass.TextSize = 30
  66.  
  67. submit.Name = "submit"
  68. submit.Parent = LoginMainFrame
  69. submit.BackgroundColor3 = Color3.new(1, 0.0313726, 0.921569)
  70. submit.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  71. submit.BorderSizePixel = 3
  72. submit.Position = UDim2.new(0, 41, 0, 239)
  73. submit.Size = UDim2.new(0, 200, 0, 50)
  74. submit.Font = Enum.Font.SciFi
  75. submit.Text = "SUBMIT"
  76. submit.TextColor3 = Color3.new(0, 0, 0)
  77. submit.TextSize = 45
  78. submit.MouseButton1Down:connect(function()
  79. if username.Text == "yoeyessjoey" and pass.Text == "jacob070809" then
  80. LoginMainFrame.Visible = false
  81. MainFrame.Visible = true
  82. end
  83. end)
  84.  
  85. TextButton.Parent = LoginMainFrame
  86. TextButton.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  87. TextButton.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  88. TextButton.Position = UDim2.new(0, 174, 0, 0)
  89. TextButton.Size = UDim2.new(0, 100, 0, 28)
  90. TextButton.Font = Enum.Font.SciFi
  91. TextButton.Text = "X"
  92. TextButton.TextColor3 = Color3.new(1, 0.0313726, 0.921569)
  93. TextButton.TextSize = 45
  94. TextButton.MouseButton1Down:connect(function()
  95. LoginMainFrame.Visible = false
  96. end)
  97.  
  98. MainScreenGUI.Name = "MainScreenGUI"
  99. MainScreenGUI.Parent = LoginGuiScreenGUI
  100. MainScreenGUI.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  101.  
  102. MainFrame.Name = "MainFrame"
  103. MainFrame.Parent = MainScreenGUI
  104. MainFrame.BackgroundColor3 = Color3.new(1, 0.0313726, 0.921569)
  105. MainFrame.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  106. MainFrame.BorderSizePixel = 4
  107. MainFrame.Position = UDim2.new(0, 258, 0, 90)
  108. MainFrame.Size = UDim2.new(0, 398, 0, 281)
  109. MainFrame.Visible = false
  110. MainFrame.Draggable = true
  111. MainFrame.Active = true
  112.  
  113. TopBarofMainFrame.Name = "TopBarofMainFrame"
  114. TopBarofMainFrame.Parent = MainFrame
  115. TopBarofMainFrame.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  116. TopBarofMainFrame.BorderSizePixel = 0
  117. TopBarofMainFrame.Size = UDim2.new(0, 398, 0, 41)
  118.  
  119. Blood.Name = "Blood"
  120. Blood.Parent = MainFrame
  121. Blood.BackgroundColor3 = Color3.new(1, 0.0313726, 0.921569)
  122. Blood.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  123. Blood.Position = UDim2.new(0, 16, 0, 71)
  124. Blood.Size = UDim2.new(0, 200, 0, 50)
  125. Blood.Font = Enum.Font.SciFi
  126. Blood.Text = "Blood"
  127. Blood.TextColor3 = Color3.new(0, 0, 0)
  128. Blood.TextSize = 14
  129. Blood.MouseButton1Down:connect(function()
  130.  
  131. -- Objects
  132.  
  133. local Intro = Instance.new("ScreenGui")
  134. local IntroImage = Instance.new("ImageLabel")
  135. local _1 = Instance.new("TextLabel")
  136. local _2 = Instance.new("TextLabel")
  137. local _3 = Instance.new("TextLabel")
  138. local _4 = Instance.new("TextLabel")
  139. local _5 = Instance.new("TextLabel")
  140. local _6 = Instance.new("TextLabel")
  141. local _7 = Instance.new("TextLabel")
  142.  
  143. -- Properties
  144.  
  145. Intro.Name = "Intro"
  146. Intro.Parent = game.CoreGui
  147.  
  148. IntroImage.Name = "IntroImage"
  149. IntroImage.Parent = Intro
  150. IntroImage.BackgroundColor3 = Color3.new(0, 0.298039, 0.498039)
  151. IntroImage.BackgroundTransparency = 1
  152. IntroImage.BorderColor3 = Color3.new(1, 1, 1)
  153. IntroImage.BorderSizePixel = 0
  154. IntroImage.Position = UDim2.new(0.400, 0, 0.200, 0)
  155. IntroImage.Size = UDim2.new(0, 356, 0, 347)
  156. IntroImage.Image = "rbxassetid://1130382821"
  157.  
  158. _1.Name = "1"
  159. _1.Parent = IntroImage
  160. _1.BackgroundColor3 = Color3.fromRGB(249, 214, 46)
  161. _1.BackgroundTransparency = 1
  162. _1.BorderSizePixel = 0
  163. _1.Position = UDim2.new(0.109550565, 0, 0.423631132, 0)
  164. _1.Size = UDim2.new(0, 40, 0, 53)
  165. _1.Font = Enum.Font.ArialBold
  166. _1.FontSize = Enum.FontSize.Size14
  167. _1.Text = " "
  168. _1.TextColor3 = Color3.new(255, 0, 0)
  169. _1.TextScaled = true
  170. _1.TextSize = 14
  171. _1.TextWrapped = true
  172.  
  173. _2.Name = "2"
  174. _2.Parent = IntroImage
  175. _2.BackgroundColor3 = Color3.new(0, 0.298039, 0.498039)
  176. _2.BackgroundTransparency = 1
  177. _2.BorderSizePixel = 0
  178. _2.Position = UDim2.new(0.221910119, 0, 0.423631132, 0)
  179. _2.Size = UDim2.new(0, 40, 0, 53)
  180. _2.Font = Enum.Font.ArialBold
  181. _2.FontSize = Enum.FontSize.Size14
  182. _2.Text = "B"
  183. _2.TextColor3 = Color3.new(255, 0, 0)
  184. _2.TextScaled = true
  185. _2.TextSize = 14
  186. _2.TextWrapped = true
  187.  
  188. _3.Name = "3"
  189. _3.Parent = IntroImage
  190. _3.BackgroundColor3 = Color3.new(0, 0.298039, 0.498039)
  191. _3.BackgroundTransparency = 1
  192. _3.BorderSizePixel = 0
  193. _3.Position = UDim2.new(0.334269673, 0, 0.423631132, 0)
  194. _3.Size = UDim2.new(0, 40, 0, 53)
  195. _3.Font = Enum.Font.ArialBold
  196. _3.FontSize = Enum.FontSize.Size14
  197. _3.Text = "L"
  198. _3.TextColor3 = Color3.new(255, 0, 0)
  199. _3.TextScaled = true
  200. _3.TextSize = 14
  201. _3.TextWrapped = true
  202.  
  203. _4.Name = "4"
  204. _4.Parent = IntroImage
  205. _4.BackgroundColor3 = Color3.new(0, 0.298039, 0.498039)
  206. _4.BackgroundTransparency = 1
  207. _4.BorderSizePixel = 0
  208. _4.Position = UDim2.new(0.446629226, 0, 0.423631132, 0)
  209. _4.Size = UDim2.new(0, 40, 0, 53)
  210. _4.Font = Enum.Font.ArialBold
  211. _4.FontSize = Enum.FontSize.Size14
  212. _4.Text = "O"
  213. _4.TextColor3 = Color3.new(255, 0, 0)
  214. _4.TextScaled = true
  215. _4.TextSize = 14
  216. _4.TextWrapped = true
  217.  
  218. _5.Name = "5"
  219. _5.Parent = IntroImage
  220. _5.BackgroundColor3 = Color3.new(0, 0.298039, 0.498039)
  221. _5.BackgroundTransparency = 1
  222. _5.BorderSizePixel = 0
  223. _5.Position = UDim2.new(0.55898881, 0, 0.423631132, 0)
  224. _5.Size = UDim2.new(0, 40, 0, 53)
  225. _5.Font = Enum.Font.ArialBold
  226. _5.FontSize = Enum.FontSize.Size14
  227. _5.Text = "O"
  228. _5.TextColor3 = Color3.new(255, 0, 0)
  229. _5.TextScaled = true
  230. _5.TextSize = 14
  231. _5.TextWrapped = true
  232.  
  233. _6.Name = "6"
  234. _6.Parent = IntroImage
  235. _6.BackgroundColor3 = Color3.new(0, 0.298039, 0.498039)
  236. _6.BackgroundTransparency = 1
  237. _6.BorderSizePixel = 0
  238. _6.Position = UDim2.new(0.671348333, 0, 0.423631132, 0)
  239. _6.Size = UDim2.new(0, 40, 0, 53)
  240. _6.Font = Enum.Font.ArialBold
  241. _6.FontSize = Enum.FontSize.Size14
  242. _6.Text = "D"
  243. _6.TextColor3 = Color3.new(255, 0, 0)
  244. _6.TextScaled = true
  245. _6.TextSize = 14
  246. _6.TextWrapped = true
  247.  
  248. _7.Name = "7"
  249. _7.Parent = IntroImage
  250. _7.BackgroundColor3 = Color3.new(1, 1, 1)
  251. _7.BackgroundTransparency = 1
  252. _7.BorderSizePixel = 0
  253. _7.Position = UDim2.new(0.775280893, 0, 0.423631132, 0)
  254. _7.Size = UDim2.new(0, 40, 0, 53)
  255. _7.Font = Enum.Font.ArialBold
  256. _7.FontSize = Enum.FontSize.Size14
  257. _7.Text = " "
  258. _7.TextColor3 = Color3.new(255, 0, 0)
  259. _7.TextScaled = true
  260. _7.TextSize = 14
  261. _7.TextWrapped = true
  262.  
  263.  
  264.  
  265. _1.TextTransparency = 0.2
  266. wait()
  267. _2.TextTransparency = 0.2
  268. wait()
  269. _3.TextTransparency = 0.2
  270. wait()
  271. _4.TextTransparency = 0.2
  272. wait()
  273. _5.TextTransparency = 0.2
  274. wait()
  275. _6.TextTransparency = 0.2
  276. wait()
  277. _7.TextTransparency = 0.2
  278. wait()
  279. IntroImage.ImageTransparency = 0.2
  280. wait()
  281. _1.TextTransparency = 0.3
  282. wait()
  283. _2.TextTransparency = 0.3
  284. wait()
  285. _3.TextTransparency = 0.3
  286. wait()
  287. _4.TextTransparency = 0.3
  288. wait()
  289. _5.TextTransparency = 0.3
  290. wait()
  291. _6.TextTransparency = 0.3
  292. wait()
  293. _7.TextTransparency = 0.3
  294. wait()
  295. IntroImage.ImageTransparency = 0.3
  296. wait()
  297. _1.TextTransparency = 0.4
  298. wait()
  299. _2.TextTransparency = 0.4
  300. wait()
  301. _3.TextTransparency = 0.4
  302. wait()
  303. _4.TextTransparency = 0.4
  304. wait()
  305. _5.TextTransparency = 0.4
  306. wait()
  307. _6.TextTransparency = 0.4
  308. wait()
  309. _7.TextTransparency = 0.4
  310. wait()
  311. IntroImage.ImageTransparency = 0.4
  312. wait()
  313. _1.TextTransparency = 0.5
  314. wait()
  315. _2.TextTransparency = 0.5
  316. wait()
  317. _3.TextTransparency = 0.4
  318. wait()
  319. _4.TextTransparency = 0.5
  320. wait()
  321. _5.TextTransparency = 0.5
  322. wait()
  323. _6.TextTransparency = 0.5
  324. wait()
  325. _7.TextTransparency = 0.5
  326. wait()
  327. IntroImage.ImageTransparency = 0.5
  328. wait()
  329. _1.TextTransparency = 0.6
  330. wait()
  331. _2.TextTransparency = 0.6
  332. wait()
  333. _3.TextTransparency = 0.6
  334. wait()
  335. _4.TextTransparency = 0.6
  336. wait()
  337. _5.TextTransparency = 0.6
  338. wait()
  339. _6.TextTransparency = 0.6
  340. wait()
  341. _7.TextTransparency = 0.6
  342. wait()
  343. IntroImage.ImageTransparency = 0.6
  344. wait()
  345. _1.TextTransparency = 0.7
  346. wait()
  347. _2.TextTransparency = 0.7
  348. wait()
  349. _3.TextTransparency = 0.7
  350. wait()
  351. _4.TextTransparency = 0.7
  352. wait()
  353. _5.TextTransparency = 0.7
  354. wait()
  355. _6.TextTransparency = 0.7
  356. wait()
  357. _7.TextTransparency = 0.7
  358. wait()
  359. IntroImage.ImageTransparency = 0.7
  360. wait()
  361. _1.TextTransparency = 0.8
  362. wait()
  363. _2.TextTransparency = 0.8
  364. wait()
  365. _3.TextTransparency = 0.8
  366. wait()
  367. _4.TextTransparency = 0.8
  368. wait()
  369. _5.TextTransparency = 0.8
  370. wait()
  371. _6.TextTransparency = 0.8
  372. wait()
  373. _7.TextTransparency = 0.8
  374. wait()
  375. IntroImage.ImageTransparency = 0.8
  376. wait()
  377. _1.TextTransparency = 0.9
  378. wait()
  379. _2.TextTransparency = 0.9
  380. wait()
  381. _3.TextTransparency = 0.9
  382. wait()
  383. _4.TextTransparency = 0.9
  384. wait()
  385. _5.TextTransparency = 0.9
  386. wait()
  387. _6.TextTransparency = 0.9
  388. wait()
  389. _7.TextTransparency = 0.9
  390. wait()
  391. IntroImage.ImageTransparency = 0.9
  392. wait()
  393. _1.TextTransparency = 1
  394. wait()
  395. _2.TextTransparency = 1
  396. wait()
  397. _3.TextTransparency = 1
  398. wait()
  399. _4.TextTransparency = 1
  400. wait()
  401. _5.TextTransparency = 1
  402. wait()
  403. _6.TextTransparency = 1
  404. wait()
  405. _7.TextTransparency = 1
  406. wait()
  407. IntroImage.ImageTransparency = 0.9
  408. wait()
  409. _1.TextTransparency = 1.1
  410. wait()
  411. _2.TextTransparency = 1.1
  412. wait()
  413. _3.TextTransparency = 1.1
  414. wait()
  415. _4.TextTransparency = 1.1
  416. wait()
  417. _5.TextTransparency = 1.1
  418. wait()
  419. _6.TextTransparency = 1.1
  420. wait()
  421. _7.TextTransparency = 1.1
  422. wait()
  423. IntroImage.ImageTransparency = 5.1
  424. wait()
  425. Intro:Destroy()
  426. wait()
  427.  
  428. local s = Instance.new("Sound")
  429. s.Name = "Sound"
  430. s.SoundId = "http://www.roblox.com/asset/?id=2528420941"
  431. s.Volume = 0
  432. s.Looped = false
  433. s.archivable = false
  434. s.Parent = game.Workspace
  435. --Join
  436.  
  437. local k = Instance.new("Sound")
  438. k.Name = "Soundzz"
  439. k.SoundId = "http://www.roblox.com/asset/?id=305977837"
  440. k.Volume = 0
  441. k.Looped = false
  442. k.archivable = false
  443. k.Parent = game.Workspace
  444. --Left
  445.  
  446. local q = Instance.new("Sound")
  447. q.Name = "Soundzzzz"
  448. q.SoundId = "http://www.roblox.com/asset/?id=249869145"
  449. q.Volume = 0
  450. q.Looped = false
  451. q.archivable = false
  452. q.Parent = game.Workspace
  453. --Systems Online
  454.  
  455. local function SendNotification(title,text,duration,...)
  456. game.StarterGui:SetCore("SendNotification", {
  457. Title = title;
  458. Text = text;
  459. Icon = "";
  460. Duration = duration;
  461. })
  462. end
  463.  
  464. game.Players.ChildAdded:Connect(function(player)
  465. if not pcall (function()
  466. SendNotification("Player JOINED",""..player.Name.." has JOINED the game",5 )
  467. s:Play()
  468. end) then
  469. print ("Error")
  470. end
  471. end)
  472. ---------------------------------------------------------------------
  473. -- Same extra's apply down here as well.
  474.  
  475. game.Players.ChildRemoved:Connect(function(player)
  476. if not pcall (function()
  477. SendNotification("Player LEFT",""..player.Name.." has LEFT the game",4.4 )
  478. k:Play()
  479. end) then
  480. print ("Error")
  481. end
  482. end)
  483.  
  484. SendNotification("Loaded","Join and leave detector is loaded",2)
  485. q:Play()
  486.  
  487. -- Variables --
  488.  
  489. local Script = "BLOOD"
  490. local gFont = "SourceSans"
  491. local Visi = true
  492.  
  493. -- Functions --
  494.  
  495. function Log(text, r, g, b, font)
  496. game.StarterGui:SetCore("ChatMakeSystemMessage", {
  497. Text = "{" .. tostring(Script) .. "} - " .. text;
  498. Color = Color3.new(r, g, b);
  499. Font = Enum.Font[font];
  500. FontSize = Enum.FontSize.Size10;
  501. })
  502. end
  503. Log("Loading framework...", 255,0,0, tostring(gFont))
  504. ---------------------------------------------------------------------
  505.  
  506. -- Automatically Add players to Blacklist --
  507.  
  508. Mouse = game.Players.LocalPlayer:GetMouse()
  509.  
  510. Instance.new('RemoteEvent', game:service'ReplicatedStorage'.Interaction).Name = "Ban"
  511.  
  512. Client = game.ReplicatedStorage.Interaction.ClientSetListPlayer
  513. players = game.Players
  514. for i, v in pairs(players:GetPlayers()) do
  515. if v.Name ~= players.LocalPlayer.Name then
  516. Client:InvokeServer(players.LocalPlayer.BlacklistFolder, v, true)
  517. end
  518. end
  519. players.PlayerAdded:connect(function(plr)
  520. Client:InvokeServer(players.LocalPlayer.BlacklistFolder, plr, true)
  521. end)
  522.  
  523. game:GetService("StarterGui"):SetCore("SendNotification", {
  524. Title = "BLOOD",
  525. Text = "Loaded Successful."
  526. })
  527.  
  528. local players = game:GetService('Players')
  529. if game.Players.LocalPlayer then
  530. game.StarterGui:SetCore('SendNotification', {
  531. Title = ' '.. players.LocalPlayer.Name..'!',
  532. Text = 'Welcome to Bloods GUI!',
  533. Icon = [[http://www.roblox.com/Thumbs/Avatar.ashx?x=100&y=100&Format=Png&userName=]]..players.LocalPlayer.Name..[[&RAND]] .. math.random(1,10000000),
  534. Duration = 5,
  535. })
  536. end
  537.  
  538. ---------------------------------------------------------------------
  539. WCollide = "Nothing"
  540. afkactive = false
  541. CustomLocationSet = false
  542.  
  543.  
  544. BLOOD = Instance.new("ScreenGui")
  545. MainFrame = Instance.new("Frame")
  546. ImageLabel = Instance.new("ImageLabel")
  547. OpenFrame = Instance.new("Frame")
  548. Open = Instance.new("ImageButton")
  549. CloseBLOOD = Instance.new("TextButton")
  550. Minimize = Instance.new("TextButton")
  551. MenuFrame = Instance.new("Frame")
  552. MenuFramea = Instance.new("Frame")
  553. AIntroImage = Instance.new("ImageLabel")
  554. AIntroImage1 = Instance.new("ImageLabel")
  555. BloodFrameInfo = Instance.new("TextLabel")
  556. Picker = Instance.new("ScrollingFrame")
  557. AIntroImage = Instance.new("ImageButton")
  558. ChangeItem = Instance.new("Frame")
  559. CurrentItem = Instance.new("ImageButton")
  560. LT2GUI2Frame = Instance.new("Frame")
  561. Btoolamenu = Instance.new("ImageButton")
  562. FunStuffHOVER = Instance.new("TextButton")
  563. FunStuffTHOMAS = Instance.new("TextButton")
  564. FunStuffPOLICE = Instance.new("TextButton")
  565. FunStuffSPRAY = Instance.new("TextButton")
  566. FunStuffCOCA = Instance.new("TextButton")
  567. FunStuffLEAKED = Instance.new("TextButton")
  568. FunStuffFLASH = Instance.new("TextButton")
  569. DeleteTool = Instance.new("TextButton")
  570. CopyTool = Instance.new("TextButton")
  571. MoveTool = Instance.new("TextButton")
  572. BuyFrame = Instance.new("Frame")
  573. Buymenu = Instance.new("ImageButton")
  574. bcps = Instance.new("TextButton")
  575. fshop = Instance.new("TextButton")
  576. wrus = Instance.new("TextButton")
  577. bp = Instance.new("TextButton")
  578. ls = Instance.new("TextButton")
  579. Halloween = Instance.new("TextButton")
  580. toolaFrame = Instance.new("Frame")
  581. toolamenu = Instance.new("ImageButton")
  582. WalkspeedLabel = Instance.new("TextButton")
  583. JumpText = Instance.new("TextBox")
  584. WalkSpeed = Instance.new("TextLabel")
  585. JumpPower = Instance.new("TextButton")
  586. AntiBlack = Instance.new("TextButton")
  587. GriefFly = Instance.new("TextButton")
  588. StopGriefFly = Instance.new("TextButton")
  589. Fly = Instance.new("TextButton")
  590. PinkWires = Instance.new("TextButton")
  591. WaterCollide = Instance.new("TextButton")
  592. ClickTP = Instance.new("TextButton")
  593. Noclip = Instance.new("TextButton")
  594. AntiAFK = Instance.new("TextButton")
  595. AntiAFKtime = Instance.new("TextLabel")
  596. Fog = Instance.new("TextButton")
  597. CARA = Instance.new("TextButton")
  598. CARAs = Instance.new("TextBox")
  599. RemoveT = Instance.new("TextButton")
  600. Brid = Instance.new("TextLabel")
  601. BridDown = Instance.new("TextButton")
  602. Bridup = Instance.new("TextButton")
  603. ReJoinServer = Instance.new("TextButton")
  604. Reset = Instance.new("TextButton")
  605. WipeBase = Instance.new("TextButton")
  606. MaxLand = Instance.new("TextButton")
  607. BluePrints = Instance.new("TextButton")
  608. Landart = Instance.new("TextButton")
  609. Hoofer = Instance.new("TextButton")
  610. TripleWalls = Instance.new("TextButton")
  611. DoubleWalls = Instance.new("TextButton")
  612. SingleWalls = Instance.new("TextButton")
  613. BaseFLOOR = Instance.new("TextButton")
  614. PaintFill = Instance.new("TextButton")
  615. ArtFrame = Instance.new("Frame")
  616. Artmenu = Instance.new("ImageButton")
  617. Paint = Instance.new("TextButton")
  618. Slot = Instance.new("TextBox")
  619. DMoney = Instance.new("TextButton")
  620. Load = Instance.new("TextButton")
  621. Store = Instance.new("TextButton")
  622. Restore = Instance.new("TextButton")
  623. SaveSlot = Instance.new("TextButton")
  624. DropAxes = Instance.new("TextButton")
  625. CountAxes = Instance.new("TextButton")
  626. GetWires = Instance.new("TextButton")
  627. GetVehicle = Instance.new("TextButton")
  628. GetFurniture = Instance.new("TextButton")
  629. GetStructure = Instance.new("TextButton")
  630. GetGifts = Instance.new("TextButton")
  631. GetAxes = Instance.new("TextButton")
  632. GetItems = Instance.new("TextButton")
  633. GetWood = Instance.new("TextButton")
  634. ItemDupe = Instance.new("TextButton")
  635. CopyBase = Instance.new("TextButton")
  636. AXETRUCK = Instance.new("TextButton")
  637. WireObjects = Instance.new("TextButton")
  638. giftsport = Instance.new("TextButton")
  639. HardStructures = Instance.new("TextButton")
  640. other = Instance.new("TextButton")
  641. other1 = Instance.new("TextButton")
  642. TPtreesPlanks = Instance.new("TextButton")
  643. PlayerNameBox = Instance.new("TextBox")
  644. CopyFrame = Instance.new("Frame")
  645. Copymenu = Instance.new("ImageButton")
  646. Treeaura = Instance.new("TextButton")
  647. Tptree = Instance.new("TextButton")
  648. TptreeFrame = Instance.new("Frame")
  649. Type = Instance.new("TextBox")
  650. TpAllPlanks = Instance.new("TextButton")
  651. TPWood = Instance.new("TextButton")
  652. SellPlanks = Instance.new("TextButton")
  653. SellWood = Instance.new("TextButton")
  654. Harddrag = Instance.new("TextButton")
  655. Goldaxe = Instance.new("TextButton")
  656. WoodFrame = Instance.new("Frame")
  657. Woodmenu = Instance.new("ImageButton")
  658. SawmillTp = Instance.new("TextButton")
  659. Waypoints = Instance.new("ScrollingFrame")
  660. Stranger = Instance.new("TextButton")
  661. BobsShack = Instance.new("TextButton")
  662. PlotTp = Instance.new("TextButton")
  663. FancyFurnishings = Instance.new("TextButton")
  664. FineArtsShop = Instance.new("TextButton")
  665. LinksLogic = Instance.new("TextButton")
  666. SpawnPoint = Instance.new("TextButton")
  667. Dock = Instance.new("TextButton")
  668. Bridge = Instance.new("TextButton")
  669. ShrineOfSight = Instance.new("TextButton")
  670. TheDen = Instance.new("TextButton")
  671. VolcanoWin = Instance.new("TextButton")
  672. SkiLodge = Instance.new("TextButton")
  673. ShowLocation = Instance.new("TextButton")
  674. CustomTPPoint = Instance.new("TextButton")
  675. Teleport = Instance.new("ImageButton")
  676. PlayerFrame = Instance.new("Frame")
  677. Player1 = Instance.new("TextButton")
  678. Player2 = Instance.new("TextButton")
  679. Player3 = Instance.new("TextButton")
  680. Player4 = Instance.new("TextButton")
  681. Player5 = Instance.new("TextButton")
  682. Player6 = Instance.new("TextButton")
  683. PlyrSel = Instance.new("TextLabel")
  684. TpPlayer = Instance.new("TextButton")
  685. TpBase = Instance.new("TextButton")
  686. Player = Instance.new("ImageButton")
  687. Depart = Instance.new("TextLabel")
  688. Paintingf = Instance.new("TextButton")
  689. InfoText1 = Instance.new("TextLabel")
  690. BigPlank = Instance.new("TextButton")
  691. BirchTree = Instance.new("ImageButton")
  692. CavecrawlerTree = Instance.new("ImageButton")
  693. CherryTree = Instance.new("ImageButton")
  694. ElmTree = Instance.new("ImageButton")
  695. FirTree = Instance.new("ImageButton")
  696. Frosttree = Instance.new("ImageButton")
  697. GenericTree = Instance.new("ImageButton")
  698. GoldTree = Instance.new("ImageButton")
  699. KoaTree = Instance.new("ImageButton")
  700. LavaTree = Instance.new("ImageButton")
  701. PalmTree = Instance.new("ImageButton")
  702. PhantomTree = Instance.new("ImageButton")
  703. PineTree = Instance.new("ImageButton")
  704. SinisterGlow = Instance.new("ImageButton")
  705. Snowglowtree = Instance.new("ImageButton")
  706. Spooktree = Instance.new("ImageButton")
  707. WalnutTree = Instance.new("ImageButton")
  708. ZombieTree = Instance.new("ImageButton")
  709. TpCar = Instance.new("TextButton")
  710. TpCarFrame = Instance.new("Frame")
  711. SpawnPointa = Instance.new("TextButton")
  712. furnabox = Instance.new("TextButton")
  713. LinkLogic = Instance.new("TextButton")
  714. Bshack = Instance.new("TextButton")
  715. Docka = Instance.new("TextButton")
  716. FineShop = Instance.new("TextButton")
  717. Deny = Instance.new("TextButton")
  718. OfSight = Instance.new("TextButton")
  719. SKI = Instance.new("TextButton")
  720. LightHouse = Instance.new("TextButton")
  721. LavaTreeA = Instance.new("TextButton")
  722. PalmTreeA = Instance.new("TextButton")
  723. SnowglowtreeA = Instance.new("TextButton")
  724. GoldTreeA = Instance.new("TextButton")
  725. CarRotate = Instance.new("TextButton")
  726. CarRotates = Instance.new("TextButton")
  727.  
  728. --Properties:
  729. BLOOD.Name = "BLOOD"
  730. BLOOD.Parent = game.CoreGui
  731.  
  732. OpenFrame.Name = "OpenFrame"
  733. OpenFrame.Parent = BLOOD
  734. OpenFrame.BackgroundColor3 = Color3.fromRGB(196, 40, 28)
  735. OpenFrame.BorderColor3 = Color3.fromRGB(196, 40, 28)
  736. OpenFrame.Position = UDim2.new(0.5, -40, 0, -28)
  737. OpenFrame.Size = UDim2.new(0, 80, 0, 20)
  738.  
  739. Open.Name = "Open"
  740. Open.Parent = OpenFrame
  741. Open.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  742. Open.BorderColor3 = Color3.fromRGB(196, 40, 28)
  743. Open.Size = UDim2.new(0, 80, 0, 20)
  744. Open.Image = "rbxassetid://3630810430"
  745. Open.Selectable = true
  746.  
  747. Open.MouseEnter:connect(function()
  748. InfoText1.Visible = true
  749. end)
  750.  
  751. Open.MouseLeave:connect(function()
  752. InfoText1.Visible = false
  753. end)
  754.  
  755. InfoText1.Name = "InfoText1"
  756. InfoText1.Parent = OpenFrame
  757. InfoText1.BackgroundColor3 = Color3.fromRGB(151, 0, 0)
  758. InfoText1.BorderColor3 = Color3.new(0, 0, 0)
  759. InfoText1.BackgroundTransparency = 0.5
  760. InfoText1.Position = UDim2.new(0, -50, 0, 80)
  761. InfoText1.Size = UDim2.new(0, 190, 0, 130)
  762. InfoText1.TextColor3 = Color3.new(1, 1, 1)
  763. InfoText1.Font = Enum.Font.Fantasy
  764. InfoText1.Text = "This Gui was created by Oddy\n\nCredits:\n\nJohiro for the original scripts and fixing some broken ones. Big thanks to DIRT Gui for swapping scripts"
  765. InfoText1.TextSize = 15
  766. InfoText1.TextWrapped = true
  767. InfoText1.Visible = false
  768. InfoText1.ZIndex = 7
  769. InfoText1.TextYAlignment = Enum.TextYAlignment.Top
  770.  
  771. MainFrame.Name = "MainFrame"
  772. MainFrame.Parent = BLOOD
  773. MainFrame.Active = true
  774. MainFrame.Draggable = true
  775. MainFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  776. MainFrame.Position = UDim2.new(0.0111675123, 0, 0.436827958, 0)
  777. MainFrame.Selectable = true
  778. MainFrame.Size = UDim2.new(0, 500, 0, 500)
  779. MainFrame.Visible = false
  780. MainFrame:TweenPosition(UDim2.new(1, -500, 0.7, -210), 'Out','Bounce', 1)
  781.  
  782. ImageLabel.Name = "ImageLabel"
  783. ImageLabel.Parent = MainFrame
  784. ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  785. ImageLabel.Position = UDim2.new(-0.000475523295, 0, -0.00117481197, 0)
  786. ImageLabel.Size = UDim2.new(0, 500, 0, 500)
  787. ImageLabel.Image = "rbxassetid://3883502641"
  788.  
  789. CloseBLOOD.Name = "CloseBLOOD"
  790. CloseBLOOD.Parent = MainFrame
  791. CloseBLOOD.BackgroundColor3 = Color3.new(0, 0, 0)
  792. CloseBLOOD.BorderColor3 = Color3.fromRGB(196, 40, 28)
  793. CloseBLOOD.Position = UDim2.new(0, 5, 0, 5)
  794. CloseBLOOD.Size = UDim2.new(0, 20, 0, 20)
  795. CloseBLOOD.Font = Enum.Font.Fantasy
  796. CloseBLOOD.FontSize = Enum.FontSize.Size18
  797. CloseBLOOD.Text = "X"
  798. CloseBLOOD.TextColor3 = Color3.new(1, 1, 1)
  799. CloseBLOOD.TextScaled = true
  800. CloseBLOOD.TextWrapped = true
  801. CloseBLOOD.TextSize = 17
  802.  
  803. Minimize.Name = "Minimize"
  804. Minimize.Parent = MainFrame
  805. Minimize.BackgroundColor3 = Color3.new(0, 0, 0)
  806. Minimize.BorderColor3 = Color3.fromRGB(196, 40, 28)
  807. Minimize.Position = UDim2.new(0, 26, 0, 5)
  808. Minimize.Size = UDim2.new(0, 20, 0, 20)
  809. Minimize.Font = Enum.Font.Fantasy
  810. Minimize.FontSize = Enum.FontSize.Size18
  811. Minimize.Text = "-"
  812. Minimize.TextColor3 = Color3.new(1, 1, 1)
  813. Minimize.TextScaled = true
  814. Minimize.TextWrapped = true
  815. Minimize.TextSize = 17
  816.  
  817. MenuFrame.Name = "MenuFrame"
  818. MenuFrame.Parent = MainFrame
  819. MenuFrame.BackgroundColor3 = Color3.fromRGB(151, 0, 0)
  820. MenuFrame.BackgroundTransparency = 1
  821. MenuFrame.BorderColor3 = Color3.new(0, 1, 0)
  822. MenuFrame.Position = UDim2.new(0, 5, 0, 30)
  823. MenuFrame.Size = UDim2.new(0, 170, 0,400)
  824.  
  825. MenuFramea.Name = "MenuFrame"
  826. MenuFramea.Parent = MainFrame
  827. MenuFramea.BackgroundColor3 = Color3.fromRGB(151, 0, 0)
  828. MenuFramea.BackgroundTransparency = 1
  829. MenuFramea.BorderColor3 = Color3.new(0, 1, 0)
  830. MenuFramea.Position = UDim2.new(0, 270, 0, 140)
  831. MenuFramea.Size = UDim2.new(0, 120, 0,350)
  832.  
  833. AIntroImage.Name = "IntroImage"
  834. AIntroImage.Parent = MainFrame
  835. AIntroImage.BackgroundColor3 = Color3.new(0, 0.298039, 0.498039)
  836. AIntroImage.BackgroundTransparency = 1
  837. AIntroImage.BorderColor3 = Color3.new(1, 1, 1)
  838. AIntroImage.BorderSizePixel = 0
  839. AIntroImage.Position = UDim2.new(0, 10, 0, 335)
  840. AIntroImage.Size = UDim2.new(0, 120, 0, 30)
  841. AIntroImage.Image = "rbxassetid://3630810430"
  842. AIntroImage.Visible = true
  843.  
  844. AIntroImage1.Name = "IntroImage"
  845. AIntroImage1.Parent = MainFrame
  846. AIntroImage1.BackgroundColor3 = Color3.new(0, 0.298039, 0.498039)
  847. AIntroImage1.BackgroundTransparency = 1
  848. AIntroImage1.BorderColor3 = Color3.new(1, 1, 1)
  849. AIntroImage1.BorderSizePixel = 0
  850. AIntroImage1.Position = UDim2.new(0, 10, 0, 370)
  851. AIntroImage1.Size = UDim2.new(0, 120, 0, 120)
  852. AIntroImage1.Image = "rbxassetid://3940167130"
  853. AIntroImage1.Visible = true
  854.  
  855. BloodFrameInfo.Name = "BloodFrameInfo"
  856. BloodFrameInfo.Parent = MenuFrame
  857. BloodFrameInfo.BackgroundColor3 = Color3.new(0, 0, 0)
  858. BloodFrameInfo.BackgroundTransparency = 1
  859. BloodFrameInfo.Position = UDim2.new(0, 3, 0, 3)
  860. BloodFrameInfo.Size = UDim2.new(0, 164, 0, 310)
  861. BloodFrameInfo.Font = Enum.Font.Fantasy
  862. BloodFrameInfo.FontSize = Enum.FontSize.Size14
  863. BloodFrameInfo.Text = "A NEW ITEM PINK CAR SPAWNER .\n\nFIX will now run on most executers, (AUTOBUY will not work on some).\n\nNew menus Paint tool, Paint Fill and Single Item Port,\n\nNew Port to tree menu.\n\nA BIG THANKS TO JOHIRO FOR WORKING ON THE NEW SCRIPTS.\n\nScripts may LAG and big so give time to load."
  864. BloodFrameInfo.TextColor3 = Color3.new(0, 0, 0)
  865. BloodFrameInfo.TextWrapped = true
  866. BloodFrameInfo.TextSize = 14
  867. BloodFrameInfo.Visible = true
  868. Log("Loaded framework successfully!", 0,255,255, tostring(gFont))
  869.  
  870.  
  871. Depart.Name = "Depart"
  872. Depart.Parent = MainFrame
  873. Depart.BackgroundColor3 = Color3.new(0, 0.298039, 0.498039)
  874. Depart.BorderColor3 = Color3.new(0, 0, 0)
  875. Depart.BorderSizePixel = 2
  876. Depart.Position = UDim2.new(0, 50, 0, 5)
  877. Depart.Size = UDim2.new(0, 130, 0, 20)
  878. Depart.BackgroundTransparency=1
  879. Depart.Font = Enum.Font.Fantasy
  880. Depart.FontSize = Enum.FontSize.Size18
  881. Depart.Text = "Ferry Departs: 0"
  882. Depart.TextColor3 = Color3.new(1, 1, 1)
  883. Depart.TextSize = 15
  884. Depart.TextStrokeColor3 = Color3.new(1, 1, 1)
  885. Depart.TextWrapped = true
  886.  
  887. game.Workspace.Ferry.TimeToDeparture.Changed:connect(function()
  888. Depart.Text = "Ferry Departs: ".. game.Workspace.Ferry.TimeToDeparture.Value
  889. if Depart.Text == "Ferry Departs: 0" then
  890. wait(6)
  891. Depart.Text = "Ferry has Departed"
  892. else
  893. Depart.Text = "Ferry Departs: ".. game.Workspace.Ferry.TimeToDeparture.Value
  894. end
  895. end)
  896.  
  897. ChangeItem.Name = "ChangeItem"
  898. ChangeItem.Parent = MainFrame
  899. ChangeItem.BackgroundColor3 = Color3.fromRGB(193, 40, 28)
  900. ChangeItem.BorderColor3 = Color3.new(0, 0, 0)
  901. ChangeItem.BorderSizePixel = 2
  902. ChangeItem.Position = UDim2.new(0, 390, 1, -110)
  903. ChangeItem.Size = UDim2.new(0, 100, 0, 100)
  904. ChangeItem.ZIndex = 2
  905.  
  906. CurrentItem.Name = "CurrentItem"
  907. CurrentItem.Parent = ChangeItem
  908. CurrentItem.BackgroundColor3 = Color3.new(1, 1, 1)
  909. CurrentItem.BorderColor3 = Color3.new(0, 0, 0)
  910. CurrentItem.BorderSizePixel = 2
  911. CurrentItem.Position = UDim2.new(0, 10, 0, 10)
  912. CurrentItem.Size = UDim2.new(0, 80, 0, 80)
  913. CurrentItem.ZIndex = 2
  914. CurrentItem.Image = "rbxassetid://3886256996"
  915. CurrentItem.ScaleType = Enum.ScaleType.Crop
  916.  
  917. Picker.Name = "Picker"
  918. Picker.Parent = MainFrame
  919. Picker.BackgroundColor3 = Color3.fromRGB(196, 40, 28)
  920. Picker.BorderColor3 = Color3.new(0, 0, 0)
  921. Picker.BorderSizePixel = 2
  922. Picker.Position = UDim2.new(0, 390, 1, -460)
  923. Picker.Size = UDim2.new(0, 100, 0, 345)
  924. Picker.CanvasPosition = Vector2.new(0,0)
  925. Picker.CanvasSize = UDim2.new(0, 0, 0, 687)
  926. Picker.ScrollBarThickness = 10
  927. Picker.VerticalScrollBarPosition = Enum.VerticalScrollBarPosition.Left
  928. Picker.Visible = false
  929.  
  930. Player.Name = "Player"
  931. Player.Parent = Picker
  932. Player.BackgroundColor3 = Color3.fromRGB(196, 40, 28)
  933. Player.BorderColor3 = Color3.new(0, 0, 0)
  934. Player.Position = UDim2.new(0, 15, 0, 5)
  935. Player.Size = UDim2.new(0, 80, 0, 80)
  936. Player.ZIndex = 3
  937. Player.Image = "rbxassetid://3888401903"
  938. Player.ScaleType = Enum.ScaleType.Crop
  939. Player.MouseButton1Click:Connect(function()
  940. CurrentItem.Image = "rbxassetid://3886256996"
  941. AIntroImage.Visible = true
  942. AIntroImage1.Visible = true
  943. end)
  944.  
  945. PlayerFrame.Name = "PlayerFrame"
  946. PlayerFrame.Parent = MenuFrame
  947. PlayerFrame.BackgroundColor3 = Color3.fromRGB(151, 0, 0)
  948. PlayerFrame.BackgroundTransparency = 0
  949. PlayerFrame.BorderColor3 = Color3.new(0, 0, 0)
  950. PlayerFrame.Size = UDim2.new(0, 170, 0, 290)
  951. PlayerFrame.Visible = false
  952.  
  953. PlyrSel.Name = "PlyrSel"
  954. PlyrSel.Parent = PlayerFrame
  955. PlyrSel.BackgroundColor3 = Color3.new(0, 0, 0)
  956. PlyrSel.BackgroundTransparency = 0.15
  957. PlyrSel.BorderColor3 = Color3.new(0, 0, 0)
  958. PlyrSel.Position = UDim2.new(0, 5, 0, 5)
  959. PlyrSel.Size = UDim2.new(0, 160, 0, 20)
  960. PlyrSel.Font = Enum.Font.Fantasy
  961. PlyrSel.FontSize = Enum.FontSize.Size18
  962. PlyrSel.Text = "SELECT A PLAYER"
  963. PlyrSel.TextColor3 = Color3.fromRGB(255, 0, 0)
  964. PlyrSel.TextScaled = true
  965. PlyrSel.TextSize = 17
  966. PlyrSel.TextWrapped = true
  967.  
  968. Player1.Name = "Player1"
  969. Player1.Parent = PlayerFrame
  970. Player1.BackgroundColor3 = Color3.new(0, 0, 0)
  971. Player1.BorderColor3 = Color3.new(0, 0, 0)
  972. Player1.Position = UDim2.new(0, 5, 0, 40)
  973. Player1.Size = UDim2.new(0, 160, 0, 20)
  974. Player1.Font = Enum.Font.Fantasy
  975. Player1.FontSize = Enum.FontSize.Size18
  976. Player1.Text = ""
  977. Player1.TextColor3 = Color3.fromRGB(255, 0, 0)
  978. Player1.TextSize = 16
  979. Player1.TextWrapped = true
  980.  
  981. Player2.Name = "Player2"
  982. Player2.Parent = PlayerFrame
  983. Player2.BackgroundColor3 = Color3.new(0, 0, 0)
  984. Player2.BorderColor3 = Color3.new(0, 0, 0)
  985. Player2.Position = UDim2.new(0, 5, 0, 65)
  986. Player2.Size = UDim2.new(0, 160, 0, 20)
  987. Player2.Font = Enum.Font.Fantasy
  988. Player2.FontSize = Enum.FontSize.Size18
  989. Player2.Text = ""
  990. Player2.TextColor3 = Color3.fromRGB(255, 0, 0)
  991. Player2.TextSize = 16
  992. Player2.TextWrapped = true
  993.  
  994. Player3.Name = "Player3"
  995. Player3.Parent = PlayerFrame
  996. Player3.BackgroundColor3 = Color3.new(0, 0, 0)
  997. Player3.BorderColor3 = Color3.new(0, 0, 0)
  998. Player3.Position = UDim2.new(0, 5, 0, 90)
  999. Player3.Size = UDim2.new(0, 160, 0, 20)
  1000. Player3.Font = Enum.Font.Fantasy
  1001. Player3.FontSize = Enum.FontSize.Size18
  1002. Player3.Text = ""
  1003. Player3.TextColor3 = Color3.fromRGB(255, 0, 0)
  1004. Player3.TextSize = 16
  1005. Player3.TextWrapped = true
  1006.  
  1007. Player4.Name = "Player4"
  1008. Player4.Parent = PlayerFrame
  1009. Player4.BackgroundColor3 = Color3.new(0, 0, 0)
  1010. Player4.BorderColor3 = Color3.new(0, 0, 0)
  1011. Player4.Position = UDim2.new(0, 5, 0, 115)
  1012. Player4.Size = UDim2.new(0, 160, 0, 20)
  1013. Player4.Font = Enum.Font.Fantasy
  1014. Player4.FontSize = Enum.FontSize.Size18
  1015. Player4.Text = ""
  1016. Player4.TextColor3 = Color3.fromRGB(255, 0, 0)
  1017. Player4.TextSize = 16
  1018. Player4.TextWrapped = true
  1019.  
  1020. Player5.Name = "Player5"
  1021. Player5.Parent = PlayerFrame
  1022. Player5.BackgroundColor3 = Color3.new(0, 0, 0)
  1023. Player5.BorderColor3 = Color3.new(0, 0, 0)
  1024. Player5.Position = UDim2.new(0, 5, 0, 140)
  1025. Player5.Size = UDim2.new(0, 160, 0, 20)
  1026. Player5.Font = Enum.Font.Fantasy
  1027. Player5.FontSize = Enum.FontSize.Size18
  1028. Player5.Text = ""
  1029. Player5.TextColor3 = Color3.fromRGB(255, 0, 0)
  1030. Player5.TextSize = 16
  1031. Player5.TextWrapped = true
  1032.  
  1033. Player6.Name = "Player6"
  1034. Player6.Parent = PlayerFrame
  1035. Player6.BackgroundColor3 = Color3.new(0, 0, 0)
  1036. Player6.BorderColor3 = Color3.new(0, 0, 0)
  1037. Player6.Position = UDim2.new(0, 5, 0, 165)
  1038. Player6.Size = UDim2.new(0, 160, 0, 20)
  1039. Player6.Font = Enum.Font.Fantasy
  1040. Player6.FontSize = Enum.FontSize.Size18
  1041. Player6.Text = ""
  1042. Player6.TextColor3 = Color3.fromRGB(255, 0, 0)
  1043. Player6.TextSize = 16
  1044. Player6.TextWrapped = true
  1045.  
  1046. TpPlayer.Name = "TpPlayer"
  1047. TpPlayer.Parent = PlayerFrame
  1048. TpPlayer.BackgroundColor3 = Color3.new(0, 0, 0)
  1049. TpPlayer.BackgroundTransparency = 0
  1050. TpPlayer.BorderColor3 = Color3.new(0, 0, 0)
  1051. TpPlayer.Position = UDim2.new(0, 5, 0, 225)
  1052. TpPlayer.Size = UDim2.new(0, 75, 0, 35)
  1053. TpPlayer.Font = Enum.Font.Fantasy
  1054. TpPlayer.FontSize = Enum.FontSize.Size18
  1055. TpPlayer.Text = "Tp to Player"
  1056. TpPlayer.TextColor3 = Color3.fromRGB(255, 0, 0)
  1057. TpPlayer.TextScaled = true
  1058. TpPlayer.TextWrapped = true
  1059. TpPlayer.TextSize = 14
  1060.  
  1061. TpBase.Name = "TpBase"
  1062. TpBase.Parent = PlayerFrame
  1063. TpBase.BackgroundColor3 = Color3.new(0, 0, 0)
  1064. TpBase.BackgroundTransparency = 0
  1065. TpBase.BorderColor3 = Color3.new(0, 0, 0)
  1066. TpBase.Position = UDim2.new(0, 90, 0, 225)
  1067. TpBase.Size = UDim2.new(0, 75, 0, 35)
  1068. TpBase.Font = Enum.Font.Fantasy
  1069. TpBase.FontSize = Enum.FontSize.Size18
  1070. TpBase.Text = "Tp to\nBase"
  1071. TpBase.TextColor3 = Color3.fromRGB(255, 0, 0)
  1072. TpPlayer.TextSize = 22
  1073.  
  1074.  
  1075.  
  1076. local WayPoints = {
  1077. ["SpawnPoint"] = Vector3.new(155, 3, 74),
  1078. ["Link's Logic"] = Vector3.new(4607, 7.5, -798),
  1079. ["Fancy Furnishings"] = Vector3.new(491, 3, -1720),
  1080. ["Fine Arts Shop"] = Vector3.new(5207, -166, 719),
  1081. ["Bob's Shack"] = Vector3.new(260, 8, -2542),
  1082. ["Strange Man"] = Vector3.new(1061, 16, 1131),
  1083. ["Dock"] = CFrame.new(1114, 3.2, -197),
  1084. ["Bridge"] = CFrame.new(113, 15, -977),
  1085. ["Shrine Of Sight"] = CFrame.new(-1600, 205, 919),
  1086. ["The Den"] = CFrame.new(323, 49, 1930),
  1087. ["Volcano Win"] = CFrame.new(-1675, 358, 1476),
  1088. ["Cave"] = Vector3.new(3581, -179, 430),
  1089. ["Swamp"] = Vector3.new(-1209, 132, -801),
  1090. ["SnowGlow Tree"] = CFrame.new(-1105.9, -6, -894),
  1091. ["Ski Lodge"] = CFrame.new(1244, 66, 2306)
  1092. }
  1093.  
  1094. Teleport.Name = "Teleport"
  1095. Teleport.Parent = Picker
  1096. Teleport.BackgroundColor3 = Color3.new(1, 1, 1)
  1097. Teleport.BorderColor3 = Color3.new(0, 0, 0)
  1098. Teleport.Position = UDim2.new(0, 15, 0,90)
  1099. Teleport.Size = UDim2.new(0, 80, 0, 80)
  1100. Teleport.ZIndex = 3
  1101. Teleport.Image = "rbxassetid://3891269399"
  1102. Teleport.ScaleType = Enum.ScaleType.Crop
  1103. Teleport.MouseButton1Click:Connect(function()
  1104. CurrentItem.Image = "rbxassetid://3886256996"
  1105. AIntroImage.Visible = true
  1106. AIntroImage1.Visible = true
  1107. end)
  1108.  
  1109. Waypoints.Name = "Waypoints"
  1110. Waypoints.Parent = MenuFrame
  1111. Waypoints.BackgroundColor3 = Color3.fromRGB(151, 0, 0)
  1112. Waypoints.BorderColor3 = Color3.new(0, 0, 0)
  1113. Waypoints.Size = UDim2.new(0, 170, 0, 290)
  1114. Waypoints.CanvasPosition = Vector2.new(0,0)
  1115. Waypoints.CanvasSize = UDim2.new(0, 0, 0, 360)
  1116. Waypoints.Visible = false
  1117.  
  1118. SpawnPoint.Name = "SpawnPoint"
  1119. SpawnPoint.Parent = Waypoints
  1120. SpawnPoint.BackgroundColor3 = Color3.new(0, 0, 0)
  1121. SpawnPoint.Position = UDim2.new(0, 5, 0, 3)
  1122. SpawnPoint.Size = UDim2.new(0, 148, 0, 20)
  1123. SpawnPoint.Font = Enum.Font.Fantasy
  1124. SpawnPoint.FontSize = Enum.FontSize.Size18
  1125. SpawnPoint.Text = "Spawn"
  1126. SpawnPoint.TextColor3 = Color3.new(255, 0, 0)
  1127. SpawnPoint.TextSize = 16
  1128. SpawnPoint.MouseButton1Down:connect(function()
  1129. game.Players.LocalPlayer.Character:MoveTo(WayPoints["SpawnPoint"])
  1130. end)
  1131.  
  1132. PlotTp.Name = "PlotTp"
  1133. PlotTp.Parent = Waypoints
  1134. PlotTp.BackgroundColor3 = Color3.new(0, 0, 0)
  1135. PlotTp.Position = UDim2.new(0, 5, 0, 26)
  1136. PlotTp.Size = UDim2.new(0, 148, 0, 20)
  1137. PlotTp.Font = Enum.Font.Fantasy
  1138. PlotTp.FontSize = Enum.FontSize.Size18
  1139. PlotTp.Text = "Tp to Plot"
  1140. PlotTp.TextColor3 = Color3.fromRGB(255, 0, 0)
  1141. PlotTp.TextSize = 16
  1142. PlotTp.MouseButton1Down:connect(function()
  1143. for i,v in pairs(game.Workspace.Properties:GetChildren()) do
  1144. if v.Owner.Value == game.Players.LocalPlayer then
  1145. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.OriginSquare.CFrame + Vector3.new(0,10,0)
  1146. end
  1147. end
  1148. end)
  1149.  
  1150. FancyFurnishings.Name = "FancyFurnishings"
  1151. FancyFurnishings.Parent = Waypoints
  1152. FancyFurnishings.BackgroundColor3 = Color3.new(0, 0, 0)
  1153. FancyFurnishings.Position = UDim2.new(0, 5, 0, 49)
  1154. FancyFurnishings.Size = UDim2.new(0, 148, 0, 20)
  1155. FancyFurnishings.Font = Enum.Font.Fantasy
  1156. FancyFurnishings.FontSize = Enum.FontSize.Size18
  1157. FancyFurnishings.Text = "Fancy Furnishings"
  1158. FancyFurnishings.TextColor3 = Color3.new(255, 0, 0)
  1159. FancyFurnishings.TextSize = 16
  1160. FancyFurnishings.MouseButton1Down:connect(function()
  1161. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Fancy Furnishings"])
  1162. end)
  1163.  
  1164. LinksLogic.Name = "LinksLogic"
  1165. LinksLogic.Parent = Waypoints
  1166. LinksLogic.BackgroundColor3 = Color3.new(0, 0, 0)
  1167. LinksLogic.Position = UDim2.new(0, 5, 0, 72)
  1168. LinksLogic.Size = UDim2.new(0, 148, 0, 20)
  1169. LinksLogic.Font = Enum.Font.Fantasy
  1170. LinksLogic.FontSize = Enum.FontSize.Size18
  1171. LinksLogic.Text = "Link's Logic"
  1172. LinksLogic.TextColor3 = Color3.new(255, 0, 0)
  1173. LinksLogic.TextSize = 16
  1174. LinksLogic.MouseButton1Down:connect(function()
  1175. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Link's Logic"])
  1176. end)
  1177.  
  1178. FineArtsShop.Name = "FineArtsShop"
  1179. FineArtsShop.Parent = Waypoints
  1180. FineArtsShop.BackgroundColor3 = Color3.new(0, 0, 0)
  1181. FineArtsShop.Position = UDim2.new(0, 5, 0, 95)
  1182. FineArtsShop.Size = UDim2.new(0, 148, 0, 20)
  1183. FineArtsShop.Font = Enum.Font.Fantasy
  1184. FineArtsShop.FontSize = Enum.FontSize.Size18
  1185. FineArtsShop.Text = "Fine Arts Shop"
  1186. FineArtsShop.TextColor3 = Color3.new(255, 0, 0)
  1187. FineArtsShop.TextSize = 16
  1188. FineArtsShop.MouseButton1Down:connect(function()
  1189. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Fine Arts Shop"])
  1190. end)
  1191.  
  1192. BobsShack.Name = "BobsShack"
  1193. BobsShack.Parent = Waypoints
  1194. BobsShack.BackgroundColor3 = Color3.new(0, 0, 0)
  1195. BobsShack.Position = UDim2.new(0, 5, 0, 118)
  1196. BobsShack.Size = UDim2.new(0, 148, 0, 20)
  1197. BobsShack.Font = Enum.Font.Fantasy
  1198. BobsShack.FontSize = Enum.FontSize.Size18
  1199. BobsShack.Text = "Bob's Shack"
  1200. BobsShack.TextColor3 = Color3.fromRGB(255, 0, 0)
  1201. BobsShack.TextSize = 16
  1202. BobsShack.MouseButton1Down:connect(function()
  1203. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Bob's Shack"])
  1204. end)
  1205.  
  1206. TheDen.Name = "TheDen"
  1207. TheDen.Parent = Waypoints
  1208. TheDen.BackgroundColor3 = Color3.new(0, 0, 0)
  1209. TheDen.Position = UDim2.new(0, 5, 0, 141)
  1210. TheDen.Size = UDim2.new(0, 148, 0, 20)
  1211. TheDen.Font = Enum.Font.Fantasy
  1212. TheDen.FontSize = Enum.FontSize.Size18
  1213. TheDen.Text = "The Den"
  1214. TheDen.TextColor3 = Color3.new(255, 0, 0)
  1215. TheDen.TextSize = 16
  1216. TheDen.MouseButton1Down:connect(function()
  1217. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1218. uTorso.CFrame = WayPoints["The Den"]
  1219. end)
  1220.  
  1221. ShrineOfSight.Name = "ShrineOfSight"
  1222. ShrineOfSight.Parent = Waypoints
  1223. ShrineOfSight.BackgroundColor3 = Color3.new(0, 0, 0)
  1224. ShrineOfSight.Position = UDim2.new(0, 5, 0, 164)
  1225. ShrineOfSight.Size = UDim2.new(0, 148, 0, 20)
  1226. ShrineOfSight.Font = Enum.Font.Fantasy
  1227. ShrineOfSight.FontSize = Enum.FontSize.Size18
  1228. ShrineOfSight.Text = "Shrine Of Sight"
  1229. ShrineOfSight.TextColor3 = Color3.new(255, 0, 0)
  1230. ShrineOfSight.TextSize = 16
  1231. ShrineOfSight.MouseButton1Down:connect(function()
  1232. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1233. uTorso.CFrame = WayPoints["Shrine Of Sight"]
  1234. end)
  1235.  
  1236. SkiLodge.Name = "Ski Lodge"
  1237. SkiLodge.Parent = Waypoints
  1238. SkiLodge.BackgroundColor3 = Color3.new(0, 0, 0)
  1239. SkiLodge.Position = UDim2.new(0, 5, 0, 187)
  1240. SkiLodge.Size = UDim2.new(0, 148, 0, 20)
  1241. SkiLodge.Font = Enum.Font.Fantasy
  1242. SkiLodge.FontSize = Enum.FontSize.Size18
  1243. SkiLodge.Text = "Ski Lodge"
  1244. SkiLodge.TextColor3 = Color3.new(255, 0, 0)
  1245. SkiLodge.TextSize = 16
  1246. SkiLodge.MouseButton1Down:connect(function()
  1247. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1248. uTorso.CFrame = WayPoints["Ski Lodge"]
  1249. end)
  1250.  
  1251. Dock.Name = "Dock"
  1252. Dock.Parent = Waypoints
  1253. Dock.BackgroundColor3 = Color3.new(0, 0, 0)
  1254. Dock.Position = UDim2.new(0, 5, 0, 210)
  1255. Dock.Size = UDim2.new(0, 148, 0, 20)
  1256. Dock.Font = Enum.Font.Fantasy
  1257. Dock.FontSize = Enum.FontSize.Size18
  1258. Dock.Text = "Dock"
  1259. Dock.TextColor3 = Color3.new(255, 0, 0)
  1260. Dock.TextSize = 16
  1261. Dock.MouseButton1Down:connect(function()
  1262. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1263. uTorso.CFrame = WayPoints["Dock"]
  1264. end)
  1265.  
  1266. Bridge.Name = "Bridge"
  1267. Bridge.Parent = Waypoints
  1268. Bridge.BackgroundColor3 = Color3.new(0, 0, 0)
  1269. Bridge.Position = UDim2.new(0, 5, 0, 233)
  1270. Bridge.Size = UDim2.new(0, 148, 0, 20)
  1271. Bridge.Font = Enum.Font.Fantasy
  1272. Bridge.FontSize = Enum.FontSize.Size18
  1273. Bridge.Text = "Bridge"
  1274. Bridge.TextColor3 = Color3.new(255, 0, 0)
  1275. Bridge.TextSize = 16
  1276. Bridge.MouseButton1Down:connect(function()
  1277. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1278. uTorso.CFrame = WayPoints["Bridge"]
  1279. end)
  1280.  
  1281. Stranger.Name = "Stranger"
  1282. Stranger.Parent = Waypoints
  1283. Stranger.BackgroundColor3 = Color3.new(0, 0, 0)
  1284. Stranger.Position = UDim2.new(0, 5, 0, 256)
  1285. Stranger.Size = UDim2.new(0, 148, 0, 20)
  1286. Stranger.Font = Enum.Font.Fantasy
  1287. Stranger.FontSize = Enum.FontSize.Size18
  1288. Stranger.Text = "Stranger"
  1289. Stranger.TextColor3 = Color3.fromRGB(255, 0, 0)
  1290. Stranger.TextSize = 16
  1291. Stranger.MouseButton1Down:connect(function()
  1292. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Strange Man"])
  1293. end)
  1294.  
  1295. VolcanoWin.Name = "VolcanoWin"
  1296. VolcanoWin.Parent = Waypoints
  1297. VolcanoWin.BackgroundColor3 = Color3.new(0, 0, 0)
  1298. VolcanoWin.Position = UDim2.new(0, 5, 0, 279)
  1299. VolcanoWin.Size = UDim2.new(0, 148, 0, 20)
  1300. VolcanoWin.Font = Enum.Font.Fantasy
  1301. VolcanoWin.FontSize = Enum.FontSize.Size18
  1302. VolcanoWin.Text = "Volcano Win"
  1303. VolcanoWin.TextColor3 = Color3.new(255, 0, 0)
  1304. VolcanoWin.TextSize = 16
  1305. VolcanoWin.MouseButton1Down:connect(function()
  1306. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1307. uTorso.CFrame = WayPoints["Volcano Win"]
  1308. end)
  1309.  
  1310. ShowLocation.Name = "ShowLocation"
  1311. ShowLocation.Parent = Waypoints
  1312. ShowLocation.BackgroundColor3 = Color3.new(0, 0, 0)
  1313. ShowLocation.Position = UDim2.new(0, 5, 0, 302)
  1314. ShowLocation.Size = UDim2.new(0, 148, 0, 30)
  1315. ShowLocation.Font = Enum.Font.Fantasy
  1316. ShowLocation.FontSize = Enum.FontSize.Size14
  1317. ShowLocation.Text = "Show Current Coords\nSet Custom Location"
  1318. ShowLocation.TextColor3 = Color3.new(255, 0, 0)
  1319. ShowLocation.TextSize = 13
  1320.  
  1321. CustomTPPoint.Name = "CustomTPPoint"
  1322. CustomTPPoint.Parent = Waypoints
  1323. CustomTPPoint.BackgroundColor3 = Color3.new(0, 0, 0)
  1324. CustomTPPoint.Position = UDim2.new(0, 5, 0, 335)
  1325. CustomTPPoint.Size = UDim2.new(0, 148, 0, 20)
  1326. CustomTPPoint.Font = Enum.Font.Fantasy
  1327. CustomTPPoint.FontSize = Enum.FontSize.Size14
  1328. CustomTPPoint.Text = "TP to Custom Location"
  1329. CustomTPPoint.TextColor3 = Color3.new(255, 0, 0)
  1330. CustomTPPoint.TextSize = 13
  1331.  
  1332. -- Scripts:
  1333.  
  1334. --- Show Current Location
  1335.  
  1336. ShowLocation.MouseButton1Down:connect(function()
  1337.  
  1338. function round(num, numDecimalPlaces)
  1339. local mult = 10^(numDecimalPlaces or 0)
  1340. return math.floor(num * mult + 0.5) / mult
  1341. end
  1342.  
  1343. LocationX = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.x, 1)
  1344. LocationY = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.y, 1)
  1345. LocationZ = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.z, 1)
  1346. ShowLocation.Text = "Current/Set Location\n"..LocationX..", "..LocationY..", "..LocationZ
  1347. CustomTPPoint.Text = "TP to "..LocationX..", "..LocationY..", "..LocationZ
  1348. CustomLocationSet = true
  1349. end)
  1350.  
  1351. --- TP to custom location ---
  1352.  
  1353. CustomTPPoint.MouseButton1Down:connect(function()
  1354. if CustomLocationSet == true then
  1355. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1356. uTorso.CFrame = CFrame.new(LocationX, LocationY, LocationZ)
  1357. end
  1358. end)
  1359.  
  1360.  
  1361. --- Player Tp ---
  1362.  
  1363. local buttons = {
  1364. Player1,
  1365. Player2,
  1366. Player3,
  1367. Player4,
  1368. Player5,
  1369. Player6
  1370. }
  1371. spawn(function()
  1372. while true do
  1373. Player1.Text = ""
  1374. Player2.Text = ""
  1375. Player3.Text = ""
  1376. Player4.Text = ""
  1377. Player5.Text = ""
  1378. Player6.Text = ""
  1379. for i, v in pairs(game.Players:GetChildren()) do
  1380. buttons[i].Text = v.Name
  1381. buttons[i].Visible = true
  1382. end
  1383. wait(0.5)
  1384. end
  1385. end)
  1386.  
  1387. Player1.MouseButton1Down:connect(function()
  1388. PlyrSel.Text = Player1.Text
  1389. end)
  1390. Player2.MouseButton1Down:connect(function()
  1391. PlyrSel.Text = Player2.Text
  1392. end)
  1393. Player3.MouseButton1Down:connect(function()
  1394. PlyrSel.Text = Player3.Text
  1395. end)
  1396. Player4.MouseButton1Down:connect(function()
  1397. PlyrSel.Text = Player4.Text
  1398. end)
  1399. Player5.MouseButton1Down:connect(function()
  1400. PlyrSel.Text = Player5.Text
  1401. end)
  1402. Player6.MouseButton1Down:connect(function()
  1403. PlyrSel.Text = Player6.Text
  1404. end)
  1405.  
  1406. TpPlayer.MouseButton1Down:connect(function()
  1407. if PlyrSel.Text == "SELECT A PLAYER" then
  1408. warn("No Player Selected")
  1409. else
  1410. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace[PlyrSel.Text].HumanoidRootPart.CFrame
  1411. end
  1412. end)
  1413. TpBase.MouseButton1Down:connect(function()
  1414. for i, v in pairs(game.Workspace.Properties:GetChildren()) do
  1415. if v.Owner.Value == game.Players[PlyrSel.Text] then
  1416. local p= CFrame.new(v.OriginSquare.CFrame.x, v.OriginSquare.CFrame.y +3.5, v.OriginSquare.CFrame.z)
  1417. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = p
  1418. end
  1419. end
  1420. end)
  1421.  
  1422.  
  1423. Woodmenu.Name = "Woodmenu"
  1424. Woodmenu.Parent = Picker
  1425. Woodmenu.BackgroundColor3 = Color3.new(1, 1, 1)
  1426. Woodmenu.BorderColor3 = Color3.new(0, 0, 0)
  1427. Woodmenu.Position = UDim2.new(0, 15, 0,175)
  1428. Woodmenu.Size = UDim2.new(0, 80, 0, 80)
  1429. Woodmenu.ZIndex = 3
  1430. Woodmenu.Image = "rbxassetid://3894370075"
  1431. Woodmenu.ScaleType = Enum.ScaleType.Crop
  1432. Woodmenu.MouseButton1Click:Connect(function()
  1433. CurrentItem.Image = "rbxassetid://3886256996"
  1434. AIntroImage.Visible = true
  1435. AIntroImage1.Visible = true
  1436. end)
  1437.  
  1438. WoodFrame.Name = "WoodFrame"
  1439. WoodFrame.Parent = MenuFrame
  1440. WoodFrame.BorderSizePixel = 1
  1441. WoodFrame.BackgroundTransparency = 0
  1442. WoodFrame.BorderColor3 = Color3.new(0, 0, 0)
  1443. WoodFrame.BackgroundColor3 = Color3.fromRGB(151, 0, 0)
  1444. WoodFrame.Size = UDim2.new(0, 170, 0, 256)
  1445. WoodFrame.Visible = false
  1446.  
  1447. SawmillTp.Name = "SawmillTp"
  1448. SawmillTp.Parent = WoodFrame
  1449. SawmillTp.BackgroundColor3 = Color3.new(0, 0, 0)
  1450. SawmillTp.BorderColor3 = Color3.new(0, 0, 0)
  1451. SawmillTp.Position = UDim2.new(0, 3, 0, 3)
  1452. SawmillTp.Size = UDim2.new(0, 165, 0, 20)
  1453. SawmillTp.Font = Enum.Font.Fantasy
  1454. SawmillTp.FontSize = Enum.FontSize.Size18
  1455. SawmillTp.Text = "Wood to Saw"
  1456. SawmillTp.TextColor3 = Color3.new(265, 0, 0)
  1457. SawmillTp.TextSize = 15
  1458. SawmillTp.MouseButton1Down:connect(function()
  1459.  
  1460. SawmillTp.Text = "WOOD TO SAW ON"
  1461. SawmillTp.TextColor3 = Color3.new(0, 1, 0)
  1462. SawmillC = false
  1463. Mouse = game.Players.LocalPlayer:GetMouse()
  1464.  
  1465. Mouse.KeyDown:connect(function(key)
  1466. if key:lower() == "q" then
  1467. Treee = Mouse.Target
  1468. end
  1469. end)
  1470. Mouse.KeyDown:connect(function(key)
  1471. if key:lower() == "p" then
  1472. if Mouse.Target.Parent:FindFirstChild("BlockageAlert") then
  1473. Sawmill = Mouse.Target.Parent
  1474. else
  1475. Sawmill=Mouse.Target.Parent.Parent
  1476. end
  1477. if Sawmill:FindFirstChild("BlockageAlert") and Sawmill:FindFirstChild("Owner") then
  1478. SawmillC = true
  1479. else
  1480. SawmillC = false
  1481. print"Something went wrong while setting the sawmill!"
  1482. end
  1483. if Treee ~= nil then
  1484. Mod(Treee)
  1485. else
  1486. print("Select tree with 'Q'!")
  1487. end
  1488. end
  1489. end)
  1490.  
  1491. function Mod(SelectedPart)
  1492. if SawmillC ~= true then
  1493. print'Set the sawmill with "P"!'
  1494. return
  1495. end
  1496. if SelectedPart.Parent:FindFirstChild("TreeClass") and SelectedPart.Parent:FindFirstChild("Owner") then
  1497. print("Tree: "..SelectedPart.Parent.TreeClass.Value)
  1498. Tree = SelectedPart.Parent
  1499. Tree.PrimaryPart = SelectedPart
  1500. game.ReplicatedStorage.Interaction.Verify:FireServer('Item owned by player',Tree)
  1501. Tree:SetPrimaryPartCFrame(Sawmill.Particles.CFrame)
  1502. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Tree)
  1503. end
  1504. end
  1505. end)
  1506.  
  1507. Goldaxe.Name = "SawmillTp"
  1508. Goldaxe.Parent = WoodFrame
  1509. Goldaxe.BackgroundColor3 = Color3.new(0, 0, 0)
  1510. Goldaxe.BorderColor3 = Color3.new(0, 0, 0)
  1511. Goldaxe.Position = UDim2.new(0, 3, 0, 26)
  1512. Goldaxe.Size = UDim2.new(0, 165, 0, 20)
  1513. Goldaxe.Font = Enum.Font.Fantasy
  1514. Goldaxe.FontSize = Enum.FontSize.Size18
  1515. Goldaxe.Text = "Gold Axe Off"
  1516. Goldaxe.TextColor3 = Color3.new(255, 0, 0)
  1517. Goldaxe.TextSize = 15
  1518. spawn(function()
  1519. --Credits to Johiro, if you decide to skid atleast give credits
  1520. GAxe = false
  1521. function GetAxe() --Gets your current axe thats equiped when called
  1522. if game.Players.LocalPlayer.Character:FindFirstChild("Tool") then
  1523. return game.Players.LocalPlayer.Character.Tool --returns the axe when found
  1524. else
  1525. return false --returns false when not equiped
  1526. end
  1527. end
  1528.  
  1529. function GetDamage(Axe, TreeClass)-- Gets the right Damage of the axe and returns it if called to prevent killing yourself like gold axe
  1530. if Axe.ToolTip == "Basic Hatchet" then return 0.2
  1531. elseif Axe.ToolTip == "Plain Axe" then return 0.55
  1532. elseif Axe.ToolTip == "Steel Axe" then return 0.93
  1533. elseif Axe.ToolTip == "Hardened Axe" then return 1.45
  1534. elseif Axe.ToolTip == "Silver Axe" then return 1.6
  1535. elseif Axe.ToolTip == "Rukiryaxe" then return 1.68
  1536. elseif Axe.ToolTip == "Beta Axe of Bosses" then return 1.45
  1537. elseif Axe.ToolTip == "Alpha Axe of Testing" then return 1.5
  1538. elseif Axe.ToolTip == "Fire Axe" then
  1539. if TreeClass ~= "Volcano" then return 0.6 else return 6.35 end
  1540. elseif Axe.ToolTip == "End Times Axe" then
  1541. if TreeClass ~= "LoneCave" then return 1.58 else return 10000000 end
  1542. elseif Axe.ToolTip == "Candy Cane Axe" then return 0
  1543. elseif Axe.ToolTip == "Johiro" then return 1.8
  1544. elseif Axe.ToolTip == "Beesaxe" then return 1.4
  1545. elseif Axe.ToolTip == "CHICKEN AXE" then return 0.9
  1546. elseif Axe.ToolTip == "Amber Axe" then return 3.39
  1547. elseif Axe.ToolTip == "The Many Axe" then return 10.2
  1548. elseif Axe.ToolTip == "Gingerbread Axe" then
  1549. if TreeClass == "Walnut" then return 8.5
  1550. elseif TreeClass == "Koa" then return 11 else return 1.2 end
  1551. elseif Axe.ToolTip == "Bird Axe" then
  1552. if TreeClass == "Volcano" then return 2.5 elseif TreeClass == "CaveCrawler" then return 3.9 else return 1.65 end
  1553. end
  1554. end
  1555.  
  1556.  
  1557. function GCut(TreePart) --Cuts the tree when called with the tree you want to cut
  1558. if GetAxe() ~= false then --checks if you have a axe equiped
  1559. Damage = GetDamage(GetAxe(), TreePart.Parent.TreeClass.Value) --gets the Damage
  1560. Height = TreePart.CFrame:pointToObjectSpace(mouse.Hit.p).Y + TreePart.Size.Y/2 --Gets the Height
  1561. local CutArguments = {
  1562. sectionId = TreePart.ID.Value,
  1563. faceVector = Vector3.new(0,0,-1),
  1564. height = Height,
  1565. hitPoints = Damage,
  1566. cooldown = 0,
  1567. cuttingClass = "Axe",
  1568. tool = GetAxe()
  1569. }
  1570. for i=1, 50 do
  1571. game.ReplicatedStorage.Interaction.RemoteProxy:FireServer(TreePart.Parent.CutEvent, CutArguments)
  1572. end
  1573. end
  1574. end
  1575.  
  1576. function CutTree(Tree) --Cuts the tree when called with the tree you want to cut
  1577. if GetAxe() ~= false then --checks if you have a axe equiped
  1578. Damage = GetDamage(GetAxe(), Tree.TreeClass.Value) --gets the Damage
  1579. local CutArguments = {
  1580. sectionId = 1,
  1581. faceVector = Vector3.new(0,0,-1),
  1582. height = 0.5,
  1583. hitPoints = Damage,
  1584. cooldown = 0,
  1585. cuttingClass = "Axe",
  1586. tool = GetAxe()
  1587. }
  1588. for i=1, 50 do
  1589. game.ReplicatedStorage.Interaction.RemoteProxy:FireServer(Tree.CutEvent, CutArguments)
  1590. end
  1591. end
  1592. end
  1593.  
  1594. TreeList = {} --Creates a table of the trees
  1595. for a,b in pairs(workspace:GetChildren()) do
  1596. if b.name == "TreeRegion" then
  1597. b.ChildAdded:Connect(function(NewTree)--Creates functions that Adds new trees to the list
  1598. table.insert(TreeList, NewTree)
  1599. end)
  1600. for c,d in pairs(b:GetChildren()) do-- Adds the trees when first time starting the script
  1601. if d.Name == "Model" then
  1602. table.insert(TreeList, d)
  1603. end
  1604. end
  1605. end
  1606. end
  1607.  
  1608. spawn(function() --used spawn so it wont interrupt any of the other things
  1609. CutEnabled = false
  1610. while wait(.5) do --Main loop to do the stuff
  1611. if CutEnabled == true then
  1612. if GetAxe() ~= false then --Checks if you have a axe equiped
  1613. for a,b in pairs(TreeList) do
  1614. if not b:FindFirstChild("RootCut") and b:FindFirstChild("CutEvent") then --Checks if the tree is already cut
  1615. distance = (game.Players.LocalPlayer.Character.Head.Position - b.WoodSection.Position).magnitude --gets the distance between player and tree
  1616. if distance < 225 then --if distance lower than 225 then it will cut the tree
  1617. CutTree(b) --Calls the function with the tree to cut
  1618. end
  1619. else
  1620. table.remove(TreeList, a)--if tree already cut then it gets removed from the list
  1621. end
  1622. end
  1623. end
  1624. end
  1625. end
  1626. end)
  1627.  
  1628. mouse = game.Players.LocalPlayer:GetMouse() --Gets the Mouse
  1629. mouse.Button1Down:connect(function()
  1630. if GAxe == true and GetAxe() ~= false then
  1631. Target = mouse.Target
  1632. GCut(Target)
  1633. end
  1634. end)
  1635. --Credits to Johiro, if you decide to skid atleast give credits
  1636. end)
  1637. Goldaxe.MouseButton1Down:connect(function()
  1638.  
  1639. if GAxe == true then
  1640. GAxe = false
  1641. Goldaxe.Text = "Gold Axe Off"
  1642. Goldaxe.TextColor3 = Color3.new(255, 0, 0)
  1643. elseif GAxe == false then
  1644. GAxe = true
  1645. Goldaxe.Text = "Gold Axe On"
  1646. Goldaxe.TextColor3 = Color3.new(0, 1, 0)
  1647. --Credits to Johiro
  1648. end
  1649. end)
  1650.  
  1651.  
  1652. Harddrag.Name = "Harddrag"
  1653. Harddrag.Parent = WoodFrame
  1654. Harddrag.BackgroundColor3 = Color3.new(0, 0, 0)
  1655. Harddrag.BorderColor3 = Color3.new(0, 0, 0)
  1656. Harddrag.Position = UDim2.new(0, 3, 0, 49)
  1657. Harddrag.Size = UDim2.new(0, 165, 0, 20)
  1658. Harddrag.Font = Enum.Font.Fantasy
  1659. Harddrag.FontSize = Enum.FontSize.Size18
  1660. Harddrag.Text = "Hard drag"
  1661. Harddrag.TextColor3 = Color3.new(255, 0, 0)
  1662. Harddrag.TextSize = 15
  1663. Harddrag.MouseButton1Down:connect(function()
  1664.  
  1665. Harddrag.Text = "HARD DRAG ACTIVE"
  1666. Harddrag.TextColor3 = Color3.new(0, 1, 0)
  1667. loadstring(game:HttpGet('https://pastebin.com/raw/uMv85wZZ',true))()
  1668.  
  1669. end)
  1670.  
  1671.  
  1672. SellWood.Name = "SellWood"
  1673. SellWood.Parent = WoodFrame
  1674. SellWood.BackgroundColor3 = Color3.new(0, 0, 0)
  1675. SellWood.BorderColor3 = Color3.new(0, 0, 0)
  1676. SellWood.Position = UDim2.new(0, 3, 0, 72)
  1677. SellWood.Size = UDim2.new(0, 165, 0, 20)
  1678. SellWood.Font = Enum.Font.Fantasy
  1679. SellWood.FontSize = Enum.FontSize.Size18
  1680. SellWood.Text = "Sell Cut Wood"
  1681. SellWood.TextColor3 = Color3.new(255, 0, 0)
  1682. SellWood.TextSize = 15
  1683. SellWood.MouseButton1Down:connect(function()
  1684. for _, Log in pairs(workspace.LogModels:GetChildren()) do
  1685. if Log.Name:sub(1, 6) == "Loose_" and Log:findFirstChild("Owner") then
  1686. if Log.Owner.Value == game.Players.LocalPlayer then
  1687. for i,v in pairs(Log:GetChildren()) do
  1688. if v.Name=="WoodSection" then
  1689. spawn(function()
  1690. for i=1,10 do
  1691. wait()
  1692. v.CFrame=CFrame.new(Vector3.new(315, -0.296, 85.791))*CFrame.Angles(math.rad(90),0,0)
  1693. end
  1694. end)
  1695. end
  1696. end
  1697. spawn(function()
  1698. for i=1,20 do
  1699. wait()
  1700. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Log.WoodSection)
  1701. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(Log.WoodSection)
  1702. end
  1703. end)
  1704. end
  1705. end
  1706. end
  1707. end)
  1708.  
  1709.  
  1710. SellPlanks.Name = "SellWood"
  1711. SellPlanks.Parent = WoodFrame
  1712. SellPlanks.BackgroundColor3 = Color3.new(0, 0, 0)
  1713. SellPlanks.BorderColor3 = Color3.new(0, 0, 0)
  1714. SellPlanks.Position = UDim2.new(0, 3, 0, 95)
  1715. SellPlanks.Size = UDim2.new(0, 165, 0, 20)
  1716. SellPlanks.Font = Enum.Font.Fantasy
  1717. SellPlanks.FontSize = Enum.FontSize.Size18
  1718. SellPlanks.Text = "Sell Planks"
  1719. SellPlanks.TextColor3 = Color3.new(255, 0, 0)
  1720. SellPlanks.TextSize = 15
  1721. SellPlanks.MouseButton1Click:Connect(function()
  1722. for _, Plank in pairs(game.Workspace.PlayerModels:GetChildren()) do
  1723. if Plank.Name=="Plank" and Plank:findFirstChild("Owner") then
  1724. if Plank.Owner.Value == game.Players.LocalPlayer then
  1725. for i,v in pairs(Plank:GetChildren()) do
  1726. if v.Name=="WoodSection" then
  1727. spawn(function()
  1728. for i=1,10 do
  1729. wait()
  1730. v.CFrame=CFrame.new(Vector3.new(315, -0.296, 85.791))*CFrame.Angles(math.rad(90),0,0)
  1731. end
  1732. end)
  1733. end
  1734. end
  1735. spawn(function()
  1736. for i=1,20 do
  1737. wait()
  1738. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Plank.WoodSection)
  1739. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(Plank.WoodSection)
  1740. end
  1741. end)
  1742. end
  1743. end
  1744. end
  1745. end)
  1746.  
  1747.  
  1748. TPWood.Name = "TPWood"
  1749. TPWood.Parent = WoodFrame
  1750. TPWood.BackgroundColor3 = Color3.new(0, 0, 0)
  1751. TPWood.BorderColor3 = Color3.new(0, 0, 0)
  1752. TPWood.Position = UDim2.new(0, 3, 0, 118)
  1753. TPWood.Size = UDim2.new(0, 165, 0, 20)
  1754. TPWood.Font = Enum.Font.Fantasy
  1755. TPWood.FontSize = Enum.FontSize.Size18
  1756. TPWood.Text = "TP Wood to You"
  1757. TPWood.TextColor3 = Color3.new(255, 0, 0)
  1758. TPWood.TextSize = 15
  1759. TPWood.MouseButton1Click:Connect(function()
  1760. for _, Log in pairs(game.Workspace.LogModels:GetChildren()) do
  1761. if Log.Name:sub(1, 6) == "Loose_" and Log:findFirstChild("Owner") then
  1762. if Log.Owner.Value == game.Players.LocalPlayer then
  1763. Log:MoveTo(game.Players.LocalPlayer.Character.HumanoidRootPart.Position)
  1764. for i=1,20 do
  1765. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Log.WoodSection)
  1766. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(Log.WoodSection)
  1767. end
  1768. end
  1769. end
  1770. end
  1771. end)
  1772.  
  1773. TpAllPlanks.Name = "TpAllPlanks"
  1774. TpAllPlanks.Parent = WoodFrame
  1775. TpAllPlanks.BackgroundColor3 = Color3.new(0, 0, 0)
  1776. TpAllPlanks.BorderColor3 = Color3.new(0, 0, 0)
  1777. TpAllPlanks.Position = UDim2.new(0, 3, 0, 141)
  1778. TpAllPlanks.Size = UDim2.new(0, 165, 0, 20)
  1779. TpAllPlanks.Font = Enum.Font.Fantasy
  1780. TpAllPlanks.FontSize = Enum.FontSize.Size18
  1781. TpAllPlanks.Text = "TP Planks to You"
  1782. TpAllPlanks.TextColor3 = Color3.new(255, 0, 0)
  1783. TpAllPlanks.TextSize = 15
  1784. TpAllPlanks.MouseButton1Click:Connect(function()
  1785. for _, Plank in pairs(game.Workspace.PlayerModels:GetChildren()) do
  1786. if Plank.Name=="Plank" and Plank:findFirstChild("Owner") then
  1787. if Plank.Owner.Value == game.Players.LocalPlayer then
  1788. sendNotice = game.ReplicatedStorage.Notices.SendUserNotice
  1789. sendNotice:Fire("Click where you want ALL the Planks to TP to")
  1790. local ButtonPress
  1791. ButtonPress = game.Players.LocalPlayer:GetMouse().Button1Down:Connect(function()
  1792. Square = game.Players.LocalPlayer:GetMouse().Target
  1793. if (Square.Name == "OriginSquare" or Square.Name == "Square") then
  1794. ButtonPress:Disconnect()
  1795. Plank:MoveTo(Square.Position)
  1796. for i=1,100 do
  1797. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Plank)
  1798. end
  1799. end
  1800. end)
  1801. end
  1802. end
  1803. end
  1804. end)
  1805.  
  1806. Type.Name = "Type"
  1807. Type.Parent = TptreeFrame
  1808. Type.BackgroundColor3 = Color3.new(0, 0, 0)
  1809. Type.BorderSizePixel = 1
  1810. Type.BorderColor3 = Color3.fromRGB(196, 40, 28)
  1811. Type.Position = UDim2.new(0, 0, 0, 0)
  1812. Type.Size = UDim2.new(0, 209, 0, 23)
  1813. Type.Font = Enum.Font.SourceSans
  1814. Type.Text = "Tree Type"
  1815. Type.TextColor3 = Color3.new(255, 0, 0)
  1816. Type.TextSize = 14
  1817.  
  1818. Tptree.Name = "Tptree"
  1819. Tptree.Parent = WoodFrame
  1820. Tptree.BackgroundColor3 = Color3.new(0, 0, 0)
  1821. Tptree.BorderColor3 = Color3.new(0, 0, 0)
  1822. Tptree.Position = UDim2.new(0, 3, 0, 164)
  1823. Tptree.Size = UDim2.new(0, 165, 0, 20)
  1824. Tptree.Font = Enum.Font.Fantasy
  1825. Tptree.FontSize = Enum.FontSize.Size18
  1826. Tptree.Text = "Port To Trees"
  1827. Tptree.TextColor3 = Color3.new(255, 0, 0)
  1828. Tptree.TextSize = 15
  1829.  
  1830. TptreeFrame.Name = "TptreeFrame"
  1831. TptreeFrame.Parent = MenuFrame
  1832. TptreeFrame.BorderSizePixel = 1
  1833. TptreeFrame.BackgroundTransparency = 1
  1834. TptreeFrame.BorderColor3 = Color3.new(0, 0, 0)
  1835. TptreeFrame.BackgroundColor3 = Color3.fromRGB(151, 0, 0)
  1836. TptreeFrame.Size = UDim2.new(0, 170, 0, 210)
  1837. TptreeFrame.Visible = false
  1838.  
  1839. BirchTree.Name = "BirchTree"
  1840. BirchTree.Parent = TptreeFrame
  1841. BirchTree.BackgroundColor3 = Color3.new(1, 1, 1)
  1842. BirchTree.BackgroundTransparency = 0
  1843. BirchTree.BorderColor3 = Color3.new(0.6, 0, 0)
  1844. BirchTree.Position = UDim2.new(0, 0, 0, 26)
  1845. BirchTree.Size = UDim2.new(0, 50, 0, 50)
  1846. BirchTree.Image = "rbxassetid://4053569393"
  1847.  
  1848. CavecrawlerTree.Name = "CavecrawlerTree"
  1849. CavecrawlerTree.Parent = TptreeFrame
  1850. CavecrawlerTree.BackgroundColor3 = Color3.new(1, 1, 1)
  1851. CavecrawlerTree.BackgroundTransparency = 0
  1852. CavecrawlerTree.BorderColor3 = Color3.new(0.6, 0, 0)
  1853. CavecrawlerTree.Position = UDim2.new(0, 53, 0, 26)
  1854. CavecrawlerTree.Size = UDim2.new(0, 50, 0, 50)
  1855. CavecrawlerTree.Image = "rbxassetid://4053567003"
  1856. CavecrawlerTree.MouseButton1Click:Connect(function()
  1857.  
  1858. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Cave"])
  1859. Type.Text = "Cavecrawler Tree"
  1860. end)
  1861.  
  1862. CherryTree.Name = "CherryTree"
  1863. CherryTree.Parent = TptreeFrame
  1864. CherryTree.BackgroundColor3 = Color3.new(1, 1, 1)
  1865. CherryTree.BackgroundTransparency = 0
  1866. CherryTree.BorderColor3 = Color3.new(0.6, 0, 0)
  1867. CherryTree.Position = UDim2.new(0, 106, 0, 26)
  1868. CherryTree.Size = UDim2.new(0, 50, 0, 50)
  1869. CherryTree.Image = "rbxassetid://4053570076"
  1870.  
  1871. ElmTree.Name = "ElmTree"
  1872. ElmTree.Parent = TptreeFrame
  1873. ElmTree.BackgroundColor3 = Color3.new(1, 1, 1)
  1874. ElmTree.BackgroundTransparency = 0
  1875. ElmTree.BorderColor3 = Color3.new(0.6, 0, 0)
  1876. ElmTree.Position = UDim2.new(0, 159, 0, 26)
  1877. ElmTree.Size = UDim2.new(0, 50, 0, 50)
  1878. ElmTree.Image = "rbxassetid://4053570665"
  1879.  
  1880. Frosttree.Name = "Frosttree"
  1881. Frosttree.Parent = TptreeFrame
  1882. Frosttree.BackgroundColor3 = Color3.new(1, 1, 1)
  1883. Frosttree.BackgroundTransparency = 0
  1884. Frosttree.BorderColor3 = Color3.new(0.6, 0, 0)
  1885. Frosttree.Position = UDim2.new(0, 0, 0, 79)
  1886. Frosttree.Size = UDim2.new(0, 50, 0, 50)
  1887. Frosttree.Image = "rbxassetid://4053571917"
  1888.  
  1889. GenericTree.Name = "GenericTree"
  1890. GenericTree.Parent = TptreeFrame
  1891. GenericTree.BackgroundColor3 = Color3.new(1, 1, 1)
  1892. GenericTree.BackgroundTransparency = 0
  1893. GenericTree.BorderColor3 = Color3.new(0.6, 0, 0)
  1894. GenericTree.Position = UDim2.new(0, 53, 0, 79)
  1895. GenericTree.Size = UDim2.new(0, 50, 0, 50)
  1896. GenericTree.Image = "rbxassetid://4053574105"
  1897.  
  1898. ZombieTree.Name = "ZombieTree"
  1899. ZombieTree.Parent = TptreeFrame
  1900. ZombieTree.BackgroundColor3 = Color3.new(1, 1, 1)
  1901. ZombieTree.BackgroundTransparency = 0
  1902. ZombieTree.BorderColor3 = Color3.new(0.6, 0, 0)
  1903. ZombieTree.Position = UDim2.new(0, 106, 0, 79)
  1904. ZombieTree.Size = UDim2.new(0, 50, 0, 50)
  1905. ZombieTree.Image = "rbxassetid://4053578037"
  1906.  
  1907. GoldTree.Name = "GoldTree"
  1908. GoldTree.Parent = TptreeFrame
  1909. GoldTree.BackgroundColor3 = Color3.new(1, 1, 1)
  1910. GoldTree.BackgroundTransparency = 0
  1911. GoldTree.BorderColor3 = Color3.new(0.6, 0, 0)
  1912. GoldTree.Position = UDim2.new(0, 159, 0, 79)
  1913. GoldTree.Size = UDim2.new(0, 50, 0, 50)
  1914. GoldTree.Image = "rbxassetid://4053572372"
  1915. GoldTree.MouseButton1Click:Connect(function()
  1916.  
  1917. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Swamp"])
  1918. Type.Text = "Gold Tree"
  1919. end)
  1920.  
  1921.  
  1922. LavaTree.Name = "LavaTree"
  1923. LavaTree.Parent = TptreeFrame
  1924. LavaTree.BackgroundColor3 = Color3.new(1, 1, 1)
  1925. LavaTree.BackgroundTransparency = 0
  1926. LavaTree.BorderColor3 = Color3.new(0.6, 0, 0)
  1927. LavaTree.Position = UDim2.new(0, 0, 0, 132)
  1928. LavaTree.Size = UDim2.new(0, 50, 0, 50)
  1929. LavaTree.Image = "rbxassetid://4053573529"
  1930.  
  1931. PalmTree.Name = "PalmTree"
  1932. PalmTree.Parent = TptreeFrame
  1933. PalmTree.BackgroundColor3 = Color3.new(1, 1, 1)
  1934. PalmTree.BackgroundTransparency = 0
  1935. PalmTree.BorderColor3 = Color3.new(0.6, 0, 0)
  1936. PalmTree.Position = UDim2.new(0, 53, 0, 132)
  1937. PalmTree.Size = UDim2.new(0, 50, 0, 50)
  1938. PalmTree.Image = "rbxassetid://4053574535"
  1939.  
  1940. PhantomTree.Name = "PhantomTree"
  1941. PhantomTree.Parent = TptreeFrame
  1942. PhantomTree.BackgroundColor3 = Color3.new(1, 1, 1)
  1943. PhantomTree.BackgroundTransparency = 0
  1944. PhantomTree.BorderColor3 = Color3.new(0.6, 0, 0)
  1945. PhantomTree.Position = UDim2.new(0, 106, 0, 132)
  1946. PhantomTree.Size = UDim2.new(0, 50, 0, 50)
  1947. PhantomTree.Image = "rbxassetid://4053575065"
  1948.  
  1949. PineTree.Name = "PineTree"
  1950. PineTree.Parent = TptreeFrame
  1951. PineTree.BackgroundColor3 = Color3.new(1, 1, 1)
  1952. PineTree.BackgroundTransparency = 0
  1953. PineTree.BorderColor3 = Color3.new(0.6, 0, 0)
  1954. PineTree.Position = UDim2.new(0, 159, 0, 132)
  1955. PineTree.Size = UDim2.new(0, 50, 0, 50)
  1956. PineTree.Image = "rbxassetid://4053575551"
  1957.  
  1958. FirTree.Name = "FirTree"
  1959. FirTree.Parent = TptreeFrame
  1960. FirTree.BackgroundColor3 = Color3.new(1, 1, 1)
  1961. FirTree.BackgroundTransparency = 0
  1962. FirTree.BorderColor3 = Color3.new(0.6, 0, 0)
  1963. FirTree.Position = UDim2.new(0, 0, 0, 185)
  1964. FirTree.Size = UDim2.new(0, 50, 0, 50)
  1965. FirTree.Image = "rbxassetid://4053571273"
  1966.  
  1967. Snowglowtree.Name = "Snowglowtree"
  1968. Snowglowtree.Parent = TptreeFrame
  1969. Snowglowtree.BackgroundColor3 = Color3.new(1, 1, 1)
  1970. Snowglowtree.BackgroundTransparency = 0
  1971. Snowglowtree.BorderColor3 = Color3.new(0.6, 0, 0)
  1972. Snowglowtree.Position = UDim2.new(0, 53, 0, 185)
  1973. Snowglowtree.Size = UDim2.new(0, 50, 0, 50)
  1974. Snowglowtree.Image = "rbxassetid://4053576507"
  1975. Snowglowtree.MouseButton1Click:Connect(function()
  1976. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1977. uTorso.CFrame = WayPoints["SnowGlow Tree"]
  1978. Type.Text = "Snowglow Tree"
  1979. end)
  1980.  
  1981. Spooktree.Name = "Spooktree"
  1982. Spooktree.Parent = TptreeFrame
  1983. Spooktree.BackgroundColor3 = Color3.new(1, 1, 1)
  1984. Spooktree.BackgroundTransparency = 0
  1985. Spooktree.BorderColor3 = Color3.new(0.6, 0, 0)
  1986. Spooktree.Position = UDim2.new(0, 106, 0, 185)
  1987. Spooktree.Size = UDim2.new(0, 50, 0, 50)
  1988. Spooktree.Image = "rbxassetid://4053576987"
  1989.  
  1990.  
  1991. WalnutTree.Name = "WalnutTree"
  1992. WalnutTree.Parent = TptreeFrame
  1993. WalnutTree.BackgroundColor3 = Color3.new(1, 1, 1)
  1994. WalnutTree.BackgroundTransparency = 0
  1995. WalnutTree.BorderColor3 = Color3.new(0.6, 0, 0)
  1996. WalnutTree.Position = UDim2.new(0, 159, 0, 185)
  1997. WalnutTree.Size = UDim2.new(0, 50, 0, 50)
  1998. WalnutTree.Image = "rbxassetid://4053577500"
  1999.  
  2000. KoaTree.Name = "KoaTree"
  2001. KoaTree.Parent = TptreeFrame
  2002. KoaTree.BackgroundColor3 = Color3.new(1, 1, 1)
  2003. KoaTree.BackgroundTransparency = 0
  2004. KoaTree.BorderColor3 = Color3.new(0.6, 0, 0)
  2005. KoaTree.Position = UDim2.new(0, 53, 0, 238)
  2006. KoaTree.Size = UDim2.new(0, 50, 0, 50)
  2007. KoaTree.Image = "rbxassetid://4053573002"
  2008.  
  2009. SinisterGlow.Name = "SinisterGlow"
  2010. SinisterGlow.Parent = TptreeFrame
  2011. SinisterGlow.BackgroundColor3 = Color3.new(1, 1, 1)
  2012. SinisterGlow.BackgroundTransparency = 0
  2013. SinisterGlow.BorderColor3 = Color3.new(0.6, 0, 0)
  2014. SinisterGlow.Position = UDim2.new(0, 106, 0, 238)
  2015. SinisterGlow.Size = UDim2.new(0, 50, 0, 50)
  2016. SinisterGlow.Image = "rbxassetid://4053576051"
  2017.  
  2018. BirchTree.MouseButton1Click:Connect(function()
  2019.  
  2020. for i, v in pairs(game.Workspace:GetChildren()) do
  2021. if v.Name == "TreeRegion" then
  2022. for j, k in ipairs(v:GetChildren()) do
  2023. if k:FindFirstChild("TreeClass") and k.TreeClass.Value == "Birch" then
  2024. game.Players.LocalPlayer.Character:MoveTo(k.WoodSection.Position)
  2025. break
  2026. end
  2027. end
  2028. end
  2029. end
  2030. Type.Text = "Birch Tree"
  2031. end)
  2032.  
  2033.  
  2034. CherryTree.MouseButton1Click:Connect(function()
  2035. for i, v in pairs(game.Workspace:GetChildren()) do
  2036. if v.Name == "TreeRegion" then
  2037. for j, k in ipairs(v:GetChildren()) do
  2038. if k:FindFirstChild("TreeClass") and k.TreeClass.Value == "Cherry" then
  2039. game.Players.LocalPlayer.Character:MoveTo(k.WoodSection.Position)
  2040. break
  2041. end
  2042. end
  2043. end
  2044. end
  2045. Type.Text = "Cherry Tree"
  2046. end)
  2047.  
  2048. ElmTree.MouseButton1Click:Connect(function()
  2049. for i, v in pairs(game.Workspace:GetChildren()) do
  2050. if v.Name == "TreeRegion" then
  2051. for j, k in ipairs(v:GetChildren()) do
  2052. if k:FindFirstChild("TreeClass") and k.TreeClass.Value == "Oak" then
  2053. game.Players.LocalPlayer.Character:MoveTo(k.WoodSection.Position)
  2054. break
  2055. end
  2056. end
  2057. end
  2058. end
  2059. Type.Text = "ElmTree"
  2060. end)
  2061.  
  2062. FirTree.MouseButton1Click:Connect(function()
  2063. for i, v in pairs(game.Workspace:GetChildren()) do
  2064. if v.Name == "TreeRegion" then
  2065. for j, k in ipairs(v:GetChildren()) do
  2066. if k:FindFirstChild("TreeClass") and k.TreeClass.Value == "Fir" then
  2067. game.Players.LocalPlayer.Character:MoveTo(k.WoodSection.Position)
  2068. break
  2069. end
  2070. end
  2071. end
  2072. end
  2073. Type.Text = "Fir Tree"
  2074. end)
  2075.  
  2076. Frosttree.MouseButton1Click:Connect(function()
  2077. for i, v in pairs(game.Workspace:GetChildren()) do
  2078. if v.Name == "TreeRegion" then
  2079. for j, k in ipairs(v:GetChildren()) do
  2080. if k:FindFirstChild("TreeClass") and k.TreeClass.Value == "Frost" then
  2081. game.Players.LocalPlayer.Character:MoveTo(k.WoodSection.Position)
  2082. break
  2083. end
  2084. end
  2085. end
  2086. end
  2087. Type.Text = "Frost Tree"
  2088. end)
  2089.  
  2090. GenericTree.MouseButton1Click:Connect(function()
  2091. for i, v in pairs(game.Workspace:GetChildren()) do
  2092. if v.Name == "TreeRegion" then
  2093. for j, k in ipairs(v:GetChildren()) do
  2094. if k:FindFirstChild("TreeClass") and k.TreeClass.Value == "Generic" then
  2095. game.Players.LocalPlayer.Character:MoveTo(k.WoodSection.Position)
  2096. break
  2097. end
  2098. end
  2099. end
  2100. end
  2101. Type.Text = "Generic Tree"
  2102. end)
  2103.  
  2104.  
  2105. KoaTree.MouseButton1Click:Connect(function()
  2106. for i, v in pairs(game.Workspace:GetChildren()) do
  2107. if v.Name == "TreeRegion" then
  2108. for j, k in ipairs(v:GetChildren()) do
  2109. if k:FindFirstChild("TreeClass") and k.TreeClass.Value == "Koa" then
  2110. game.Players.LocalPlayer.Character:MoveTo(k.WoodSection.Position)
  2111. break
  2112. end
  2113. end
  2114. end
  2115. end
  2116. Type.Text = "Koa Tree"
  2117. end)
  2118.  
  2119. LavaTree.MouseButton1Click:Connect(function()
  2120. for i, v in pairs(game.Workspace:GetChildren()) do
  2121. if v.Name == "TreeRegion" then
  2122. for j, k in ipairs(v:GetChildren()) do
  2123. if k:FindFirstChild("TreeClass") and k.TreeClass.Value == "Volcano" then
  2124. game.Players.LocalPlayer.Character:MoveTo(k.WoodSection.Position)
  2125. break
  2126. end
  2127. end
  2128. end
  2129. end
  2130. Type.Text = "Lava Tree"
  2131. end)
  2132.  
  2133. PalmTree.MouseButton1Click:Connect(function()
  2134. for i, v in pairs(game.Workspace:GetChildren()) do
  2135. if v.Name == "TreeRegion" then
  2136. for j, k in ipairs(v:GetChildren()) do
  2137. if k:FindFirstChild("TreeClass") and k.TreeClass.Value == "Palm" then
  2138. game.Players.LocalPlayer.Character:MoveTo(k.WoodSection.Position)
  2139. break
  2140. end
  2141. end
  2142. end
  2143. end
  2144. Type.Text = "Palm Tree"
  2145. end)
  2146.  
  2147. PhantomTree.MouseButton1Click:Connect(function()
  2148. for i, v in pairs(game.Workspace:GetChildren()) do
  2149. if v.Name == "TreeRegion" then
  2150. for j, k in ipairs(v:GetChildren()) do
  2151. if k:FindFirstChild("TreeClass") and k.TreeClass.Value == "LoneCave" then
  2152. game.Players.LocalPlayer.Character:MoveTo(k.WoodSection.Position)
  2153. break
  2154. end
  2155. end
  2156. end
  2157. end
  2158. Type.Text = "Phantom Tree"
  2159. end)
  2160.  
  2161. PineTree.MouseButton1Click:Connect(function()
  2162. for i, v in pairs(game.Workspace:GetChildren()) do
  2163. if v.Name == "TreeRegion" then
  2164. for j, k in ipairs(v:GetChildren()) do
  2165. if k:FindFirstChild("TreeClass") and k.TreeClass.Value == "Pine" then
  2166. game.Players.LocalPlayer.Character:MoveTo(k.WoodSection.Position)
  2167. break
  2168. end
  2169. end
  2170. end
  2171. end
  2172. Type.Text = "Pine Tree"
  2173. end)
  2174.  
  2175. SinisterGlow.MouseButton1Click:Connect(function()
  2176. for i, v in pairs(game.Workspace:GetChildren()) do
  2177. if v.Name == "TreeRegion" then
  2178. for j, k in ipairs(v:GetChildren()) do
  2179. if k:FindFirstChild("TreeClass") and k.TreeClass.Value == "SpookyNeon" then
  2180. game.Players.LocalPlayer.Character:MoveTo(k.WoodSection.Position)
  2181. break
  2182. end
  2183. end
  2184. end
  2185. end
  2186. Type.Text = "Sinister Tree"
  2187. end)
  2188.  
  2189.  
  2190. Spooktree.MouseButton1Click:Connect(function()
  2191. for i, v in pairs(game.Workspace:GetChildren()) do
  2192. if v.Name == "TreeRegion" then
  2193. for j, k in ipairs(v:GetChildren()) do
  2194. if k:FindFirstChild("TreeClass") and k.TreeClass.Value == "Spooky" then
  2195. game.Players.LocalPlayer.Character:MoveTo(k.WoodSection.Position)
  2196. break
  2197. end
  2198. end
  2199. end
  2200. end
  2201. Type.Text = "Spook Tree"
  2202. end)
  2203.  
  2204. WalnutTree.MouseButton1Click:Connect(function()
  2205. for i, v in pairs(game.Workspace:GetChildren()) do
  2206. if v.Name == "TreeRegion" then
  2207. for j, k in ipairs(v:GetChildren()) do
  2208. if k:FindFirstChild("TreeClass") and k.TreeClass.Value == "Walnut" then
  2209. game.Players.LocalPlayer.Character:MoveTo(k.WoodSection.Position)
  2210. break
  2211. end
  2212. end
  2213. end
  2214. end
  2215. Type.Text = "Walnut Tree"
  2216. end)
  2217.  
  2218. ZombieTree.MouseButton1Click:Connect(function()
  2219. for i, v in pairs(game.Workspace:GetChildren()) do
  2220. if v.Name == "TreeRegion" then
  2221. for j, k in ipairs(v:GetChildren()) do
  2222. if k:FindFirstChild("TreeClass") and k.TreeClass.Value == "GreenSwampy" then
  2223. game.Players.LocalPlayer.Character:MoveTo(k.WoodSection.Position)
  2224. break
  2225. end
  2226. end
  2227. end
  2228. end
  2229. Type.Text = "Zombie Tree"
  2230. end)
  2231.  
  2232. Treeaura.Name = "Tree aura"
  2233. Treeaura.Parent = WoodFrame
  2234. Treeaura.BackgroundColor3 = Color3.new(0, 0, 0)
  2235. Treeaura.BorderColor3 = Color3.new(0, 0, 0)
  2236. Treeaura.Position = UDim2.new(0, 3, 0, 187)
  2237. Treeaura.Size = UDim2.new(0, 165, 0, 20)
  2238. Treeaura.Font = Enum.Font.Fantasy
  2239. Treeaura.FontSize = Enum.FontSize.Size18
  2240. Treeaura.Text = "Tree Aura"
  2241. Treeaura.TextColor3 = Color3.new(255, 0, 0)
  2242. Treeaura.TextSize = 15
  2243. Treeaura.MouseButton1Down:connect(function()
  2244.  
  2245. if CutEnabled == true then
  2246. CutEnabled = false
  2247. Treeaura.Text = "Tree Aura off"
  2248. Treeaura.TextColor3 = Color3.new(255, 0, 0)
  2249. elseif CutEnabled == false then
  2250. CutEnabled = true
  2251. Treeaura.Text = "Tree Aura on"
  2252. Treeaura.TextColor3 = Color3.new(0, 1, 0)
  2253. end
  2254. end)
  2255. --Credits to Johiro
  2256.  
  2257. local function GetAxe() --Gets your current axe thats equiped when called
  2258. if game.Players.LocalPlayer.Character:FindFirstChild("Tool") then
  2259. return game.Players.LocalPlayer.Character.Tool --returns the axe when found
  2260. else
  2261. return false --returns false when not equiped
  2262. end
  2263. end
  2264.  
  2265. local function GetDamage(Axe, TreeClass)-- Gets the right Damage of the axe and returns it if called to prevent killing yourself like gold axe
  2266. if Axe.ToolTip == "Basic Hatchet" then return 0.2
  2267. elseif Axe.ToolTip == "Plain Axe" then return 0.55
  2268. elseif Axe.ToolTip == "Steel Axe" then return 0.93
  2269. elseif Axe.ToolTip == "Hardened Axe" then return 1.45
  2270. elseif Axe.ToolTip == "Silver Axe" then return 1.6
  2271. elseif Axe.ToolTip == "Rukiryaxe" then return 1.68
  2272. elseif Axe.ToolTip == "Beta Axe of Bosses" then return 1.45
  2273. elseif Axe.ToolTip == "Alpha Axe of Testing" then return 1.5
  2274. elseif Axe.ToolTip == "Fire Axe" then
  2275. if TreeClass ~= "Volcano" then return 0.6 else return 6.35 end
  2276. elseif Axe.ToolTip == "End Times Axe" then
  2277. if TreeClass ~= "LoneCave" then return 1.58 else return 10000000 end
  2278. elseif Axe.ToolTip == "Candy Cane Axe" then return 0
  2279. elseif Axe.ToolTip == "Johiro" then return 1.8
  2280. elseif Axe.ToolTip == "Beesaxe" then return 1.4
  2281. elseif Axe.ToolTip == "CHICKEN AXE" then return 0.9
  2282. elseif Axe.ToolTip == "Amber Axe" then return 3.39
  2283. elseif Axe.ToolTip == "The Many Axe" then return 10.2
  2284. elseif Axe.ToolTip == "Gingerbread Axe" then
  2285. if TreeClass == "Walnut" then return 8.5
  2286. elseif TreeClass == "Koa" then return 11 else return 1.2 end
  2287. elseif Axe.ToolTip == "Bird Axe" then
  2288. if TreeClass == "Volcano" then return 2.5 elseif TreeClass == "CaveCrawler" then return 3.9 else return 1.65 end
  2289. end
  2290. end
  2291.  
  2292. TreeList = {} --Creates a table of the trees
  2293. for a,b in pairs(workspace:GetChildren()) do
  2294. if b.name == "TreeRegion" then
  2295. b.ChildAdded:Connect(function(NewTree)--Creates functions that Adds new trees to the list
  2296. table.insert(TreeList, NewTree)
  2297. end)
  2298. for c,d in pairs(b:GetChildren()) do-- Adds the trees when first time starting the script
  2299. if d.Name == "Model" then
  2300. table.insert(TreeList, d)
  2301. end
  2302. end
  2303. end
  2304. end
  2305.  
  2306. local function CutTree(Tree) --Cuts the tree when called with the tree you want to cut
  2307. if GetAxe() ~= false then --checks if you have a axe equiped
  2308. Damage = GetDamage(GetAxe(), Tree.TreeClass.Value) --gets the Damage
  2309. local CutArguments = {
  2310. sectionId = 1,
  2311. faceVector = Vector3.new(0,0,-1),
  2312. height = 0.5,
  2313. hitPoints = Damage,
  2314. cooldown = 0,
  2315. cuttingClass = "Axe",
  2316. tool = GetAxe()
  2317. }
  2318. for i=1, 50 do
  2319. game.ReplicatedStorage.Interaction.RemoteProxy:FireServer(Tree.CutEvent, CutArguments)
  2320. end
  2321. end
  2322. end
  2323.  
  2324. spawn(function() --used spawn so it wont interrupt any of the other things
  2325. CutEnabled = false
  2326. while wait(.5) do --Main loop to do the stuff
  2327. if CutEnabled == true then
  2328. if GetAxe() ~= false then --Checks if you have a axe equiped
  2329. for a,b in pairs(TreeList) do
  2330. if not b:FindFirstChild("RootCut") and b:FindFirstChild("CutEvent") then --Checks if the tree is already cut
  2331. distance = (game.Players.LocalPlayer.Character.Head.Position - b.WoodSection.Position).magnitude --gets the distance between player and tree
  2332. if distance < 225 then --if distance lower than 225 then it will cut the tree
  2333. CutTree(b) --Calls the function with the tree to cut
  2334. end
  2335. else
  2336. table.remove(TreeList, a)--if tree already cut then it gets removed from the list
  2337. end
  2338. end
  2339. end
  2340. end
  2341. end
  2342. end)
  2343.  
  2344. BigPlank.Name = "BigPlank"
  2345. BigPlank.Parent = WoodFrame
  2346. BigPlank.BackgroundColor3 = Color3.new(0, 0, 0)
  2347. BigPlank.BorderColor3 = Color3.new(0, 0, 0)
  2348. BigPlank.Position = UDim2.new(0, 3, 0, 210)
  2349. BigPlank.Size = UDim2.new(0, 165, 0, 20)
  2350. BigPlank.Font = Enum.Font.Fantasy
  2351. BigPlank.FontSize = Enum.FontSize.Size18
  2352. BigPlank.Text = "Mod Wood"
  2353. BigPlank.TextColor3 = Color3.new(255, 0, 0)
  2354. BigPlank.TextSize = 15
  2355. BigPlank.MouseButton1Down:connect(function()
  2356. for _, Log in pairs(workspace.LogModels:GetChildren()) do
  2357. if Log.Name:sub(1, 6) == "Loose_" and Log:findFirstChild("Owner") then
  2358. if Log.Owner.Value == game.Players.LocalPlayer then
  2359. for i,v in pairs(Log:GetChildren()) do
  2360. if v.Name=="WoodSection" then
  2361. spawn(function()
  2362. for i=1,10 do
  2363. wait()
  2364. v.CFrame=CFrame.new(Vector3.new(315, -0.296, 85.791))*CFrame.Angles(math.rad(90),0,0)
  2365. end
  2366. end)
  2367. end
  2368. end
  2369. spawn(function()
  2370. for i=1,20 do
  2371. wait()
  2372. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Log.WoodSection)
  2373. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(Log.WoodSection)
  2374. end
  2375. end)
  2376. end
  2377. end
  2378. end
  2379. wait(2.0)
  2380. for _, Log in pairs(game.Workspace.LogModels:GetChildren()) do
  2381. if Log.Name:sub(1, 6) == "Loose_" and Log:findFirstChild("Owner") then
  2382. if Log.Owner.Value == game.Players.LocalPlayer then
  2383. Log:MoveTo(game.Players.LocalPlayer.Character.HumanoidRootPart.Position)
  2384. for i=1,20 do
  2385. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Log.WoodSection)
  2386. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(Log.WoodSection)
  2387. end
  2388. end
  2389. end
  2390. end
  2391.  
  2392. SawmillC = false
  2393. Mouse = game.Players.LocalPlayer:GetMouse()
  2394.  
  2395. Mouse.KeyDown:connect(function(key)
  2396. if key:lower() == "p" then
  2397. Treee = Mouse.Target
  2398. end
  2399. end)
  2400. Mouse.KeyDown:connect(function(key)
  2401. if key:lower() == "m" then
  2402. if Mouse.Target.Parent:FindFirstChild("BlockageAlert") then
  2403. Sawmill = Mouse.Target.Parent
  2404. else
  2405. Sawmill=Mouse.Target.Parent.Parent
  2406. end
  2407. if Sawmill:FindFirstChild("BlockageAlert") and Sawmill:FindFirstChild("Owner") then
  2408. SawmillC = true
  2409. else
  2410. SawmillC = false
  2411. print"Something went wrong while setting the sawmill!"
  2412. end
  2413. if Treee ~= nil then
  2414. Mod(Treee)
  2415. else
  2416. print("Select tree with 'p!")
  2417. end
  2418. end
  2419. end)
  2420.  
  2421. function Mod(SelectedPart)
  2422. if SawmillC ~= true then
  2423. print'Set the sawmill with "m"!'
  2424. return
  2425. end
  2426. if SelectedPart.Parent:FindFirstChild("TreeClass") and SelectedPart.Parent:FindFirstChild("Owner") then
  2427. print("Tree: "..SelectedPart.Parent.TreeClass.Value)
  2428. Tree = SelectedPart.Parent
  2429. Tree.PrimaryPart = SelectedPart
  2430. game.ReplicatedStorage.Interaction.Verify:FireServer('Item owned by player',Tree)
  2431. Tree:SetPrimaryPartCFrame(Sawmill.Particles.CFrame)
  2432. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Tree)
  2433. end
  2434. end
  2435. end)
  2436.  
  2437. RemoveT.Name = "RemoveT"
  2438. RemoveT.Parent = WoodFrame
  2439. RemoveT.BackgroundColor3 = Color3.new(0, 0, 0)
  2440. RemoveT.BorderColor3 = Color3.new(0, 0, 0)
  2441. RemoveT.Position = UDim2.new(0, 3, 0, 233)
  2442. RemoveT.Size = UDim2.new(0, 165, 0, 20)
  2443. RemoveT.Font = Enum.Font.Fantasy
  2444. RemoveT.FontSize = Enum.FontSize.Size18
  2445. RemoveT.Text = "Remove Trees"
  2446. RemoveT.TextColor3 = Color3.new(255, 0, 0)
  2447. RemoveT.TextSize = 15
  2448. RemoveT.MouseButton1Down:connect(function()
  2449. RemoveT.BackgroundColor3 = Color3.new(0, 0, 0)
  2450. RemoveT.TextColor3 = Color3.new(0, 1, 0)
  2451. for i,v in pairs(game.Workspace:GetDescendants()) do
  2452. if v.Name == "WoodSection" and v.Parent:FindFirstChild("CutEvent") then
  2453. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(v.Parent)
  2454. game.ReplicatedStorage.Interaction.DestroyStructure:FireServer(v.Parent)
  2455. end
  2456. end
  2457. game.Workspace.DescendantAdded:connect(function(Thing)
  2458. wait(0.1)
  2459. if Thing.Name == "WoodSection" and Thing.Parent:FindFirstChild("CutEvent") then
  2460. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Thing.Parent)
  2461. game.ReplicatedStorage.Interaction.DestroyStructure:FireServer(Thing.Parent)
  2462. end
  2463. end)
  2464. end)
  2465.  
  2466. Copymenu.Name = "Copymenu"
  2467. Copymenu.Parent = Picker
  2468. Copymenu.BackgroundColor3 = Color3.new(1, 1, 1)
  2469. Copymenu.BorderColor3 = Color3.new(0, 0, 0)
  2470. Copymenu.Position = UDim2.new(0, 15, 0,260)
  2471. Copymenu.Size = UDim2.new(0, 80, 0, 80)
  2472. Copymenu.ZIndex = 3
  2473. Copymenu.Image = "rbxassetid://3899462163"
  2474. Copymenu.ScaleType = Enum.ScaleType.Crop
  2475. Copymenu.MouseButton1Click:Connect(function()
  2476. CurrentItem.Image = "rbxassetid://3886256996"
  2477. AIntroImage.Visible = false
  2478. AIntroImage1.Visible = false
  2479. end)
  2480.  
  2481. CopyFrame.Name = "CopyFrame"
  2482. CopyFrame.Parent = MenuFrame
  2483. CopyFrame.BorderSizePixel = 1
  2484. CopyFrame.BackgroundTransparency = 0
  2485. CopyFrame.BorderColor3 = Color3.new(0, 0, 0)
  2486. CopyFrame.BackgroundColor3 = Color3.fromRGB(151, 0, 0)
  2487. CopyFrame.Size = UDim2.new(0, 170, 0, 439)
  2488. CopyFrame.Visible = false
  2489.  
  2490. PlayerNameBox.Name = "PlayerNameBox"
  2491. PlayerNameBox.Parent = CopyFrame
  2492. PlayerNameBox.BackgroundColor3 = Color3.new(0, 0, 0)
  2493. PlayerNameBox.BorderColor3 = Color3.new(0, 0, 0)
  2494. PlayerNameBox.Position = UDim2.new(0, 3, 0, 3)
  2495. PlayerNameBox.Size = UDim2.new(0, 165, 0, 20)
  2496. PlayerNameBox.Font = Enum.Font.Fantasy
  2497. PlayerNameBox.FontSize = Enum.FontSize.Size18
  2498. PlayerNameBox.Text = "PLAYER NAME"
  2499. PlayerNameBox.TextColor3 = Color3.new(255, 0, 0)
  2500. PlayerNameBox.TextSize = 15
  2501.  
  2502. AXETRUCK.Name = "AXETRUCK"
  2503. AXETRUCK.Parent = CopyFrame
  2504. AXETRUCK.BackgroundColor3 = Color3.new(0, 0, 0)
  2505. AXETRUCK.BorderSizePixel = 1
  2506. AXETRUCK.BorderColor3 = Color3.fromRGB(196, 40, 28)
  2507. AXETRUCK.Position = UDim2.new(0,175, 0, 3)
  2508. AXETRUCK.Size = UDim2.new(0, 165, 0, 20)
  2509. AXETRUCK.Font = Enum.Font.Fantasy
  2510. AXETRUCK.FontSize = Enum.FontSize.Size18
  2511. AXETRUCK.Text = "Axe + Truck S/Port"
  2512. AXETRUCK.TextColor3 = Color3.new(255, 0, 0)
  2513. AXETRUCK.TextSize = 15
  2514. AXETRUCK.MouseButton1Down:connect(function()
  2515. MainFrame.Visible = false
  2516. OpenFrame.Visible = true
  2517. loadstring(game:HttpGet('https://pastebin.com/raw/TYUpEE2R',true))()
  2518. end)
  2519.  
  2520. WireObjects.Name = "WireObjects"
  2521. WireObjects.Parent = CopyFrame
  2522. WireObjects.BackgroundColor3 = Color3.new(0, 0, 0)
  2523. WireObjects.BorderSizePixel = 1
  2524. WireObjects.BorderColor3 = Color3.fromRGB(196, 40, 28)
  2525. WireObjects.Position = UDim2.new(0,175, 0, 26)
  2526. WireObjects.Size = UDim2.new(0, 165, 0, 20)
  2527. WireObjects.Font = Enum.Font.Fantasy
  2528. WireObjects.FontSize = Enum.FontSize.Size18
  2529. WireObjects.Text = "Wire Objects S/Port"
  2530. WireObjects.TextColor3 = Color3.new(255, 0, 0)
  2531. WireObjects.TextSize = 15
  2532. WireObjects.MouseButton1Down:connect(function()
  2533. loadstring(game:HttpGet('https://pastebin.com/raw/hf5D029M',true))()
  2534. MainFrame.Visible = false
  2535. OpenFrame.Visible = true
  2536.  
  2537. end)
  2538.  
  2539. giftsport.Name = "giftsport"
  2540. giftsport.Parent = CopyFrame
  2541. giftsport.BackgroundColor3 = Color3.new(0, 0, 0)
  2542. giftsport.BorderSizePixel = 1
  2543. giftsport.BorderColor3 = Color3.fromRGB(196, 40, 28)
  2544. giftsport.Position = UDim2.new(0,175, 0, 49)
  2545. giftsport.Size = UDim2.new(0, 165, 0, 20)
  2546. giftsport.Font = Enum.Font.Fantasy
  2547. giftsport.FontSize = Enum.FontSize.Size18
  2548. giftsport.Text = "Gifts S/Port"
  2549. giftsport.TextColor3 = Color3.new(255, 0, 0)
  2550. giftsport.TextSize = 15
  2551. giftsport.MouseButton1Down:connect(function()
  2552. loadstring(game:HttpGet('https://pastebin.com/raw/br15QAkw',true))()
  2553. MainFrame.Visible = false
  2554. OpenFrame.Visible = true
  2555.  
  2556. end)
  2557.  
  2558. HardStructures.Name = "HardStructures"
  2559. HardStructures.Parent = CopyFrame
  2560. HardStructures.BackgroundColor3 = Color3.new(0, 0, 0)
  2561. HardStructures.BorderSizePixel = 1
  2562. HardStructures.BorderColor3 = Color3.fromRGB(196, 40, 28)
  2563. HardStructures.Position = UDim2.new(0,175, 0, 72)
  2564. HardStructures.Size = UDim2.new(0, 165, 0, 20)
  2565. HardStructures.Font = Enum.Font.Fantasy
  2566. HardStructures.FontSize = Enum.FontSize.Size18
  2567. HardStructures.Text = "Glass + Conveyors S/Port"
  2568. HardStructures.TextColor3 = Color3.new(255, 0, 0)
  2569. HardStructures.TextSize = 15
  2570. HardStructures.MouseButton1Down:connect(function()
  2571. loadstring(game:HttpGet('https://pastebin.com/raw/sxGrqwEZ',true))()
  2572. MainFrame.Visible = false
  2573. OpenFrame.Visible = true
  2574.  
  2575. end)
  2576.  
  2577. other.Name = "other"
  2578. other.Parent = CopyFrame
  2579. other.BackgroundColor3 = Color3.new(0, 0, 0)
  2580. other.BorderSizePixel = 1
  2581. other.BorderColor3 = Color3.fromRGB(196, 40, 28)
  2582. other.Position = UDim2.new(0,175, 0, 95)
  2583. other.Size = UDim2.new(0, 165, 0, 20)
  2584. other.Font = Enum.Font.Fantasy
  2585. other.FontSize = Enum.FontSize.Size18
  2586. other.Text = "Other S/Port"
  2587. other.TextColor3 = Color3.new(255, 0, 0)
  2588. other.TextSize = 15
  2589. other.MouseButton1Down:connect(function()
  2590. loadstring(game:HttpGet('https://pastebin.com/raw/e3MCdFDF',true))()
  2591. MainFrame.Visible = false
  2592. OpenFrame.Visible = true
  2593.  
  2594. end)
  2595.  
  2596.  
  2597. Paintingf.Name = "Paintingf"
  2598. Paintingf.Parent = CopyFrame
  2599. Paintingf.BackgroundColor3 = Color3.new(0, 0, 0)
  2600. Paintingf.BorderSizePixel = 1
  2601. Paintingf.BorderColor3 = Color3.fromRGB(196, 40, 28)
  2602. Paintingf.Position = UDim2.new(0, 175, 0, 118)
  2603. Paintingf.Size = UDim2.new(0, 165, 0, 20)
  2604. Paintingf.Font = Enum.Font.Fantasy
  2605. Paintingf.FontSize = Enum.FontSize.Size18
  2606. Paintingf.Text = "Painting + Furn S/Port"
  2607. Paintingf.TextColor3 = Color3.new(255, 0, 0)
  2608. Paintingf.TextSize = 15
  2609. Paintingf.MouseButton1Down:connect(function()
  2610. loadstring(game:HttpGet('https://pastebin.com/raw/qw5Vqh62',true))()
  2611. MainFrame.Visible = false
  2612. OpenFrame.Visible = true
  2613.  
  2614. end)
  2615.  
  2616. TPtreesPlanks.Name = "Tree aura"
  2617. TPtreesPlanks.Parent = CopyFrame
  2618. TPtreesPlanks.BackgroundColor3 = Color3.new(0, 0, 0)
  2619. TPtreesPlanks.BorderSizePixel = 1
  2620. TPtreesPlanks.BorderColor3 = Color3.fromRGB(196, 40, 28)
  2621. TPtreesPlanks.Position = UDim2.new(0, 175, 0, 141)
  2622. TPtreesPlanks.Size = UDim2.new(0, 165, 0, 20)
  2623. TPtreesPlanks.Font = Enum.Font.Fantasy
  2624. TPtreesPlanks.FontSize = Enum.FontSize.Size18
  2625. TPtreesPlanks.Text = "Plank S/Port"
  2626. TPtreesPlanks.TextColor3 = Color3.new(255, 0, 0)
  2627. TPtreesPlanks.TextSize = 15
  2628. TPtreesPlanks.MouseButton1Down:connect(function()
  2629. loadstring(game:HttpGet('https://pastebin.com/raw/uQEpKgLN',true))()
  2630. MainFrame.Visible = false
  2631. OpenFrame.Visible = true
  2632.  
  2633. end)
  2634.  
  2635. CopyBase.Name = "CopyBase"
  2636. CopyBase.Parent = CopyFrame
  2637. CopyBase.BackgroundColor3 = Color3.new(0, 0, 0)
  2638. CopyBase.BorderColor3 = Color3.new(0, 0, 0)
  2639. CopyBase.Position = UDim2.new(0, 3, 0, 26)
  2640. CopyBase.Size = UDim2.new(0, 165, 0, 20)
  2641. CopyBase.Font = Enum.Font.Fantasy
  2642. CopyBase.FontSize = Enum.FontSize.Size18
  2643. CopyBase.Text = "Copy Base"
  2644. CopyBase.TextColor3 = Color3.new(255, 0, 0)
  2645. CopyBase.TextSize = 15
  2646. CopyBase.MouseButton1Down:connect(function()
  2647. loadstring(game:HttpGet('https://pastebin.com/raw/p9mWDwFv',true))()
  2648. end)
  2649.  
  2650.  
  2651. ItemDupe.Name = "ItemDupe"
  2652. ItemDupe.Parent = CopyFrame
  2653. ItemDupe.BackgroundColor3 = Color3.new(0, 0, 0)
  2654. ItemDupe.BorderColor3 = Color3.new(0, 0, 0)
  2655. ItemDupe.Position = UDim2.new(0, 3, 0, 49)
  2656. ItemDupe.Size = UDim2.new(0, 165, 0, 20)
  2657. ItemDupe.Font = Enum.Font.Fantasy
  2658. ItemDupe.FontSize = Enum.FontSize.Size18
  2659. ItemDupe.Text = "Dupe Mode"
  2660. ItemDupe.TextColor3 = Color3.new(255, 0, 0)
  2661. ItemDupe.TextSize = 15
  2662. ItemDupe.MouseButton1Down:connect(function()
  2663. --Functions, look here for the source and how it works if you want to know, also give me credits if you skid xD
  2664.  
  2665. --Prevent the game to kick you by letting the script error by not fincing the remote
  2666. if game.ReplicatedStorage.Transactions:FindFirstChild("AddLog") then
  2667. game.ReplicatedStorage.Transactions.AddLog:Destroy()
  2668. end
  2669.  
  2670. --Button function (toggle)
  2671. local Enabled = false
  2672. ItemDupe.MouseButton1Down:Connect(function()
  2673. if Enabled == true then
  2674. Enabled = false
  2675. ItemDupe.Text = "Dupe Mode: Disabled"
  2676. elseif Enabled == false then
  2677. Enabled = true
  2678. ItemDupe.Text = "Dupe Mode: Enabled"
  2679. end
  2680. end)
  2681.  
  2682.  
  2683. --Changes slot to -1 when Enabled to prevent saving
  2684. while wait(.25) do
  2685. if Enabled == true then
  2686. game.Players.LocalPlayer.CurrentSaveSlot.Value = -1
  2687. end
  2688. end
  2689.  
  2690. --Credits to Johiro
  2691. end)
  2692.  
  2693. GetWood.Name = "GetWood"
  2694. GetWood.Parent = CopyFrame
  2695. GetWood.BackgroundColor3 = Color3.new(0, 0, 0)
  2696. GetWood.BorderColor3 = Color3.new(0, 0, 0)
  2697. GetWood.Position = UDim2.new(0, 3, 0, 72)
  2698. GetWood.Size = UDim2.new(0, 165, 0, 20)
  2699. GetWood.Font = Enum.Font.Fantasy
  2700. GetWood.FontSize = Enum.FontSize.Size18
  2701. GetWood.Text = "Steal all Wood"
  2702. GetWood.TextColor3 = Color3.new(255, 0, 0)
  2703. GetWood.TextSize = 15
  2704. GetWood.MouseButton1Down:connect(function()
  2705. loadstring(game:HttpGet('https://pastebin.com/raw/uKAXDx1d',true))()
  2706. MainFrame.Visible = false
  2707. OpenFrame.Visible = true
  2708. end)
  2709.  
  2710. GetItems.Name = "GetItems"
  2711. GetItems.Parent = CopyFrame
  2712. GetItems.BackgroundColor3 = Color3.new(0, 0, 0)
  2713. GetItems.BorderColor3 = Color3.new(0, 0, 0)
  2714. GetItems.Position = UDim2.new(0, 3, 0, 95)
  2715. GetItems.Size = UDim2.new(0, 165, 0, 20)
  2716. GetItems.Font = Enum.Font.Fantasy
  2717. GetItems.FontSize = Enum.FontSize.Size18
  2718. GetItems.Text = "Steal all Items"
  2719. GetItems.TextColor3 = Color3.new(255, 0, 0)
  2720. GetItems.TextSize = 15
  2721. GetItems.MouseButton1Down:connect(function()
  2722. loadstring(game:HttpGet('https://pastebin.com/raw/qbZbq6Bi',true))()
  2723. MainFrame.Visible = false
  2724. OpenFrame.Visible = true
  2725. end)
  2726.  
  2727. GetAxes.Name = "GetAxes"
  2728. GetAxes.Parent = CopyFrame
  2729. GetAxes.BackgroundColor3 = Color3.new(0, 0, 0)
  2730. GetAxes.BorderColor3 = Color3.new(0, 0, 0)
  2731. GetAxes.Position = UDim2.new(0, 3, 0, 118)
  2732. GetAxes.Size = UDim2.new(0, 165, 0, 20)
  2733. GetAxes.Font = Enum.Font.Fantasy
  2734. GetAxes.FontSize = Enum.FontSize.Size18
  2735. GetAxes.Text = "Steal all Axes"
  2736. GetAxes.TextColor3 = Color3.new(255, 0, 0)
  2737. GetAxes.TextSize = 15
  2738. GetAxes.MouseButton1Down:connect(function()
  2739. loadstring(game:HttpGet('https://pastebin.com/raw/y61fFyKY',true))()
  2740. MainFrame.Visible = false
  2741. OpenFrame.Visible = true
  2742. end)
  2743.  
  2744.  
  2745. GetGifts.Name = "GetGifts"
  2746. GetGifts.Parent = CopyFrame
  2747. GetGifts.BackgroundColor3 = Color3.new(0, 0, 0)
  2748. GetGifts.BorderColor3 = Color3.new(0, 0, 0)
  2749. GetGifts.Position = UDim2.new(0, 3, 0, 141)
  2750. GetGifts.Size = UDim2.new(0, 165, 0, 20)
  2751. GetGifts.Font = Enum.Font.Fantasy
  2752. GetGifts.FontSize = Enum.FontSize.Size18
  2753. GetGifts.Text = "Steal all Gifts"
  2754. GetGifts.TextColor3 = Color3.new(255, 0, 0)
  2755. GetGifts.TextSize = 15
  2756. GetGifts.MouseButton1Down:connect(function()
  2757. loadstring(game:HttpGet('https://pastebin.com/raw/QSADN8bJ',true))()
  2758. MainFrame.Visible = false
  2759. OpenFrame.Visible = true
  2760. end)
  2761.  
  2762.  
  2763.  
  2764. GetStructure.Name = "GetStructure"
  2765. GetStructure.Parent = CopyFrame
  2766. GetStructure.BackgroundColor3 = Color3.new(0, 0, 0)
  2767. GetStructure.BorderColor3 = Color3.new(0, 0, 0)
  2768. GetStructure.Position = UDim2.new(0, 3, 0, 164)
  2769. GetStructure.Size = UDim2.new(0, 165, 0, 20)
  2770. GetStructure.Font = Enum.Font.Fantasy
  2771. GetStructure.FontSize = Enum.FontSize.Size18
  2772. GetStructure.Text = "Steal all Structures"
  2773. GetStructure.TextColor3 = Color3.new(255, 0, 0)
  2774. GetStructure.TextSize = 15
  2775. GetStructure.MouseButton1Down:connect(function()
  2776. loadstring(game:HttpGet('https://pastebin.com/raw/TtxVVGAn',true))()
  2777. MainFrame.Visible = false
  2778. OpenFrame.Visible = true
  2779. end)
  2780.  
  2781. GetFurniture.Name = "GetFurniture"
  2782. GetFurniture.Parent = CopyFrame
  2783. GetFurniture.BackgroundColor3 = Color3.new(0, 0, 0)
  2784. GetFurniture.BorderColor3 = Color3.new(0, 0, 0)
  2785. GetFurniture.Position = UDim2.new(0, 3, 0, 187)
  2786. GetFurniture.Size = UDim2.new(0, 165, 0, 20)
  2787. GetFurniture.Font = Enum.Font.Fantasy
  2788. GetFurniture.FontSize = Enum.FontSize.Size18
  2789. GetFurniture.Text = "Steal all Furniture"
  2790. GetFurniture.TextColor3 = Color3.new(255, 0, 0)
  2791. GetFurniture.TextSize = 15
  2792. GetFurniture.MouseButton1Down:connect(function()
  2793. loadstring(game:HttpGet('https://pastebin.com/raw/iQujeNTN',true))()
  2794. MainFrame.Visible = false
  2795. OpenFrame.Visible = true
  2796. end)
  2797.  
  2798.  
  2799. GetVehicle.Name = "GetVehicle"
  2800. GetVehicle.Parent = CopyFrame
  2801. GetVehicle.BackgroundColor3 = Color3.new(0, 0, 0)
  2802. GetVehicle.BorderColor3 = Color3.new(0, 0, 0)
  2803. GetVehicle.Position = UDim2.new(0, 3, 0, 210)
  2804. GetVehicle.Size = UDim2.new(0, 165, 0, 20)
  2805. GetVehicle.Font = Enum.Font.Fantasy
  2806. GetVehicle.FontSize = Enum.FontSize.Size18
  2807. GetVehicle.Text = "Steal all Box Vehicles"
  2808. GetVehicle.TextColor3 = Color3.new(255, 0, 0)
  2809. GetVehicle.TextSize = 15
  2810. GetVehicle.MouseButton1Down:connect(function()
  2811. loadstring(game:HttpGet('https://pastebin.com/raw/D0z4jG6d',true))()
  2812. MainFrame.Visible = false
  2813. OpenFrame.Visible = true
  2814. end)
  2815.  
  2816.  
  2817. GetWires.Name = "GetWires"
  2818. GetWires.Parent = CopyFrame
  2819. GetWires.BackgroundColor3 = Color3.new(0, 0, 0)
  2820. GetWires.BorderColor3 = Color3.new(0, 0, 0)
  2821. GetWires.Position = UDim2.new(0, 3, 0, 233)
  2822. GetWires.Size = UDim2.new(0, 165, 0, 20)
  2823. GetWires.Font = Enum.Font.Fantasy
  2824. GetWires.FontSize = Enum.FontSize.Size18
  2825. GetWires.Text = "Steal all Wires"
  2826. GetWires.TextColor3 = Color3.new(255, 0, 0)
  2827. GetWires.TextSize = 15
  2828. GetWires.MouseButton1Down:connect(function()
  2829. loadstring(game:HttpGet('https://pastebin.com/raw/QS7Te9aP',true))()
  2830. MainFrame.Visible = false
  2831. OpenFrame.Visible = true
  2832. end)
  2833.  
  2834. local BringUp = Instance.new("TextButton")
  2835.  
  2836. BringUp.Name = "BringUp"
  2837. BringUp.Parent = CopyFrame
  2838. BringUp.BackgroundColor3 = Color3.new(0, 0, 0)
  2839. BringUp.BorderColor3 = Color3.new(0, 0, 0)
  2840. BringUp.Position = UDim2.new(0, 3, 0, 256)
  2841. BringUp.Size = UDim2.new(0, 165, 0, 20)
  2842. BringUp.Font = Enum.Font.Fantasy
  2843. BringUp.FontSize = Enum.FontSize.Size18
  2844. BringUp.Text = "BringUp"
  2845. BringUp.TextColor3 = Color3.new(255, 0, 0)
  2846. BringUp.TextSize = 15
  2847. BringUp.MouseButton1Down:connect(function()
  2848. loadstring(game:GetObjects("rbxassetid://01925396229")[1].Source)()
  2849. end)
  2850.  
  2851.  
  2852. Slot.Name = "Slot"
  2853. Slot.Parent = CopyFrame
  2854. Slot.BackgroundColor3 = Color3.new(0, 0, 0)
  2855. Slot.BorderColor3 = Color3.new(0, 0, 0)
  2856. Slot.Position = UDim2.new(0, 3, 0, 279)
  2857. Slot.Size = UDim2.new(0, 165, 0, 20)
  2858. Slot.Font = Enum.Font.Fantasy
  2859. Slot.FontSize = Enum.FontSize.Size18
  2860. Slot.Text = "Base Slot Number "
  2861. Slot.TextColor3 = Color3.new(1, 1, 1)
  2862. Slot.TextSize = 15
  2863.  
  2864. --Locals
  2865. local MoneyCooldown = false
  2866. local CurrentSlot = game.Players.LocalPlayer:WaitForChild("CurrentSaveSlot").Value
  2867. local ScriptLoad = false
  2868. local CurrentlySavingOrLoading = game.Players.LocalPlayer:WaitForChild("CurrentlySavingOrLoading")
  2869.  
  2870. --Functions
  2871. local function CheckIfSlotAvailable(Slot)
  2872. for a,b in pairs(game.ReplicatedStorage.LoadSaveRequests.GetMetaData:InvokeServer(game.Players.LocalPlayer)) do
  2873. if a == Slot then
  2874. for c,d in pairs(b) do
  2875. if c == "NumSaves" and d ~= 0 then
  2876. return true
  2877. else
  2878. return false
  2879. end
  2880. end
  2881. end
  2882. end
  2883. end
  2884.  
  2885. local function CheckSlotNumber() --Checks if the slot number is right
  2886. if Slot.Text == "1" or Slot.Text == "2" or Slot.Text == "3" or Slot.Text == "4" or Slot.Text == "5" or Slot.Text == "6" then
  2887. local SlotNumber = tonumber(Slot.Text)
  2888. return SlotNumber
  2889. else return false
  2890. end
  2891. end
  2892.  
  2893. local function SendNotification(Title,Text,Duration) -- Sends Notification in the bottom right of the screen
  2894. game.StarterGui:SetCore("SendNotification", {
  2895. Title = Title;
  2896. Text = Text;
  2897. Icon = nil;
  2898. Duration = Duration
  2899. })
  2900. end
  2901.  
  2902. DMoney.Name = "DMoney"
  2903. DMoney.Parent = CopyFrame
  2904. DMoney.BackgroundColor3 = Color3.new(0, 0, 0)
  2905. DMoney.BorderColor3 = Color3.new(0, 0, 0)
  2906. DMoney.Position = UDim2.new(0, 3, 0, 302)
  2907. DMoney.Size = UDim2.new(0, 90, 0, 20)
  2908. DMoney.Font = Enum.Font.Fantasy
  2909. DMoney.FontSize = Enum.FontSize.Size18
  2910. DMoney.Text = "Dupe Money"
  2911. DMoney.TextColor3 = Color3.new(255, 0, 0)
  2912. DMoney.TextSize = 15
  2913. DMoney.MouseButton1Down:connect(function() --Sends the money and will come back after around 2 mins
  2914. if MoneyCooldown == true then
  2915. SendNotification("Cooldown Notification", "Wait for your Money to come back",2)
  2916. return
  2917. elseif MoneyCooldown == false then
  2918. MoneyCooldown = true
  2919. SendNotification("Money Sent", "Wait about 2 minutes for your Money to come back", 5)
  2920. game.ReplicatedStorage.Transactions.ClientToServer.Donate:InvokeServer(game.Players.LocalPlayer, game.Players.LocalPlayer.leaderstats.Money.Value, 1)
  2921. SendNotification("Money Received", "You received your money that you have sent earlier", 5)
  2922. MoneyCooldown = false
  2923. end
  2924. end)
  2925.  
  2926. Load.Name = "Load"
  2927. Load.Parent = CopyFrame
  2928. Load.BackgroundColor3 = Color3.new(0, 0, 0)
  2929. Load.BorderColor3 = Color3.new(0, 0, 0)
  2930. Load.Position = UDim2.new(0, 97, 0, 312)
  2931. Load.Size = UDim2.new(0, 70, 0, 20)
  2932. Load.Font = Enum.Font.Fantasy
  2933. Load.FontSize = Enum.FontSize.Size18
  2934. Load.Text = "Load Slot"
  2935. Load.TextColor3 = Color3.new(1, 1, 1)
  2936. Load.TextSize = 15
  2937. Load.MouseButton1Down:connect(function() --Loads the slot you want
  2938. ScriptLoad = true
  2939. local CheckSlot = CheckSlotNumber()
  2940. if CheckSlot ~= false then
  2941. if CheckIfSlotAvailable(CheckSlot) == true then
  2942. local LoadSlot = game.ReplicatedStorage.LoadSaveRequests.RequestLoad:InvokeServer(CheckSlot)
  2943. if LoadSlot == false then
  2944. SendNotification("Cooldown Notification", "You aren't abled to load now", 1)
  2945. end
  2946. if LoadSlot == true then
  2947. SendNotification("Reload Notification", "Loaded Your Slot", 2)
  2948. CurrentSlot = CheckSlot
  2949. end
  2950. else
  2951. SendNotification("Slot not Available", "This Slot is not Available, please choose another slot", 2)
  2952. end
  2953. else
  2954. SendNotification("Incorrect Slot", "Enter a Valid number in the upper field", 1)
  2955. end
  2956. ScriptLoad = false
  2957. end)
  2958.  
  2959. Store.Name = "Store"
  2960. Store.Parent = CopyFrame
  2961. Store.BackgroundColor3 = Color3.new(0, 0, 0)
  2962. Store.BorderColor3 = Color3.new(0, 0, 0)
  2963. Store.Position = UDim2.new(0, 3, 0, 325)
  2964. Store.Size = UDim2.new(0, 90, 0, 20)
  2965. Store.Font = Enum.Font.Fantasy
  2966. Store.FontSize = Enum.FontSize.Size18
  2967. Store.Text = "Store Axe"
  2968. Store.TextColor3 = Color3.new(255, 0, 0)
  2969. Store.TextSize = 15
  2970. Store.MouseButton1Down:connect(function() --Stores the Axes somewhere so you can restore them later
  2971. Amount = 0
  2972. for a,b in pairs(game.Players.LocalPlayer.Backpack:GetChildren())do
  2973. if b.Name ~= "BlueprintTool" and b.Name == "Tool" then
  2974. b.Parent = game.Players.LocalPlayer
  2975. Amount = Amount + 1
  2976. end
  2977. end
  2978. SendNotification("Store Notification", "Stored "..Amount.." Axes, you can restore them later", 2)
  2979. end)
  2980.  
  2981. Restore.Name = "Restore"
  2982. Restore.Parent = CopyFrame
  2983. Restore.BackgroundColor3 = Color3.new(0, 0, 0)
  2984. Restore.BorderColor3 = Color3.new(0, 0, 0)
  2985. Restore.Position = UDim2.new(0, 3, 0, 348)
  2986. Restore.Size = UDim2.new(0, 165, 0, 20)
  2987. Restore.Font = Enum.Font.Fantasy
  2988. Restore.FontSize = Enum.FontSize.Size18
  2989. Restore.Text = "Restore Axe"
  2990. Restore.TextColor3 = Color3.new(1, 1, 1)
  2991. Restore.TextSize = 15
  2992. Restore.MouseButton1Down:connect(function() --Restores the axes that you stored with the Store function
  2993. Amount = 0
  2994. for a,b in pairs(game.Players.LocalPlayer:GetChildren()) do
  2995. if b.Name ~= "BlueprintTool" and b.Name == "Tool" then
  2996. b.Parent = game.Players.LocalPlayer.Backpack
  2997. Amount = Amount + 1
  2998. end
  2999. end
  3000. SendNotification("Restore Notification", "Restored "..Amount.." Axes that you Stored", 2)
  3001. end)
  3002.  
  3003. SaveSlot.Name = "SaveSlot"
  3004. SaveSlot.Parent = CopyFrame
  3005. SaveSlot.BackgroundColor3 = Color3.new(0, 0, 0)
  3006. SaveSlot.BorderColor3 = Color3.new(0, 0, 0)
  3007. SaveSlot.Position = UDim2.new(0, 3, 0, 371)
  3008. SaveSlot.Size = UDim2.new(0, 165, 0, 20)
  3009. SaveSlot.Font = Enum.Font.Fantasy
  3010. SaveSlot.FontSize = Enum.FontSize.Size18
  3011. SaveSlot.Text = "SaveSlot "
  3012. SaveSlot.TextColor3 = Color3.new(1, 1, 1)
  3013. SaveSlot.TextSize = 15
  3014. SaveSlot.MouseButton1Down:connect(function() --Saves the slot that you want
  3015. local CheckSlot = CheckSlotNumber()
  3016. if CheckSlot ~= false then
  3017. if CurrentSlot ~= -1 then
  3018. local SaveSlot = game.ReplicatedStorage.LoadSaveRequests.RequestSave:InvokeServer(CheckSlot)
  3019. if SaveSlot == true then
  3020. SendNotification("Save Notification", "Saved your Slot", 2)
  3021. elseif SaveSlot == false then
  3022. SendNotification("Already Saving", "Saving/Loading is currently in Progress", 1)
  3023. end
  3024. else
  3025. SendNotification("Error", "Load Your Slot First before saving", 1)
  3026. end
  3027. else
  3028. SendNotification("Incorrect Slot", "Enter a number in the upper field", 1)
  3029. end
  3030. end)
  3031.  
  3032. DropAxes.Name = "DropAxes"
  3033. DropAxes.Parent = CopyFrame
  3034. DropAxes.BackgroundColor3 = Color3.new(0, 0, 0)
  3035. DropAxes.BorderColor3 = Color3.new(0, 0, 0)
  3036. DropAxes.Position = UDim2.new(0, 3, 0, 417)
  3037. DropAxes.Size = UDim2.new(0, 165, 0, 20)
  3038. DropAxes.Font = Enum.Font.Fantasy
  3039. DropAxes.FontSize = Enum.FontSize.Size18
  3040. DropAxes.Text = "Drop Axes "
  3041. DropAxes.TextColor3 = Color3.new(255, 0, 0)
  3042. DropAxes.TextSize = 15
  3043. DropAxes.MouseButton1Down:connect(function() --Drops all your Axes
  3044. Amount = 0
  3045. for a,b in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  3046. if b.Name ~= "BlueprintTool" and b.Name == "Tool" then
  3047. game.ReplicatedStorage.Interaction.ClientInteracted:FireServer(b, "Drop tool", game.Players.LocalPlayer.Character.Head.CFrame)
  3048. Amount = Amount + 1
  3049. end
  3050. end
  3051. SendNotification("Axe Dropped", "Dropped "..Amount.." Axes from your Backpack",5)
  3052. end)
  3053.  
  3054. CountAxes.Name = "CountAxes"
  3055. CountAxes.Parent = CopyFrame
  3056. CountAxes.BackgroundColor3 = Color3.new(0, 0, 0)
  3057. CountAxes.BorderColor3 = Color3.new(0, 0, 0)
  3058. CountAxes.Position = UDim2.new(0, 3, 0, 394)
  3059. CountAxes.Size = UDim2.new(0, 165, 0, 20)
  3060. CountAxes.Font = Enum.Font.Fantasy
  3061. CountAxes.FontSize = Enum.FontSize.Size18
  3062. CountAxes.Text = "Count Axes "
  3063. CountAxes.TextColor3 = Color3.new(255, 0, 0)
  3064. CountAxes.TextSize = 15
  3065. CountAxes.MouseButton1Down:connect(function() --Counts Axes in your Backpack (Equiped Axes dont Count)
  3066. Amount = 0
  3067. for a,b in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  3068. if b.Name ~= "BlueprintTool" and b.Name == "Tool" then
  3069. Amount = Amount + 1
  3070. end
  3071. end
  3072. SendNotification("Axe Amount", "You have "..Amount.." Axes in your Backpack",2)
  3073. end)
  3074.  
  3075. Artmenu.Name = "Artmenu"
  3076. Artmenu.Parent = Picker
  3077. Artmenu.BackgroundColor3 = Color3.new(1, 1, 1)
  3078. Artmenu.BorderColor3 = Color3.new(0, 0, 0)
  3079. Artmenu.Position = UDim2.new(0, 15, 0, 345)
  3080. Artmenu.Size = UDim2.new(0, 80, 0, 80)
  3081. Artmenu.ZIndex = 3
  3082. Artmenu.Image = "rbxassetid://3907587419"
  3083. Artmenu.ScaleType = Enum.ScaleType.Crop
  3084. Artmenu.MouseButton1Click:Connect(function()
  3085. CurrentItem.Image = "rbxassetid://3886256996"
  3086. AIntroImage.Visible = true
  3087. AIntroImage1.Visible = true
  3088. end)
  3089.  
  3090.  
  3091. ArtFrame.Name = "ArtFrame"
  3092. ArtFrame.Parent = MenuFrame
  3093. ArtFrame.BorderSizePixel = 1
  3094. ArtFrame.BackgroundTransparency = 0
  3095. ArtFrame.BorderColor3 = Color3.new(0, 0, 0)
  3096. ArtFrame.BackgroundColor3 = Color3.fromRGB(151, 0, 0)
  3097. ArtFrame.Size = UDim2.new(0, 170, 0, 280)
  3098. ArtFrame.Visible = false
  3099.  
  3100. Paint.Name = "Paint"
  3101. Paint.Parent = ArtFrame
  3102. Paint.BackgroundColor3 = Color3.new(0, 0, 0)
  3103. Paint.BorderColor3 = Color3.new(0, 0, 0)
  3104. Paint.Position = UDim2.new(0, 3, 0, 3)
  3105. Paint.Size = UDim2.new(0, 165, 0, 20)
  3106. Paint.Font = Enum.Font.Fantasy
  3107. Paint.Text = "Paint"
  3108. Paint.TextColor3 = Color3.new(255, 0, 0)
  3109. Paint.TextSize = 15
  3110. Paint.MouseButton1Down:connect(function()
  3111. MainFrame.Visible = false
  3112. OpenFrame.Visible = true
  3113. loadstring(game:HttpGet('https://pastebin.com/raw/KwtFxY8L',true))()
  3114. end)
  3115.  
  3116.  
  3117. PaintFill.Name = "PaintFill"
  3118. PaintFill.Parent = ArtFrame
  3119. PaintFill.BackgroundColor3 = Color3.new(0, 0, 0)
  3120. PaintFill.BorderColor3 = Color3.new(0, 0, 0)
  3121. PaintFill.Position = UDim2.new(0, 3, 0, 26)
  3122. PaintFill.Size = UDim2.new(0, 165, 0, 20)
  3123. PaintFill.Font = Enum.Font.Fantasy
  3124. PaintFill.FontSize = Enum.FontSize.Size18
  3125. PaintFill.Text = "Paint Fill"
  3126. PaintFill.TextColor3 = Color3.new(255, 0, 0)
  3127. PaintFill.TextSize = 15
  3128. PaintFill.MouseButton1Down:connect(function()
  3129. MainFrame.Visible = false
  3130. OpenFrame.Visible = true
  3131. loadstring(game:HttpGet('https://pastebin.com/raw/sc0gEqX5',true))()
  3132. end)
  3133.  
  3134.  
  3135.  
  3136. BaseFLOOR.Name = "BaseFLOOR"
  3137. BaseFLOOR.Parent = ArtFrame
  3138. BaseFLOOR.BackgroundColor3 = Color3.new(0, 0, 0)
  3139. BaseFLOOR.BorderColor3 = Color3.new(0, 0, 0)
  3140. BaseFLOOR.Position = UDim2.new(0, 3, 0, 49)
  3141. BaseFLOOR.Size = UDim2.new(0, 165, 0, 20)
  3142. BaseFLOOR.Font = Enum.Font.Fantasy
  3143. BaseFLOOR.FontSize = Enum.FontSize.Size18
  3144. BaseFLOOR.Text = "Base Floor Prints"
  3145. BaseFLOOR.TextColor3 = Color3.new(255, 0, 0)
  3146. BaseFLOOR.TextSize = 15
  3147. BaseFLOOR.MouseButton1Down:connect(function()
  3148. loadstring(game:HttpGet('https://pastebin.com/raw/M4qfj349',true))()
  3149.  
  3150. end)
  3151.  
  3152. SingleWalls.Name = "SingleWalls"
  3153. SingleWalls.Parent = ArtFrame
  3154. SingleWalls.BackgroundColor3 = Color3.new(0, 0, 0)
  3155. SingleWalls.BorderColor3 = Color3.new(0, 0, 0)
  3156. SingleWalls.Position = UDim2.new(0, 3, 0, 72)
  3157. SingleWalls.Size = UDim2.new(0, 165, 0, 20)
  3158. SingleWalls.Font = Enum.Font.Fantasy
  3159. SingleWalls.FontSize = Enum.FontSize.Size18
  3160. SingleWalls.Text = "Single Wall Prints"
  3161. SingleWalls.TextColor3 = Color3.new(255, 0, 0)
  3162. SingleWalls.TextSize = 15
  3163. SingleWalls.MouseButton1Down:connect(function()
  3164. loadstring(game:HttpGet('https://pastebin.com/raw/vaDSYZcr',true))()
  3165.  
  3166. end)
  3167.  
  3168. DoubleWalls.Name = "DoubleWalls"
  3169. DoubleWalls.Parent = ArtFrame
  3170. DoubleWalls.BackgroundColor3 = Color3.new(0, 0, 0)
  3171. DoubleWalls.BorderColor3 = Color3.new(0, 0, 0)
  3172. DoubleWalls.Position = UDim2.new(0, 3, 0, 95)
  3173. DoubleWalls.Size = UDim2.new(0, 165, 0, 20)
  3174. DoubleWalls.Font = Enum.Font.Fantasy
  3175. DoubleWalls.FontSize = Enum.FontSize.Size18
  3176. DoubleWalls.Text = "Double Wall Prints"
  3177. DoubleWalls.TextColor3 = Color3.new(255, 0, 0)
  3178. DoubleWalls.TextSize = 15
  3179. DoubleWalls.MouseButton1Down:connect(function()
  3180. loadstring(game:HttpGet('https://pastebin.com/raw/VMzdN1b1',true))()
  3181.  
  3182. end)
  3183.  
  3184. TripleWalls.Name = "TripleWalls"
  3185. TripleWalls.Parent = ArtFrame
  3186. TripleWalls.BackgroundColor3 = Color3.new(0, 0, 0)
  3187. TripleWalls.BorderColor3 = Color3.new(0, 0, 0)
  3188. TripleWalls.Position = UDim2.new(0, 3, 0, 118)
  3189. TripleWalls.Size = UDim2.new(0, 165, 0, 20)
  3190. TripleWalls.Font = Enum.Font.Fantasy
  3191. TripleWalls.FontSize = Enum.FontSize.Size18
  3192. TripleWalls.Text = "Triple Wall Prints"
  3193. TripleWalls.TextColor3 = Color3.new(255, 0, 0)
  3194. TripleWalls.TextSize = 15
  3195. TripleWalls.MouseButton1Down:connect(function()
  3196. loadstring(game:HttpGet('https://pastebin.com/raw/WGjKAWCp',true))()
  3197.  
  3198. end)
  3199.  
  3200. Hoofer.Name = "Hoofer"
  3201. Hoofer.Parent = ArtFrame
  3202. Hoofer.BackgroundColor3 = Color3.new(0, 0, 0)
  3203. Hoofer.BorderColor3 = Color3.new(0, 0, 0)
  3204. Hoofer.Position = UDim2.new(0, 3, 0, 141)
  3205. Hoofer.Size = UDim2.new(0, 165, 0, 20)
  3206. Hoofer.Font = Enum.Font.Fantasy
  3207. Hoofer.FontSize = Enum.FontSize.Size18
  3208. Hoofer.Text = "Hoofer Art Gui"
  3209. Hoofer.TextColor3 = Color3.new(255, 0, 0)
  3210. Hoofer.TextSize = 15
  3211. Hoofer.MouseButton1Down:connect(function()
  3212. loadstring(game:HttpGet('https://pastebin.com/raw/byWaCwR8',true))()
  3213. MainFrame.Visible = false
  3214. OpenFrame.Visible = true
  3215. end)
  3216.  
  3217. Landart.Name = "Landart"
  3218. Landart.Parent = ArtFrame
  3219. Landart.BackgroundColor3 = Color3.new(0, 0, 0)
  3220. Landart.BorderColor3 = Color3.new(0, 0, 0)
  3221. Landart.Position = UDim2.new(0, 3, 0, 164)
  3222. Landart.Size = UDim2.new(0, 165, 0, 20)
  3223. Landart.Font = Enum.Font.Fantasy
  3224. Landart.FontSize = Enum.FontSize.Size18
  3225. Landart.Text = "Custom Land Art"
  3226. Landart.TextColor3 = Color3.new(255, 0, 0)
  3227. Landart.TextSize = 15
  3228. Landart.MouseButton1Down:connect(function()
  3229. loadstring(game:HttpGet('https://pastebin.com/raw/Thdycw8W',true))()
  3230. MainFrame.Visible = false
  3231. OpenFrame.Visible = true
  3232. end)
  3233.  
  3234. BluePrints.Name = "BluePrints"
  3235. BluePrints.Parent = ArtFrame
  3236. BluePrints.BackgroundColor3 = Color3.new(0, 0, 0)
  3237. BluePrints.BorderColor3 = Color3.new(0, 0, 0)
  3238. BluePrints.Position = UDim2.new(0, 3, 0, 187)
  3239. BluePrints.Size = UDim2.new(0, 165, 0, 20)
  3240. BluePrints.Font = Enum.Font.Fantasy
  3241. BluePrints.FontSize = Enum.FontSize.Size18
  3242. BluePrints.Text = "BluePrints"
  3243. BluePrints.TextColor3 = Color3.new(255, 0, 0)
  3244. BluePrints.TextSize = 15
  3245. BluePrints.MouseButton1Down:connect(function()
  3246.  
  3247. for i,v in pairs(game.ReplicatedStorage.Purchasables.Structures.BlueprintStructures:GetChildren()) do
  3248. local clone = v:Clone()
  3249. clone.Parent = game.Players.LocalPlayer.PlayerBlueprints.Blueprints
  3250. end
  3251. end)
  3252.  
  3253.  
  3254. MaxLand.Name = "MaxLand"
  3255. MaxLand.Parent = ArtFrame
  3256. MaxLand.BackgroundColor3 = Color3.new(0, 0, 0)
  3257. MaxLand.BorderColor3 = Color3.new(0, 0, 0)
  3258. MaxLand.Position = UDim2.new(0, 3, 0, 210)
  3259. MaxLand.Size = UDim2.new(0, 165, 0, 20)
  3260. MaxLand.Font = Enum.Font.Fantasy
  3261. MaxLand.FontSize = Enum.FontSize.Size18
  3262. MaxLand.Text = "MaxLand"
  3263. MaxLand.TextColor3 = Color3.new(255, 0, 0)
  3264. MaxLand.TextSize = 15
  3265. MaxLand.MouseButton1Down:connect(function()
  3266.  
  3267. for i, v in pairs(game:GetService("Workspace").Properties:GetChildren()) do
  3268. if v:FindFirstChild("Owner") and v.Owner.Value == game.Players.LocalPlayer then
  3269. base = v
  3270. square = v.OriginSquare
  3271. end
  3272. end
  3273. function makebase(pos)
  3274. local Event = game:GetService("ReplicatedStorage").PropertyPurchasing.ClientExpandedProperty
  3275. Event:FireServer(base, pos)
  3276. end
  3277. spos = square.Position
  3278. makebase(CFrame.new(spos.X + 40, spos.Y, spos.Z))
  3279. makebase(CFrame.new(spos.X - 40, spos.Y, spos.Z))
  3280. makebase(CFrame.new(spos.X, spos.Y, spos.Z + 40))
  3281. makebase(CFrame.new(spos.X, spos.Y, spos.Z - 40))
  3282. makebase(CFrame.new(spos.X + 40, spos.Y, spos.Z + 40))
  3283. makebase(CFrame.new(spos.X + 40, spos.Y, spos.Z - 40))
  3284. makebase(CFrame.new(spos.X - 40, spos.Y, spos.Z + 40))
  3285. makebase(CFrame.new(spos.X - 40, spos.Y, spos.Z - 40))
  3286. makebase(CFrame.new(spos.X + 80, spos.Y, spos.Z))
  3287. makebase(CFrame.new(spos.X - 80, spos.Y, spos.Z))
  3288. makebase(CFrame.new(spos.X, spos.Y, spos.Z + 80))
  3289. makebase(CFrame.new(spos.X, spos.Y, spos.Z - 80))
  3290. --Corners--
  3291. makebase(CFrame.new(spos.X + 80, spos.Y, spos.Z + 80))
  3292. makebase(CFrame.new(spos.X + 80, spos.Y, spos.Z - 80))
  3293. makebase(CFrame.new(spos.X - 80, spos.Y, spos.Z + 80))
  3294. makebase(CFrame.new(spos.X - 80, spos.Y, spos.Z - 80))
  3295. --Corners--
  3296. makebase(CFrame.new(spos.X + 40, spos.Y, spos.Z + 80))
  3297. makebase(CFrame.new(spos.X - 40, spos.Y, spos.Z + 80))
  3298. makebase(CFrame.new(spos.X + 80, spos.Y, spos.Z + 40))
  3299. makebase(CFrame.new(spos.X + 80, spos.Y, spos.Z - 40))
  3300. makebase(CFrame.new(spos.X - 80, spos.Y, spos.Z + 40))
  3301. makebase(CFrame.new(spos.X - 80, spos.Y, spos.Z - 40))
  3302. makebase(CFrame.new(spos.X + 40, spos.Y, spos.Z - 80))
  3303. makebase(CFrame.new(spos.X - 40, spos.Y, spos.Z - 80))
  3304.  
  3305. end)
  3306.  
  3307.  
  3308.  
  3309. WipeBase.Name = "WipeBase"
  3310. WipeBase.Parent = ArtFrame
  3311. WipeBase.BackgroundColor3 = Color3.new(0, 0, 0)
  3312. WipeBase.BorderColor3 = Color3.new(0, 0, 0)
  3313. WipeBase.Position = UDim2.new(0, 3, 0, 233)
  3314. WipeBase.Size = UDim2.new(0, 165, 0, 20)
  3315. WipeBase.Font = Enum.Font.Fantasy
  3316. WipeBase.FontSize = Enum.FontSize.Size18
  3317. WipeBase.Text = "Wipe Base"
  3318. WipeBase.TextColor3 = Color3.new(255, 0, 0)
  3319. WipeBase.TextSize = 15
  3320. WipeBase.MouseButton1Down:Connect(function()
  3321. plr = game.Players.LocalPlayer.Name
  3322. pmds = game.Workspace.PlayerModels
  3323. PlaceR = game.ReplicatedStorage.Interaction.DestroyStructure
  3324. for i, v in pairs(pmds:GetChildren()) do
  3325. if v:FindFirstChild("Owner") and v.Owner.Value ~= nil and v.Owner.Value == game.Players[plr] and v:FindFirstChild("ItemName") and v:FindFirstChild("Type") and (v.PrimaryPart ~= nil or v:FindFirstChild("MainCFrame")) then
  3326. PlaceR:FireServer(v)
  3327. end
  3328. end
  3329. end)
  3330.  
  3331. WCollide = "Nothing"
  3332.  
  3333. toolamenu.Name = "toolamenu"
  3334. toolamenu.Parent = Picker
  3335. toolamenu.BackgroundColor3 = Color3.new(1, 1, 1)
  3336. toolamenu.BorderColor3 = Color3.new(0, 0, 0)
  3337. toolamenu.Position = UDim2.new(0, 15, 0,430)
  3338. toolamenu.Size = UDim2.new(0, 80, 0, 80)
  3339. toolamenu.ZIndex = 3
  3340. toolamenu.Image = "rbxassetid://3916428981"
  3341. toolamenu.ScaleType = Enum.ScaleType.Crop
  3342. toolamenu.MouseButton1Click:Connect(function()
  3343. CurrentItem.Image = "rbxassetid://3886256996"
  3344. AIntroImage.Visible = false
  3345. AIntroImage1.Visible = false
  3346.  
  3347. end)
  3348.  
  3349. toolaFrame.Name = "toolaFrame"
  3350. toolaFrame.Parent = MenuFrame
  3351. toolaFrame.BorderSizePixel = 1
  3352. toolaFrame.BackgroundTransparency = 0
  3353. toolaFrame.BorderColor3 = Color3.new(0, 0, 0)
  3354. toolaFrame.BackgroundColor3 = Color3.fromRGB(151, 0, 0)
  3355. toolaFrame.Size = UDim2.new(0, 170, 0, 442)
  3356. toolaFrame.Visible = false
  3357.  
  3358. JumpText.Name = "JumpText"
  3359. JumpText.Parent = toolaFrame
  3360. JumpText.BackgroundColor3 = Color3.new(0, 0, 0)
  3361. JumpText.BorderColor3 = Color3.new(0, 0, 0)
  3362. JumpText.Position = UDim2.new(0, 147, 0, 26)
  3363. JumpText.Size = UDim2.new(0, 21, 0, 20)
  3364. JumpText.Font = Enum.Font.Fantasy
  3365. JumpText.FontSize = Enum.FontSize.Size18
  3366. JumpText.Text = "50"
  3367. JumpText.TextColor3 = Color3.new(255, 0, 0)
  3368. JumpText.TextSize = 15
  3369.  
  3370. JumpPower.Name = "JumpPowerLabel"
  3371. JumpPower.Parent = toolaFrame
  3372. JumpPower.BackgroundColor3 = Color3.new(0, 0, 0)
  3373. JumpPower.BorderColor3 = Color3.new(0, 0, 0)
  3374. JumpPower.Position = UDim2.new(0, 3, 0, 26)
  3375. JumpPower.Size = UDim2.new(0, 140, 0, 20)
  3376. JumpPower.Font = Enum.Font.Fantasy
  3377. JumpPower.FontSize = Enum.FontSize.Size18
  3378. JumpPower.Text = "Jump Power"
  3379. JumpPower.TextColor3 = Color3.new(255, 0, 0)
  3380. JumpPower.TextSize = 15
  3381.  
  3382. player = game.Players.LocalPlayer
  3383. Jump = 50
  3384.  
  3385. JumpPower.MouseButton1Down:connect(function()
  3386. Jump = JumpText.Text
  3387. end)
  3388.  
  3389. player.Character.Humanoid.JumpPower = Jump
  3390.  
  3391. player.Character.Humanoid.Changed:connect(function()
  3392. player.Character.Humanoid.JumpPower = Jump
  3393.  
  3394. end)
  3395.  
  3396. WalkspeedLabel.Name = "WalkspeedLabel"
  3397. WalkspeedLabel.Parent = toolaFrame
  3398. WalkspeedLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  3399. WalkspeedLabel.BorderColor3 = Color3.new(0, 0, 0)
  3400. WalkspeedLabel.Position = UDim2.new(0, 3, 0, 3)
  3401. WalkspeedLabel.Size = UDim2.new(0, 140, 0, 20)
  3402. WalkspeedLabel.Font = Enum.Font.Fantasy
  3403. WalkspeedLabel.FontSize = Enum.FontSize.Size18
  3404. WalkspeedLabel.Text = "Walkspeed"
  3405. WalkspeedLabel.TextColor3 = Color3.new(255, 0, 0)
  3406. WalkspeedLabel.TextSize = 15
  3407.  
  3408. WalkSpeed.Name = "WalkSpeed"
  3409. WalkSpeed.Parent = toolaFrame
  3410. WalkSpeed.BackgroundColor3 = Color3.new(0, 0, 0)
  3411. WalkSpeed.BorderColor3 = Color3.new(0, 0, 0)
  3412. WalkSpeed.Position = UDim2.new(0, 147, 0, 3)
  3413. WalkSpeed.Size = UDim2.new(0, 21, 0, 20)
  3414. WalkSpeed.Font = Enum.Font.Fantasy
  3415. WalkSpeed.FontSize = Enum.FontSize.Size18
  3416. WalkSpeed.Text = "V"
  3417. WalkSpeed.TextColor3 = Color3.new(255, 0, 0)
  3418. WalkSpeed.TextSize = 15
  3419.  
  3420. WalkspeedLabel.MouseButton1Down:connect(function()
  3421. local walkspeedplayer = game:GetService("Players").LocalPlayer
  3422. local walkspeedmouse = walkspeedplayer:GetMouse()
  3423.  
  3424. local walkspeedenabled = false
  3425.  
  3426. function x_walkspeed(key)
  3427. if (key == "v") then
  3428. if walkspeedenabled == false then
  3429. _G.WS = 150;
  3430.  
  3431. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  3432. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  3433. Humanoid.WalkSpeed = _G.WS;
  3434. end)
  3435. Humanoid.WalkSpeed = _G.WS;
  3436.  
  3437. walkspeedenabled = true
  3438. elseif walkspeedenabled == true then
  3439. _G.WS = 15;
  3440. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  3441. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  3442. Humanoid.WalkSpeed = _G.WS;
  3443. end)
  3444. Humanoid.WalkSpeed = _G.WS;
  3445.  
  3446. walkspeedenabled = false
  3447. end
  3448. end
  3449. end
  3450.  
  3451. walkspeedmouse.KeyDown:connect(x_walkspeed)
  3452.  
  3453. end)
  3454.  
  3455. AntiBlack.Name = "AntiBlackLabel"
  3456. AntiBlack.Parent = toolaFrame
  3457. AntiBlack.BackgroundColor3 = Color3.new(0, 0, 0)
  3458. AntiBlack.BorderColor3 = Color3.new(0, 0, 0)
  3459. AntiBlack.Position = UDim2.new(0, 3, 0, 49)
  3460. AntiBlack.Size = UDim2.new(0, 165, 0, 20)
  3461. AntiBlack.Font = Enum.Font.Fantasy
  3462. AntiBlack.FontSize = Enum.FontSize.Size18
  3463. AntiBlack.Text = "Anti Black List (OFF)"
  3464. AntiBlack.TextColor3 = Color3.new(255, 0, 0)
  3465. AntiBlack.TextSize = 15
  3466. AntiBlack.MouseButton1Click:connect(function()
  3467. AntiBlack.TextColor3 = Color3.new(0, 1, 0)
  3468. AntiBlack.BackgroundColor3 = Color3.new(0, 0, 0)
  3469. AntiBlack.Text = "Anti Black List (ON)"
  3470. local plr = game.Players.LocalPlayer
  3471. local cframe
  3472. for i,v in next, workspace:GetDescendants() do
  3473. if v:IsA("SpawnLocation") then
  3474. v.Touched:Connect(function(h)
  3475. if h.Parent == plr.Character and cframe then
  3476. plr.Character:SetPrimaryPartCFrame(cframe)
  3477. end
  3478. end)
  3479. end
  3480. end
  3481.  
  3482. game:GetService("RunService"):BindToRenderStep("NO HACKS",Enum.RenderPriority.Last.Value,function()
  3483. if game.Players.LocalPlayer.Character.PrimaryPart then
  3484. cframe = game.Players.LocalPlayer.Character.PrimaryPart.CFrame
  3485. end
  3486. end)
  3487.  
  3488. for i,v in next, debug.getregistry() do
  3489. if type(v)=='function' and debug.getupvalues(v).lastUpdate then
  3490. debug.setupvalue(v,"lastUpdate",math.huge)
  3491. break
  3492. end
  3493. end
  3494.  
  3495. for i,v in next, workspace.Effects:GetChildren() do
  3496. if v:IsA("BasePart") and v.Name == "BlacklistWall" then
  3497. v:Destroy()
  3498. end
  3499. end
  3500. end)
  3501.  
  3502. GriefFly.Name = "GriefFly"
  3503. GriefFly.Parent = toolaFrame
  3504. GriefFly.BackgroundColor3 = Color3.new(0, 0, 0)
  3505. GriefFly.BorderColor3 = Color3.new(0, 0, 0)
  3506. GriefFly.Position = UDim2.new(0, 3, 0, 72)
  3507. GriefFly.Size = UDim2.new(0, 110, 0, 20)
  3508. GriefFly.Font = Enum.Font.Fantasy
  3509. GriefFly.FontSize = Enum.FontSize.Size18
  3510. GriefFly.Text = "Grief Fly Off "
  3511. GriefFly.TextColor3 = Color3.new(255, 0, 0)
  3512. GriefFly.TextSize = 15
  3513. GriefFly.MouseButton1Click:connect(function()
  3514. GriefFly.Text = "Grief Fly On "
  3515. GriefFly.TextColor3 = Color3.new(0, 1, 0)
  3516. StopGriefFly.Text = "Stop Fly"
  3517. Speed = 2
  3518. Force = 800000
  3519.  
  3520. --Script:
  3521. lplayer = game:GetService("Players").LocalPlayer
  3522. Mouse = lplayer:GetMouse()
  3523. speedfly = Speed
  3524. T = lplayer.Character.HumanoidRootPart
  3525. CONTROL = {F = 0, B = 0, L = 0, R = 0}
  3526. lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  3527.  
  3528. local function fly()
  3529. flying = true
  3530. local BG = Instance.new('BodyGyro', T)
  3531. local BV = Instance.new('BodyVelocity', T)
  3532. BG.P = 9e4
  3533. BG.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  3534. BG.cframe = T.CFrame
  3535. BV.velocity = Vector3.new(0, 0.1, 0)
  3536. BV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  3537. spawn(function()
  3538. repeat wait()
  3539. lplayer.Character.Humanoid.PlatformStand = true
  3540. if CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 then
  3541. SPEED = 50
  3542. elseif not (CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0) and SPEED ~= 0 then
  3543. SPEED = 0
  3544. end
  3545. if (CONTROL.L + CONTROL.R) ~= 0 or (CONTROL.F + CONTROL.B) ~= 0 then
  3546. BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (CONTROL.F + CONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(CONTROL.L + CONTROL.R, (CONTROL.F + CONTROL.B) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
  3547. lCONTROL = {F = CONTROL.F, B = CONTROL.B, L = CONTROL.L, R = CONTROL.R}
  3548. elseif (CONTROL.L + CONTROL.R) == 0 and (CONTROL.F + CONTROL.B) == 0 and SPEED ~= 0 then
  3549. BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (lCONTROL.F + lCONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(lCONTROL.L + lCONTROL.R, (lCONTROL.F + lCONTROL.B) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
  3550. else
  3551. BV.velocity = Vector3.new(0, 0.1, 0)
  3552. end
  3553. BG.cframe = workspace.CurrentCamera.CoordinateFrame
  3554. until not flying
  3555. CONTROL = {F = 0, B = 0, L = 0, R = 0}
  3556. lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  3557. SPEED = 0
  3558. BG:destroy()
  3559. BV:destroy()
  3560. lplayer.Character.Humanoid.PlatformStand = false
  3561. end)
  3562. end
  3563. Mouse.KeyDown:connect(function(KEY)
  3564. if KEY:lower() == 'w' then
  3565. CONTROL.F = speedfly
  3566. elseif KEY:lower() == 's' then
  3567. CONTROL.B = -speedfly
  3568. elseif KEY:lower() == 'a' then
  3569. CONTROL.L = -speedfly
  3570. elseif KEY:lower() == 'd' then
  3571. CONTROL.R = speedfly
  3572. end
  3573. end)
  3574. Mouse.KeyUp:connect(function(KEY)
  3575. if KEY:lower() == 'w' then
  3576. CONTROL.F = 0
  3577. elseif KEY:lower() == 's' then
  3578. CONTROL.B = 0
  3579. elseif KEY:lower() == 'a' then
  3580. CONTROL.L = 0
  3581. elseif KEY:lower() == 'd' then
  3582. CONTROL.R = 0
  3583. end
  3584. end)
  3585. fly()
  3586.  
  3587.  
  3588. -- Made by JackMcJagger15
  3589.  
  3590. power = Force -- change this to make it more or less powerful
  3591.  
  3592. game:GetService('RunService').Stepped:connect(function()
  3593. game.Players.LocalPlayer.Character.Head.CanCollide = false
  3594. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  3595. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  3596. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  3597. end)
  3598.  
  3599. wait(.1)
  3600. local bambam = Instance.new("BodyThrust")
  3601. bambam.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3602. bambam.Force = Vector3.new(power,0,power)
  3603. bambam.Location = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  3604.  
  3605. while wait(0.2) do
  3606. game.Players.LocalPlayer.Character:WaitForChild("Humanoid").Died:connect(function()
  3607. script:Remove()
  3608. end)
  3609. end
  3610. end)
  3611.  
  3612. StopGriefFly.Name = "StopGriefFly"
  3613. StopGriefFly.Parent = toolaFrame
  3614. StopGriefFly.BackgroundColor3 = Color3.new(0, 0, 0)
  3615. StopGriefFly.BorderColor3 = Color3.new(0, 0, 0)
  3616. StopGriefFly.Position = UDim2.new(0, 117, 0, 72)
  3617. StopGriefFly.Size = UDim2.new(0, 51, 0, 20)
  3618. StopGriefFly.Font = Enum.Font.Fantasy
  3619. StopGriefFly.FontSize = Enum.FontSize.Size18
  3620. StopGriefFly.Text = "Stop Fly"
  3621. StopGriefFly.TextColor3 = Color3.new(255, 0, 0)
  3622. StopGriefFly.TextSize = 15
  3623. StopGriefFly.MouseButton1Click:connect(function()
  3624. GriefFly.TextColor3 = Color3.new(1, 1, 1)
  3625. active = false
  3626. game.Players.LocalPlayer.Character.HumanoidRootPart.BodyThrust:Remove()
  3627. if flying then
  3628. end
  3629. GriefFly.Text = "Grief Fly Off "
  3630. StopGriefFly.Text = "Press Fly"
  3631. GriefFly.TextColor3 = Color3.new(255, 0, 0)
  3632. end)
  3633.  
  3634. Fly.Name = "Fly"
  3635. Fly.Parent = toolaFrame
  3636. Fly.BackgroundColor3 = Color3.new(0, 0, 0)
  3637. Fly.BorderColor3 = Color3.new(0, 0, 0)
  3638. Fly.Position = UDim2.new(0, 3, 0, 95)
  3639. Fly.Size = UDim2.new(0, 165, 0, 20)
  3640. Fly.Font = Enum.Font.Fantasy
  3641. Fly.FontSize = Enum.FontSize.Size18
  3642. Fly.Text = "Fly (Press again to STOP)"
  3643. Fly.TextColor3 = Color3.new(255, 0, 0)
  3644. Fly.TextSize = 15
  3645. Fly.MouseButton1Down:connect(function()
  3646.  
  3647.  
  3648. flying = not flying
  3649. repeat wait()
  3650. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  3651. local mouse = game.Players.LocalPlayer:GetMouse()
  3652. repeat wait() until mouse
  3653. local plr = game.Players.LocalPlayer
  3654. local torso = plr.Character.Torso
  3655. local deb = true
  3656. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  3657. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  3658. local maxspeed = 200
  3659. local speed = 0
  3660. if flying then
  3661. end
  3662.  
  3663. function FlyFunction()
  3664. local bg = Instance.new("BodyGyro", torso)
  3665. bg.P = 9e4
  3666. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  3667. bg.cframe = torso.CFrame
  3668. local bv = Instance.new("BodyVelocity", torso)
  3669. bv.velocity = Vector3.new(0,0.1,0)
  3670. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  3671. repeat wait()
  3672. plr.Character.Humanoid.PlatformStand = true
  3673. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  3674. speed = speed+.5+(speed/maxspeed)
  3675. if speed > maxspeed then
  3676. speed = maxspeed
  3677. end
  3678. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  3679. speed = speed-1
  3680. if speed < 0 then
  3681. speed = 0
  3682. end
  3683. end
  3684. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  3685. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  3686. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  3687. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  3688. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  3689. else
  3690. bv.velocity = Vector3.new(0,0.1,0)
  3691. end
  3692. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  3693. until not flying
  3694. ctrl = {f = 0, b = 0, l = 0, r = 0}
  3695. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  3696. speed = 0
  3697. bg:Destroy()
  3698. bv:Destroy()
  3699. plr.Character.Humanoid.PlatformStand = false
  3700. end
  3701. mouse.KeyDown:connect(function(key)
  3702. if key:lower() == "w" then
  3703. ctrl.f = 1
  3704. elseif key:lower() == "s" then
  3705. ctrl.b = -1
  3706. elseif key:lower() == "a" then
  3707. ctrl.l = -1
  3708. elseif key:lower() == "d" then
  3709. ctrl.r = 1
  3710.  
  3711. end
  3712. end)
  3713. mouse.KeyUp:connect(function(key)
  3714. if key:lower() == "w" then
  3715. ctrl.f = 0
  3716. elseif key:lower() == "s" then
  3717. ctrl.b = 0
  3718. elseif key:lower() == "a" then
  3719. ctrl.l = 0
  3720. elseif key:lower() == "d" then
  3721. ctrl.r = 0
  3722. end
  3723. end)
  3724. FlyFunction()
  3725.  
  3726. end)
  3727.  
  3728. PinkWires.Name = "PinkWires"
  3729. PinkWires.Parent = toolaFrame
  3730. PinkWires.BackgroundColor3 = Color3.new(0, 0, 0)
  3731. PinkWires.BorderColor3 = Color3.new(0, 0, 0)
  3732. PinkWires.Position = UDim2.new(0, 3, 0, 118)
  3733. PinkWires.Size = UDim2.new(0, 165, 0, 20)
  3734. PinkWires.Font = Enum.Font.Fantasy
  3735. PinkWires.FontSize = Enum.FontSize.Size18
  3736. PinkWires.Text = "Pink Wires"
  3737. PinkWires.TextColor3 = Color3.new(255, 0, 0)
  3738. PinkWires.TextSize = 15
  3739. PinkWires.MouseButton1Click:connect(function()
  3740. local typecurrent = false
  3741. if typecurrent == true then
  3742. typecurrent = false
  3743. PinkWires.TextColor3 = Color3.new(0.666667, 0, 0)
  3744. PinkWires.Text = "Pink Wires: Magenta Icicle"
  3745. local c = game.ReplicatedStorage.Purchasables:FindFirstChild("IcicleWireMagenta", true)
  3746. c.Name = "Wire"
  3747. local d = game.ReplicatedStorage.Purchasables:FindFirstChild("Wire", true)
  3748. d:Destroy()
  3749. elseif typecurrent == false then
  3750. typecurrent = true
  3751. PinkWires.TextColor3 = Color3.new(0, 1,0)
  3752. PinkWires.Text = "Pink Wires: Active"
  3753. local a = game.ReplicatedStorage.Purchasables:FindFirstChild("NeonWirePinky", true)
  3754. a.Name = "Wire"
  3755. local b = game.ReplicatedStorage.Purchasables:FindFirstChild("Wire", true)
  3756. b:Destroy()
  3757. end
  3758. end)
  3759.  
  3760.  
  3761. ClickTP.Name = "ClickTP"
  3762. ClickTP.Parent = toolaFrame
  3763. ClickTP.BackgroundColor3 = Color3.new(0, 0, 0)
  3764. ClickTP.BorderColor3 = Color3.new(0, 0, 0)
  3765. ClickTP.Position = UDim2.new(0, 3, 0, 164)
  3766. ClickTP.Size = UDim2.new(0, 165, 0, 20)
  3767. ClickTP.Font = Enum.Font.Fantasy
  3768. ClickTP.FontSize = Enum.FontSize.Size18
  3769. ClickTP.Text = "ClickTP"
  3770. ClickTP.TextColor3 = Color3.new(255, 0, 0)
  3771. ClickTP.TextSize = 15
  3772. ClickTP.MouseButton1Click:Connect(function()
  3773. mouse = game.Players.LocalPlayer:GetMouse()
  3774. tool = Instance.new("Tool")
  3775. tool.RequiresHandle = false
  3776. tool.Name = "Click Teleport"
  3777. tool.Activated:connect(function()
  3778. local pos = mouse.Hit+Vector3.new(0,2.5,0)
  3779. pos = CFrame.new(pos.X,pos.Y,pos.Z)
  3780. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  3781. end)
  3782. tool.Parent = game.Players.LocalPlayer.Backpack
  3783. end)
  3784.  
  3785. Noclip.Name = "Noclip"
  3786. Noclip.Parent = toolaFrame
  3787. Noclip.BackgroundColor3 = Color3.new(0, 0, 0)
  3788. Noclip.BorderColor3 = Color3.new(0, 0, 0)
  3789. Noclip.Position = UDim2.new(0, 3, 0, 187)
  3790. Noclip.Size = UDim2.new(0, 165, 0, 20)
  3791. Noclip.Font = Enum.Font.Fantasy
  3792. Noclip.FontSize = Enum.FontSize.Size18
  3793. Noclip.Text = "No clip"
  3794. Noclip.TextColor3 = Color3.new(255, 0, 0)
  3795. Noclip.TextSize = 15
  3796. noclip = false
  3797. game:GetService('RunService').Stepped:connect(function()
  3798. if noclip then
  3799. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  3800. Noclip.BackgroundColor3 = Color3.new(0, 0, 0)
  3801. Noclip.TextColor3 = Color3.new(0, 1, 0)
  3802. Noclip.Text = "No Clip On"
  3803. end
  3804. end)
  3805. Noclip.MouseButton1Down:connect(function()
  3806. noclip = not noclip
  3807. Noclip.BackgroundColor3 = Color3.new(0, 0, 0)
  3808. Noclip.TextColor3 = Color3.new(255, 0, 0)
  3809. Noclip.Text = "No Clip Off"
  3810.  
  3811. end)
  3812. AntiAFKtime.Name = "AntiAFKtime"
  3813. AntiAFKtime.Parent = toolaFrame
  3814. AntiAFKtime.BackgroundColor3 = Color3.new(0, 0, 0)
  3815. AntiAFKtime.BorderColor3 = Color3.new(0, 0, 0)
  3816. AntiAFKtime.Position = UDim2.new(0, 3, 0, 210)
  3817. AntiAFKtime.Size = UDim2.new(0, 165, 0, 20)
  3818. AntiAFKtime.Font = Enum.Font.Fantasy
  3819. AntiAFKtime.FontSize = Enum.FontSize.Size18
  3820. AntiAFKtime.Text = "AFK for: 0 Seconds"
  3821. AntiAFKtime.TextColor3 = Color3.new(255, 0, 0)
  3822. AntiAFKtime.TextSize = 15
  3823.  
  3824.  
  3825. AntiAFK.Name = "AntiAFK"
  3826. AntiAFK.Parent = toolaFrame
  3827. AntiAFK.BackgroundColor3 = Color3.new(0, 0, 0)
  3828. AntiAFK.BorderColor3 = Color3.new(0, 0, 0)
  3829. AntiAFK.Position = UDim2.new(0, 3, 0, 233)
  3830. AntiAFK.Size = UDim2.new(0, 165, 0, 20)
  3831. AntiAFK.Font = Enum.Font.Fantasy
  3832. AntiAFK.FontSize = Enum.FontSize.Size18
  3833. AntiAFK.Text = "Start Anti-AFK Mode"
  3834. AntiAFK.TextColor3 = Color3.new(255, 0, 0)
  3835. AntiAFK.TextSize = 15
  3836. AntiAFK.MouseButton1Down:Connect(function()
  3837.  
  3838. if afkactive == true then
  3839. afkactive = false
  3840. AntiAFK.BackgroundColor3 = Color3.new(0, 0, 0)
  3841. AntiAFKtime.TextColor3 = Color3.new(0, 1, 0)
  3842. AntiAFK.Text = "Start Anti-AFK Mode"
  3843. elseif afkactive == false then
  3844. afkactive = true
  3845. AntiAFK.BackgroundColor3 = Color3.new(0, 0, 0)
  3846. AntiAFKtime.TextColor3 = Color3.new(1, 1, 1)
  3847. AntiAFK.Text = "Stop Anti-AFK Mode"
  3848.  
  3849. logtime = coroutine.wrap(function()
  3850. afktotaltime=0
  3851. while afkactive == true do
  3852. wait(1)
  3853. afktotaltime=afktotaltime+1
  3854. AntiAFKtime.Text = "AFK for: "..afktotaltime.." Seconds"
  3855. end
  3856. end)
  3857.  
  3858. messageBot = coroutine.wrap(function()
  3859. while afkactive == true do
  3860. wait(900)
  3861. possiblechats = {"afk", "brb", "I'm AFK"}
  3862. decide=math.random(1,#possiblechats)
  3863. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(possiblechats[decide], "All")
  3864. game.Players:Chat("/e point")
  3865. end
  3866. end)
  3867.  
  3868. moveChar = coroutine.wrap(function()
  3869. plr = game:service'Players'.LocalPlayer
  3870. char = plr.Character
  3871. hum = char:FindFirstChildOfClass'Humanoid'
  3872. while afkactive==true do
  3873. wait(1)
  3874. hum:Move(Vector3.new(1, 0, 0), false)
  3875. wait(1)
  3876. hum:Move(Vector3.new(-1, 0, 0), false)
  3877. wait(1)
  3878. hum:Move(Vector3.new(1, 0, 0), false)
  3879. wait(1)
  3880. hum:Move(Vector3.new(-1, 0, 0), false)
  3881. wait(1)
  3882. hum:Move(Vector3.new(0, 1, 0), false)
  3883. wait(1)
  3884. hum:Move(Vector3.new(0, 1, 0), false)
  3885. wait(60)
  3886. end
  3887. end)
  3888.  
  3889. logtime()
  3890. moveChar()
  3891. messageBot()
  3892.  
  3893. end
  3894. end)
  3895.  
  3896.  
  3897. Fog.Name = "Fog"
  3898. Fog.Parent = toolaFrame
  3899. Fog.BackgroundColor3 = Color3.new(0, 0, 0)
  3900. Fog.BorderColor3 = Color3.new(0, 0, 0)
  3901. Fog.Position = UDim2.new(0, 3, 0, 256)
  3902. Fog.Size = UDim2.new(0, 165, 0, 20)
  3903. Fog.Font = Enum.Font.Fantasy
  3904. Fog.FontSize = Enum.FontSize.Size18
  3905. Fog.Text = "Remove Fog"
  3906. Fog.TextColor3 = Color3.new(255, 0, 0)
  3907. Fog.TextSize = 15
  3908. Fog.MouseButton1Down:connect(function()
  3909. Fog.BackgroundColor3 = Color3.new(0, 0, 0)
  3910. Fog.TextColor3 = Color3.new(0, 1, 0)
  3911. game.Lighting.Changed:connect(function()
  3912. game.Lighting.TimeOfDay = "12:00:00"
  3913. game.Lighting.FogEnd = 9999
  3914. game.Lighting.Brightness = 2
  3915. end)
  3916. end)
  3917.  
  3918.  
  3919. PinkCar = Instance.new("TextButton")
  3920. TpCar = Instance.new("TextButton")
  3921. PinkCars = Instance.new("TextButton")
  3922.  
  3923. PinkCar.Name = "PinkCar"
  3924. PinkCar.Parent = toolaFrame
  3925. PinkCar.BackgroundColor3 = Color3.new(0, 0, 0)
  3926. PinkCar.BorderColor3 = Color3.new(0, 0, 0)
  3927. PinkCar.Position = UDim2.new(0, 3, 0, 302)
  3928. PinkCar.Size = UDim2.new(0, 140, 0, 20)
  3929. PinkCar.Font = Enum.Font.Fantasy
  3930. PinkCar.FontSize = Enum.FontSize.Size18
  3931. PinkCar.Text = "Pink Car Spawner"
  3932. PinkCar.TextColor3 = Color3.new(255, 0, 0)
  3933. PinkCar.TextSize = 15
  3934.  
  3935. PinkCars.Name = "PinkCars"
  3936. PinkCars.Parent = toolaFrame
  3937. PinkCars.BackgroundColor3 = Color3.new(0, 0, 0)
  3938. PinkCars.BorderColor3 = Color3.new(0, 0, 0)
  3939. PinkCars.Position = UDim2.new(0, 147, 0, 302)
  3940. PinkCars.Size = UDim2.new(0, 21, 0, 20)
  3941. PinkCars.Font = Enum.Font.Fantasy
  3942. PinkCars.FontSize = Enum.FontSize.Size18
  3943. PinkCars.Text = "C"
  3944. PinkCars.TextColor3 = Color3.new(255, 0, 0)
  3945. PinkCars.TextSize = 15
  3946.  
  3947. PinkCar.MouseButton1Click:connect(function()
  3948. PinkCars.TextColor3 = Color3.new(0, 1, 0)
  3949. PinkCar.TextColor3 = Color3.new(0, 1, 0)
  3950. if _G.Executed == false or _G.Executed == nil then
  3951. _G.Executed = true
  3952. Spawned = false
  3953. Spawning = false
  3954. SpawnPad = nil
  3955. workspace.PlayerModels.ChildAdded:connect(function(Added)
  3956. if Spawned == false and Spawning == false then
  3957. Owner = nil
  3958. CheckTries = 0
  3959. CheckSuccess = false
  3960. repeat
  3961. wait()
  3962. CheckTries = CheckTries + 1
  3963. if Added:FindFirstChild("Owner") and Added:FindFirstChild("Type") and Added.Type.Value == "Vehicle" and Added:FindFirstChild("Settings") and Added.Settings:FindFirstChild("Color") then
  3964. CheckSuccess = true
  3965. Owner = Added.Owner.Value
  3966. end
  3967. until CheckTries == 75 or CheckSuccess == true
  3968. if Owner == game.Players.LocalPlayer or game.ReplicatedStorage.Interaction.ClientIsWhitelisted:InvokeServer(Owner) == true then
  3969. Spawning = true
  3970. Added:WaitForChild("Settings")
  3971. Added.Settings:WaitForChild("Color")
  3972. if tostring(Added.Settings.Color.Value) == tostring(1032) then
  3973. Spawned = true
  3974. Spawning = false
  3975. print(Spawned)
  3976. elseif tostring(Added.Settings.Color.Value) ~= tostring(1032) then
  3977. if SpawnPad:FindFirstChild("ButtonRemote_SpawnButton") and SpawnPad:FindFirstChild("Owner") then
  3978. if SpawnPad.Owner.Value == game.Players.LocalPlayer or game.ReplicatedStorage.Interaction.ClientIsWhitelisted:InvokeServer(SpawnPad.Owner.Value) == true then
  3979. Spawning = false
  3980. game.ReplicatedStorage.Interaction.RemoteProxy:FireServer(SpawnPad.ButtonRemote_SpawnButton)
  3981. end
  3982. end
  3983. end
  3984. end
  3985. end
  3986. end)
  3987.  
  3988. mouse = game.Players.LocalPlayer:GetMouse()
  3989. mouse.KeyDown:connect(function(key)
  3990. if key:lower() == "c" then
  3991. if mouse.Target.Parent:FindFirstChild("ButtonRemote_SpawnButton") then
  3992. SpawnPad = mouse.Target.Parent
  3993. Spawned = false
  3994. Spawning = false
  3995. game.ReplicatedStorage.Interaction.RemoteProxy:FireServer(mouse.Target.Parent.ButtonRemote_SpawnButton)
  3996. else
  3997. Spawned = true
  3998. Spawning = false
  3999. end
  4000. end
  4001. end)
  4002. end
  4003. spawn(function()
  4004. repeat
  4005. wait()
  4006. if Spawned == true then
  4007. Spawned = false
  4008. game:GetService("StarterGui"):SetCore("SendNotification", {
  4009. Title = "Pink Car",
  4010. Text = "Successful Spawned."
  4011. })
  4012. end
  4013. until Spawned == true
  4014. end)
  4015. end)
  4016.  
  4017. TpCar.Name = "TpCar"
  4018. TpCar.Parent = toolaFrame
  4019. TpCar.BackgroundColor3 = Color3.new(0, 0, 0)
  4020. TpCar.BorderColor3 = Color3.new(0, 0, 0)
  4021. TpCar.Position = UDim2.new(0, 3, 0, 325)
  4022. TpCar.Size = UDim2.new(0, 165, 0, 20)
  4023. TpCar.Font = Enum.Font.Fantasy
  4024. TpCar.FontSize = Enum.FontSize.Size18
  4025. TpCar.Text = "TP Cars"
  4026. TpCar.TextColor3 = Color3.new(255, 0, 0)
  4027. TpCar.TextSize = 15
  4028.  
  4029. TpCarFrame.Name = "TpCarFrame"
  4030. TpCarFrame.Parent = MenuFrame
  4031. TpCarFrame.BorderSizePixel = 1
  4032. TpCarFrame.BackgroundTransparency = 0
  4033. TpCarFrame.BorderColor3 = Color3.new(0, 0, 0)
  4034. TpCarFrame.BackgroundColor3 = Color3.fromRGB(151, 0, 0)
  4035. TpCarFrame.Size = UDim2.new(0, 170, 0, 327)
  4036. TpCarFrame.Visible = false
  4037.  
  4038. SpawnPointa.Name = "SpawnPointa"
  4039. SpawnPointa.Parent = TpCarFrame
  4040. SpawnPointa.BackgroundColor3 = Color3.new(0, 0, 0)
  4041. SpawnPointa.BorderColor3 = Color3.new(0, 0, 0)
  4042. SpawnPointa.Position = UDim2.new(0, 3, 0, 3)
  4043. SpawnPointa.Size = UDim2.new(0, 165, 0, 20)
  4044. SpawnPointa.Font = Enum.Font.Fantasy
  4045. SpawnPointa.Text = "Spawn Point"
  4046. SpawnPointa.TextColor3 = Color3.new(255, 0, 0)
  4047. SpawnPointa.TextSize = 15
  4048.  
  4049. furnabox.Name = "furnabox"
  4050. furnabox.Parent = TpCarFrame
  4051. furnabox.BackgroundColor3 = Color3.new(0, 0, 0)
  4052. furnabox.BorderColor3 = Color3.new(0, 0, 0)
  4053. furnabox.Position = UDim2.new(0, 3, 0, 26)
  4054. furnabox.Size = UDim2.new(0, 165, 0, 20)
  4055. furnabox.Font = Enum.Font.Fantasy
  4056. furnabox.Text = "Box Cars + Furnishings"
  4057. furnabox.TextColor3 = Color3.new(255, 0, 0)
  4058. furnabox.TextSize = 15
  4059.  
  4060. LinkLogic.Name = "LinkLogic"
  4061. LinkLogic.Parent = TpCarFrame
  4062. LinkLogic.BackgroundColor3 = Color3.new(0, 0, 0)
  4063. LinkLogic.BorderColor3 = Color3.new(0, 0, 0)
  4064. LinkLogic.Position = UDim2.new(0, 3, 0, 49)
  4065. LinkLogic.Size = UDim2.new(0, 165, 0, 20)
  4066. LinkLogic.Font = Enum.Font.Fantasy
  4067. LinkLogic.Text = "Link's Logic"
  4068. LinkLogic.TextColor3 = Color3.new(255, 0, 0)
  4069. LinkLogic.TextSize = 15
  4070.  
  4071. Bshack.Name = "Bshack"
  4072. Bshack.Parent = TpCarFrame
  4073. Bshack.BackgroundColor3 = Color3.new(0, 0, 0)
  4074. Bshack.BorderColor3 = Color3.new(0, 0, 0)
  4075. Bshack.Position = UDim2.new(0, 3, 0, 72)
  4076. Bshack.Size = UDim2.new(0, 165, 0, 20)
  4077. Bshack.Font = Enum.Font.Fantasy
  4078. Bshack.Text = "Bob's Shack"
  4079. Bshack.TextColor3 = Color3.new(255, 0, 0)
  4080. Bshack.TextSize = 15
  4081.  
  4082. Docka.Name = "Docka"
  4083. Docka.Parent = TpCarFrame
  4084. Docka.BackgroundColor3 = Color3.new(0, 0, 0)
  4085. Docka.BorderColor3 = Color3.new(0, 0, 0)
  4086. Docka.Position = UDim2.new(0, 3, 0, 95)
  4087. Docka.Size = UDim2.new(0, 165, 0, 20)
  4088. Docka.Font = Enum.Font.Fantasy
  4089. Docka.Text = "Dock"
  4090. Docka.TextColor3 = Color3.new(255, 0, 0)
  4091. Docka.TextSize = 15
  4092.  
  4093. FineShop.Name = "FineShop"
  4094. FineShop.Parent = TpCarFrame
  4095. FineShop.BackgroundColor3 = Color3.new(0, 0, 0)
  4096. FineShop.BorderColor3 = Color3.new(0, 0, 0)
  4097. FineShop.Position = UDim2.new(0, 3, 0, 118)
  4098. FineShop.Size = UDim2.new(0, 165, 0, 20)
  4099. FineShop.Font = Enum.Font.Fantasy
  4100. FineShop.Text = "Fine Arts Shop"
  4101. FineShop.TextColor3 = Color3.new(255, 0, 0)
  4102. FineShop.TextSize = 15
  4103.  
  4104. Deny.Name = "Deny"
  4105. Deny.Parent = TpCarFrame
  4106. Deny.BackgroundColor3 = Color3.new(0, 0, 0)
  4107. Deny.BorderColor3 = Color3.new(0, 0, 0)
  4108. Deny.Position = UDim2.new(0, 3, 0, 141)
  4109. Deny.Size = UDim2.new(0, 165, 0, 20)
  4110. Deny.Font = Enum.Font.Fantasy
  4111. Deny.Text = "The Den"
  4112. Deny.TextColor3 = Color3.new(255, 0, 0)
  4113. Deny.TextSize = 15
  4114.  
  4115. OfSight.Name = "OfSight"
  4116. OfSight.Parent = TpCarFrame
  4117. OfSight.BackgroundColor3 = Color3.new(0, 0, 0)
  4118. OfSight.BorderColor3 = Color3.new(0, 0, 0)
  4119. OfSight.Position = UDim2.new(0, 3, 0, 164)
  4120. OfSight.Size = UDim2.new(0, 165, 0, 20)
  4121. OfSight.Font = Enum.Font.Fantasy
  4122. OfSight.Text = "Shrine Of Sight"
  4123. OfSight.TextColor3 = Color3.new(255, 0, 0)
  4124. OfSight.TextSize = 15
  4125.  
  4126. SKI.Name = "SKI"
  4127. SKI.Parent = TpCarFrame
  4128. SKI.BackgroundColor3 = Color3.new(0, 0, 0)
  4129. SKI.BorderColor3 = Color3.new(0, 0, 0)
  4130. SKI.Position = UDim2.new(0, 3, 0, 187)
  4131. SKI.Size = UDim2.new(0, 165, 0, 20)
  4132. SKI.Font = Enum.Font.Fantasy
  4133. SKI.Text = "Ski Lodge"
  4134. SKI.TextColor3 = Color3.new(255, 0, 0)
  4135. SKI.TextSize = 15
  4136.  
  4137. LightHouse.Name = "LightHouse"
  4138. LightHouse.Parent = TpCarFrame
  4139. LightHouse.BackgroundColor3 = Color3.new(0, 0, 0)
  4140. LightHouse.BorderColor3 = Color3.new(0, 0, 0)
  4141. LightHouse.Position = UDim2.new(0, 3, 0, 210)
  4142. LightHouse.Size = UDim2.new(0, 165, 0, 20)
  4143. LightHouse.Font = Enum.Font.Fantasy
  4144. LightHouse.Text = "Light House"
  4145. LightHouse.TextColor3 = Color3.new(255, 0, 0)
  4146. LightHouse.TextSize = 15
  4147.  
  4148. LavaTreeA.Name = "LavaTreeA"
  4149. LavaTreeA.Parent = TpCarFrame
  4150. LavaTreeA.BackgroundColor3 = Color3.new(0, 0, 0)
  4151. LavaTreeA.BorderColor3 = Color3.new(0, 0, 0)
  4152. LavaTreeA.Position = UDim2.new(0, 3, 0, 233)
  4153. LavaTreeA.Size = UDim2.new(0, 165, 0, 20)
  4154. LavaTreeA.Font = Enum.Font.Fantasy
  4155. LavaTreeA.Text = "Volcano"
  4156. LavaTreeA.TextColor3 = Color3.new(255, 0, 0)
  4157. LavaTreeA.TextSize = 15
  4158.  
  4159. PalmTreeA.Name = "PalmTreeA"
  4160. PalmTreeA.Parent = TpCarFrame
  4161. PalmTreeA.BackgroundColor3 = Color3.new(0, 0, 0)
  4162. PalmTreeA.BorderColor3 = Color3.new(0, 0, 0)
  4163. PalmTreeA.Position = UDim2.new(0, 3, 0, 256)
  4164. PalmTreeA.Size = UDim2.new(0, 165, 0, 20)
  4165. PalmTreeA.Font = Enum.Font.Fantasy
  4166. PalmTreeA.Text = "Palm Island"
  4167. PalmTreeA.TextColor3 = Color3.new(255, 0, 0)
  4168. PalmTreeA.TextSize = 15
  4169.  
  4170. SnowglowtreeA.Name = "SnowglowtreeA"
  4171. SnowglowtreeA.Parent = TpCarFrame
  4172. SnowglowtreeA.BackgroundColor3 = Color3.new(0, 0, 0)
  4173. SnowglowtreeA.BorderColor3 = Color3.new(0, 0, 0)
  4174. SnowglowtreeA.Position = UDim2.new(0, 3, 0, 279)
  4175. SnowglowtreeA.Size = UDim2.new(0, 165, 0, 20)
  4176. SnowglowtreeA.Font = Enum.Font.Fantasy
  4177. SnowglowtreeA.Text = "Snowglowd Island"
  4178. SnowglowtreeA.TextColor3 = Color3.new(255, 0, 0)
  4179. SnowglowtreeA.TextSize = 15
  4180.  
  4181. GoldTreeA.Name = "GoldTree"
  4182. GoldTreeA.Parent = TpCarFrame
  4183. GoldTreeA.BackgroundColor3 = Color3.new(0, 0, 0)
  4184. GoldTreeA.BorderColor3 = Color3.new(0, 0, 0)
  4185. GoldTreeA.Position = UDim2.new(0, 3, 0,302)
  4186. GoldTreeA.Size = UDim2.new(0, 165, 0, 20)
  4187. GoldTreeA.Font = Enum.Font.Fantasy
  4188. GoldTreeA.Text = "Swamp"
  4189. GoldTreeA.TextColor3 = Color3.new(255, 0, 0)
  4190. GoldTreeA.TextSize = 15
  4191.  
  4192.  
  4193. function TeleportCar(Pos)
  4194. if game.Players.LocalPlayer.Character then
  4195. Character = game.Players.LocalPlayer.Character
  4196. if Character.Humanoid.SeatPart ~= nil then
  4197. Car = Character.Humanoid.SeatPart.Parent
  4198. spawn(function()
  4199. for i=1,5 do
  4200. wait()
  4201. Car:SetPrimaryPartCFrame(Pos * CFrame.Angles(math.rad(Character.HumanoidRootPart.Orientation.x), math.rad(Character.HumanoidRootPart.Orientation.y), 0))
  4202. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(Car.Main)
  4203. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Car.Main)
  4204. end
  4205. end)
  4206. end
  4207. end
  4208. end
  4209.  
  4210. SpawnPointa.MouseButton1Down:connect(function()
  4211. TeleportCar(CFrame.new(155, 3, 74))
  4212. end)
  4213.  
  4214. furnabox.MouseButton1Down:connect(function()
  4215. TeleportCar(CFrame.new(517, 3, -1607.1))
  4216. end)
  4217.  
  4218. LinkLogic.MouseButton1Down:connect(function()
  4219. TeleportCar(CFrame.new(4616.7, 3, -733.5))
  4220. end)
  4221.  
  4222. Bshack.MouseButton1Down:connect(function()
  4223. TeleportCar(CFrame.new(233.1, 7.8, -2536.2))
  4224. end)
  4225.  
  4226. Docka.MouseButton1Down:connect(function()
  4227. TeleportCar(CFrame.new(1087.2, -1.2, -189.7))
  4228. end)
  4229.  
  4230. FineShop.MouseButton1Down:connect(function()
  4231. TeleportCar(CFrame.new(5207, -166, 719))
  4232. end)
  4233.  
  4234. Deny.MouseButton1Down:connect(function()
  4235. TeleportCar(CFrame.new(327.4, 59.8, 1984.2))
  4236. end)
  4237.  
  4238. OfSight.MouseButton1Down:connect(function()
  4239. TeleportCar(CFrame.new(-1600, 205, 919))
  4240. end)
  4241.  
  4242. SKI.MouseButton1Down:connect(function()
  4243. TeleportCar(CFrame.new(1244.8, 59.8, 2278.3))
  4244. end)
  4245.  
  4246. LightHouse.MouseButton1Down:connect(function()
  4247. TeleportCar(CFrame.new(1488.1, 355.2, 3265))
  4248. end)
  4249.  
  4250. LavaTreeA.MouseButton1Down:connect(function()
  4251. TeleportCar(CFrame.new(-1584.4, 623, 1112.9))
  4252. end)
  4253.  
  4254. PalmTreeA.MouseButton1Down:connect(function()
  4255. TeleportCar(CFrame.new(4290.8, -5.9, -1794.2))
  4256. end)
  4257.  
  4258. SnowglowtreeA.MouseButton1Down:connect(function()
  4259. TeleportCar(CFrame.new(-1092.2, -5.9, -938.2))
  4260. end)
  4261.  
  4262. GoldTreeA.MouseButton1Down:connect(function()
  4263. TeleportCar(CFrame.new(-1231.8, 152.7, -540.3))
  4264. end)
  4265.  
  4266. CarRotate.Name = "CarRotate"
  4267. CarRotate.Parent = toolaFrame
  4268. CarRotate.BackgroundColor3 = Color3.new(0, 0, 0)
  4269. CarRotate.BorderColor3 = Color3.new(0, 0, 0)
  4270. CarRotate.Position = UDim2.new(0, 3, 0, 348)
  4271. CarRotate.Size = UDim2.new(0, 140, 0, 20)
  4272. CarRotate.Font = Enum.Font.Fantasy
  4273. CarRotate.FontSize = Enum.FontSize.Size18
  4274. CarRotate.Text = "Car Rotater"
  4275. CarRotate.TextColor3 = Color3.new(255, 0, 0)
  4276. CarRotate.TextSize = 15
  4277.  
  4278. CarRotates.Name = "CarRotates"
  4279. CarRotates.Parent = toolaFrame
  4280. CarRotates.BackgroundColor3 = Color3.new(0, 0, 0)
  4281. CarRotates.BorderColor3 = Color3.new(0, 0, 0)
  4282. CarRotates.Position = UDim2.new(0, 147, 0, 348)
  4283. CarRotates.Size = UDim2.new(0, 21, 0, 20)
  4284. CarRotates.Font = Enum.Font.Fantasy
  4285. CarRotates.FontSize = Enum.FontSize.Size18
  4286. CarRotates.Text = "R"
  4287. CarRotates.TextColor3 = Color3.new(255, 0, 0)
  4288. CarRotates.TextSize = 15
  4289.  
  4290. CarRotate.MouseButton1Click:connect(function()
  4291. local Turn = game:GetService("Players").LocalPlayer:GetMouse()
  4292. function Turn2(key)
  4293. if (key == "r") then
  4294. function RotateCar()
  4295. if game.Players.LocalPlayer.Character then
  4296. Character = game.Players.LocalPlayer.Character
  4297. if Character.Humanoid.SeatPart ~= nil then
  4298. Car = Character.Humanoid.SeatPart.Parent
  4299. spawn(function()
  4300. local Pos = CFrame.new(Car.Main.Position)
  4301. for i=1,5 do
  4302. wait()
  4303. Car:SetPrimaryPartCFrame(Pos * CFrame.Angles(math.rad(Character.HumanoidRootPart.Orientation.x), math.rad(Character.HumanoidRootPart.Orientation.y), 0))
  4304. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(Car.Main)
  4305. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Car.Main)
  4306. end
  4307. end)
  4308. end
  4309. end
  4310. end
  4311. RotateCar()
  4312. end
  4313. end
  4314. Turn.KeyDown:connect(Turn2)
  4315. end)
  4316.  
  4317. Brid.Name = "Bridge"
  4318. Brid.Parent = toolaFrame
  4319. Brid.BackgroundColor3 = Color3.new(0, 0, 0)
  4320. Brid.BorderColor3 = Color3.new(0, 0, 0)
  4321. Brid.Position = UDim2.new(0, 3, 0, 371)
  4322. Brid.Size = UDim2.new(0, 115, 0, 20)
  4323. Brid.Font = Enum.Font.Fantasy
  4324. Brid.FontSize = Enum.FontSize.Size18
  4325. Brid.Text = "Bridge"
  4326. Brid.TextColor3 = Color3.new(255, 0, 0)
  4327. Brid.TextSize = 15
  4328.  
  4329. Bridup.Name = "Bridge"
  4330. Bridup.Parent = toolaFrame
  4331. Bridup.BackgroundColor3 = Color3.new(0, 0, 0)
  4332. Bridup.BorderColor3 = Color3.new(0, 0, 0)
  4333. Bridup.Position = UDim2.new(0, 147, 0, 371)
  4334. Bridup.Size = UDim2.new(0, 21, 0, 20)
  4335. Bridup.Font = Enum.Font.Fantasy
  4336. Bridup.FontSize = Enum.FontSize.Size18
  4337. Bridup.Text = "U"
  4338. Bridup.TextColor3 = Color3.new(255, 0, 0)
  4339. Bridup.TextSize = 15
  4340.  
  4341. BridDown.Name = "Bridge"
  4342. BridDown.Parent = toolaFrame
  4343. BridDown.BackgroundColor3 = Color3.new(0, 0, 0)
  4344. BridDown.BorderColor3 = Color3.new(0, 0, 0)
  4345. BridDown.Position = UDim2.new(0, 122, 0, 371)
  4346. BridDown.Size = UDim2.new(0, 21, 0, 20)
  4347. BridDown.Font = Enum.Font.Fantasy
  4348. BridDown.FontSize = Enum.FontSize.Size18
  4349. BridDown.Text = "D"
  4350. BridDown.TextColor3 = Color3.new(255, 0, 0)
  4351. BridDown.TextSize = 15
  4352.  
  4353. local BridgeD = false
  4354. BridDown.MouseButton1Click:connect(function()
  4355. if BridgeD == false then
  4356. for _,v in pairs(game.workspace.Bridge.VerticalLiftBridge.Lift:GetChildren()) do
  4357. v.CFrame = v.CFrame + Vector3.new(0, -26, 0)
  4358. end
  4359. BridgeD = true
  4360. end
  4361. end)
  4362.  
  4363. Bridup.MouseButton1Click:connect(function()
  4364. if BridgeD == true then
  4365. for _,v in pairs(game.workspace.Bridge.VerticalLiftBridge.Lift:GetChildren()) do
  4366. v.CFrame = v.CFrame + Vector3.new(0, 26, 0)
  4367. end
  4368. BridgeD = false
  4369. end
  4370. end)
  4371.  
  4372.  
  4373. ReJoinServer.Name = "ReJoinServer"
  4374. ReJoinServer.Parent = toolaFrame
  4375. ReJoinServer.BackgroundColor3 = Color3.new(0, 0, 0)
  4376. ReJoinServer.BorderColor3 = Color3.new(0, 0, 0)
  4377. ReJoinServer.Position = UDim2.new(0, 3, 0, 394)
  4378. ReJoinServer.Size = UDim2.new(0, 165, 0, 20)
  4379. ReJoinServer.Font = Enum.Font.Fantasy
  4380. ReJoinServer.FontSize = Enum.FontSize.Size18
  4381. ReJoinServer.Text = "ReJoin Server"
  4382. ReJoinServer.TextColor3 = Color3.new(255, 0, 0)
  4383. ReJoinServer.TextSize = 15
  4384. ReJoinServer.MouseButton1Down:connect(function()
  4385. local placeId = "13822889"
  4386. game:GetService("TeleportService"):Teleport(placeId)
  4387. end)
  4388.  
  4389. Reset.Name = "Reset"
  4390. Reset.Parent = toolaFrame
  4391. Reset.BackgroundColor3 = Color3.new(0, 0, 0)
  4392. Reset.BorderColor3 = Color3.new(0, 0, 0)
  4393. Reset.Position = UDim2.new(0, 3, 0, 417)
  4394. Reset.Size = UDim2.new(0, 165, 0, 20)
  4395. Reset.Font = Enum.Font.Fantasy
  4396. Reset.FontSize = Enum.FontSize.Size18
  4397. Reset.Text = "Reset Character"
  4398. Reset.TextColor3 = Color3.new(255, 0, 0)
  4399. Reset.TextSize = 15
  4400. Reset.MouseButton1Click:connect(function()
  4401. game.Players.LocalPlayer.Character.Head:Destroy()
  4402. end)
  4403.  
  4404. Buymenu.Name = "Buymenu"
  4405. Buymenu.Parent = Picker
  4406. Buymenu.BackgroundColor3 = Color3.new(1, 1, 1)
  4407. Buymenu.BorderColor3 = Color3.new(0, 0, 0)
  4408. Buymenu.Position = UDim2.new(0, 15, 0,515)
  4409. Buymenu.Size = UDim2.new(0, 80, 0, 80)
  4410. Buymenu.ZIndex = 3
  4411. Buymenu.Image = "rbxassetid://3936608288"
  4412. Buymenu.ScaleType = Enum.ScaleType.Crop
  4413. Buymenu.MouseButton1Click:Connect(function()
  4414. CurrentItem.Image = "rbxassetid://3886256996"
  4415. AIntroImage.Visible = true
  4416. AIntroImage1.Visible = true
  4417. end)
  4418.  
  4419. BuyFrame.Name = "BuyFrame"
  4420. BuyFrame.Parent = MenuFrame
  4421. BuyFrame.BorderSizePixel = 1
  4422. BuyFrame.BackgroundTransparency = 0
  4423. BuyFrame.BorderColor3 = Color3.new(0, 0, 0)
  4424. BuyFrame.BackgroundColor3 = Color3.fromRGB(151, 0, 0)
  4425. BuyFrame.Size = UDim2.new(0, 170, 0, 141)
  4426. BuyFrame.Visible = false
  4427.  
  4428. wrus.Name = "wrus"
  4429. wrus.Parent = BuyFrame
  4430. wrus.BackgroundColor3 = Color3.new(0, 0, 0)
  4431. wrus.BorderColor3 = Color3.new(0, 0, 0)
  4432. wrus.Position = UDim2.new(0, 3, 0, 3)
  4433. wrus.Size = UDim2.new(0, 164, 0, 20)
  4434. wrus.Font = Enum.Font.Fantasy
  4435. wrus.FontSize = Enum.FontSize.Size18
  4436. wrus.Text = "Wod R Us"
  4437. wrus.TextColor3 = Color3.new(255, 0, 0)
  4438. wrus.TextSize = 15
  4439. wrus.MouseButton1Click:connect(function()
  4440. loadstring(game:HttpGet('https://pastebin.com/raw/zqpfJ5ef',true))()
  4441. MainFrame.Visible = false
  4442. OpenFrame.Visible = true
  4443.  
  4444. end)
  4445.  
  4446. fshop.Name = "fshop"
  4447. fshop.Parent = BuyFrame
  4448. fshop.BackgroundColor3 = Color3.new(0, 0, 0)
  4449. fshop.BorderColor3 = Color3.new(0, 0, 0)
  4450. fshop.Position = UDim2.new(0, 3, 0, 26)
  4451. fshop.Size = UDim2.new(0, 164, 0, 20)
  4452. fshop.Font = Enum.Font.Fantasy
  4453. fshop.FontSize = Enum.FontSize.Size18
  4454. fshop.Text = "Furniture Store"
  4455. fshop.TextColor3 = Color3.new(255, 0, 0)
  4456. fshop.TextSize = 15
  4457. fshop.MouseButton1Click:connect(function()
  4458. loadstring(game:HttpGet('https://pastebin.com/raw/kkvhSQqm',true))()
  4459. MainFrame.Visible = false
  4460. OpenFrame.Visible = true
  4461. end)
  4462.  
  4463. bcps.Name = "bcps"
  4464. bcps.Parent = BuyFrame
  4465. bcps.BackgroundColor3 = Color3.new(0, 0, 0)
  4466. bcps.BorderColor3 = Color3.new(0, 0, 0)
  4467. bcps.Position = UDim2.new(0, 3, 0, 49)
  4468. bcps.Size = UDim2.new(0, 164, 0, 20)
  4469. bcps.Font = Enum.Font.Fantasy
  4470. bcps.FontSize = Enum.FontSize.Size18
  4471. bcps.Text = "Bobs, Car, Pics"
  4472. bcps.TextColor3 = Color3.new(255, 0, 0)
  4473. bcps.TextSize = 15
  4474. bcps.MouseButton1Click:connect(function()
  4475. loadstring(game:HttpGet('https://pastebin.com/raw/Ss7D3Uxj',true))()
  4476. MainFrame.Visible = false
  4477. OpenFrame.Visible = true
  4478.  
  4479. end)
  4480.  
  4481. ls.Name = "ls"
  4482. ls.Parent = BuyFrame
  4483. ls.BackgroundColor3 = Color3.new(0, 0, 0)
  4484. ls.BorderColor3 = Color3.new(0, 0, 0)
  4485. ls.Position = UDim2.new(0, 3, 0, 72)
  4486. ls.Size = UDim2.new(0, 164, 0, 20)
  4487. ls.Font = Enum.Font.Fantasy
  4488. ls.FontSize = Enum.FontSize.Size18
  4489. ls.Text = "Logic Store"
  4490. ls.TextColor3 = Color3.new(255, 0, 0)
  4491. ls.TextSize = 15
  4492. ls.MouseButton1Click:connect(function()
  4493. loadstring(game:HttpGet('https://pastebin.com/raw/zWgwSGj6',true))()
  4494. MainFrame.Visible = false
  4495. OpenFrame.Visible = true
  4496. end)
  4497.  
  4498. bp.Name = "bp"
  4499. bp.Parent = BuyFrame
  4500. bp.BackgroundColor3 = Color3.new(0, 0, 0)
  4501. bp.BorderColor3 = Color3.new(0, 0, 0)
  4502. bp.Position = UDim2.new(0, 3, 0, 95)
  4503. bp.Size = UDim2.new(0, 164, 0, 20)
  4504. bp.Font = Enum.Font.Fantasy
  4505. bp.FontSize = Enum.FontSize.Size18
  4506. bp.Text = "Blue Prints"
  4507. bp.TextColor3 = Color3.new(255, 0, 0)
  4508. bp.TextSize = 15
  4509. bp.MouseButton1Click:connect(function()
  4510. loadstring(game:HttpGet('https://pastebin.com/raw/5HaFXJqZ',true))()
  4511. MainFrame.Visible = false
  4512. OpenFrame.Visible = true
  4513. end)
  4514.  
  4515. Halloween.Name = "Halloween"
  4516. Halloween.Parent = BuyFrame
  4517. Halloween.BackgroundColor3 = Color3.new(0, 0, 0)
  4518. Halloween.BorderColor3 = Color3.new(0, 0, 0)
  4519. Halloween.Position = UDim2.new(0, 3, 0, 118)
  4520. Halloween.Size = UDim2.new(0, 164, 0, 20)
  4521. Halloween.Font = Enum.Font.Fantasy
  4522. Halloween.FontSize = Enum.FontSize.Size18
  4523. Halloween.Text = "Halloween"
  4524. Halloween.TextColor3 = Color3.new(255, 0, 0)
  4525. Halloween.TextSize = 15
  4526. Halloween.MouseButton1Click:connect(function()
  4527. loadstring(game:HttpGet('https://pastebin.com/raw/aj3n8VDw',true))()
  4528. MainFrame.Visible = false
  4529. OpenFrame.Visible = true
  4530. end)
  4531.  
  4532. Btoolamenu.Name = "Btoolamenu"
  4533. Btoolamenu.Parent = Picker
  4534. Btoolamenu.BackgroundColor3 = Color3.new(1, 1, 1)
  4535. Btoolamenu.BorderColor3 = Color3.new(0, 0, 0)
  4536. Btoolamenu.Position = UDim2.new(0, 15, 0,600)
  4537. Btoolamenu.Size = UDim2.new(0, 80, 0, 80)
  4538. Btoolamenu.ZIndex = 3
  4539. Btoolamenu.Image = "rbxassetid://3953123880"
  4540. Btoolamenu.ScaleType = Enum.ScaleType.Crop
  4541. Btoolamenu.MouseButton1Click:Connect(function()
  4542. CurrentItem.Image = "rbxassetid://3886256996"
  4543. AIntroImage.Visible = true
  4544. AIntroImage1.Visible = true
  4545. end)
  4546.  
  4547. LT2GUI2Frame.Name = "LT2GUI2Frame"
  4548. LT2GUI2Frame.Parent = MenuFrame
  4549. LT2GUI2Frame.BorderSizePixel = 1
  4550. LT2GUI2Frame.BackgroundTransparency = 0
  4551. LT2GUI2Frame.BorderColor3 = Color3.new(0, 0, 0)
  4552. LT2GUI2Frame.BackgroundColor3 = Color3.fromRGB(151, 0, 0)
  4553. LT2GUI2Frame.Size = UDim2.new(0, 170, 0, 255)
  4554. LT2GUI2Frame.Visible = false
  4555.  
  4556. FunStuffHOVER.Name = "FunStuffHOVER"
  4557. FunStuffHOVER.Parent = LT2GUI2Frame
  4558. FunStuffHOVER.BackgroundColor3 = Color3.new(0, 0, 0)
  4559. FunStuffHOVER.BorderColor3 = Color3.new(0, 0, 0)
  4560. FunStuffHOVER.Position = UDim2.new(0, 3, 0, 3)
  4561. FunStuffHOVER.Size = UDim2.new(0, 165, 0, 20)
  4562. FunStuffHOVER.Font = Enum.Font.Fantasy
  4563. FunStuffHOVER.FontSize = Enum.FontSize.Size18
  4564. FunStuffHOVER.Text = "Hover Board"
  4565. FunStuffHOVER.TextColor3 = Color3.new(255, 0, 0)
  4566. FunStuffHOVER.TextSize = 15
  4567. FunStuffHOVER.MouseButton1Click:connect(function()
  4568. loadstring(game:HttpGet('https://pastebin.com/raw/DabYym5D',true))()
  4569.  
  4570. end)
  4571.  
  4572. FunStuffTHOMAS.Name = "FunStuffTHOMAS"
  4573. FunStuffTHOMAS.Parent = LT2GUI2Frame
  4574. FunStuffTHOMAS.BackgroundColor3 = Color3.new(0, 0, 0)
  4575. FunStuffTHOMAS.BorderColor3 = Color3.new(0, 0, 0)
  4576. FunStuffTHOMAS.Position = UDim2.new(0, 3, 0, 26)
  4577. FunStuffTHOMAS.Size = UDim2.new(0, 165, 0, 20)
  4578. FunStuffTHOMAS.Font = Enum.Font.Fantasy
  4579. FunStuffTHOMAS.FontSize = Enum.FontSize.Size18
  4580. FunStuffTHOMAS.Text = "Thomas The Tank"
  4581. FunStuffTHOMAS.TextColor3 = Color3.new(255, 0, 0)
  4582. FunStuffTHOMAS.TextSize = 15
  4583. FunStuffTHOMAS.MouseButton1Click:connect(function()
  4584. loadstring(game:HttpGet('http://pastebin.com/raw/tMr759X7',true))()
  4585.  
  4586. end)
  4587.  
  4588. FunStuffPOLICE.Name = "FunStuffPOLICE"
  4589. FunStuffPOLICE.Parent = LT2GUI2Frame
  4590. FunStuffPOLICE.BackgroundColor3 = Color3.new(0, 0, 0)
  4591. FunStuffPOLICE.BorderColor3 = Color3.new(0, 0, 0)
  4592. FunStuffPOLICE.Position = UDim2.new(0, 3, 0, 49)
  4593. FunStuffPOLICE.Size = UDim2.new(0, 165, 0, 20)
  4594. FunStuffPOLICE.Font = Enum.Font.Fantasy
  4595. FunStuffPOLICE.FontSize = Enum.FontSize.Size18
  4596. FunStuffPOLICE.Text = "Police Man"
  4597. FunStuffPOLICE.TextColor3 = Color3.new(255, 0, 0)
  4598. FunStuffPOLICE.TextSize = 15
  4599. FunStuffPOLICE.MouseButton1Click:connect(function()
  4600. loadstring(game:HttpGet('https://pastebin.com/raw/FR9Fzcqw',true))()
  4601.  
  4602. end)
  4603.  
  4604. FunStuffSPRAY.Name = "FunStuffSPRAY"
  4605. FunStuffSPRAY.Parent = LT2GUI2Frame
  4606. FunStuffSPRAY.BackgroundColor3 = Color3.new(0, 0, 0)
  4607. FunStuffSPRAY.BorderColor3 = Color3.new(0, 0, 0)
  4608. FunStuffSPRAY.Position = UDim2.new(0, 3, 0, 72)
  4609. FunStuffSPRAY.Size = UDim2.new(0, 165, 0, 20)
  4610. FunStuffSPRAY.Font = Enum.Font.Fantasy
  4611. FunStuffSPRAY.FontSize = Enum.FontSize.Size18
  4612. FunStuffSPRAY.Text = "Spray Can"
  4613. FunStuffSPRAY.TextColor3 = Color3.new(255, 0, 0)
  4614. FunStuffSPRAY.TextSize = 15
  4615. FunStuffSPRAY.MouseButton1Click:connect(function()
  4616. loadstring(game:HttpGet('http://pastebin.com/raw/raYkCjyy',true))()
  4617.  
  4618. end)
  4619.  
  4620. FunStuffCOCA.Name = "FunStuffCOCA"
  4621. FunStuffCOCA.Parent = LT2GUI2Frame
  4622. FunStuffCOCA.BackgroundColor3 = Color3.new(0, 0, 0)
  4623. FunStuffCOCA.BorderColor3 = Color3.new(0, 0, 0)
  4624. FunStuffCOCA.Position = UDim2.new(0, 3, 0, 95)
  4625. FunStuffCOCA.Size = UDim2.new(0, 165, 0, 20)
  4626. FunStuffCOCA.Font = Enum.Font.Fantasy
  4627. FunStuffCOCA.FontSize = Enum.FontSize.Size18
  4628. FunStuffCOCA.Text = "Coca Cola"
  4629. FunStuffCOCA.TextColor3 = Color3.new(255, 0, 0)
  4630. FunStuffCOCA.TextSize = 15
  4631. FunStuffCOCA.MouseButton1Click:connect(function()
  4632. loadstring(game:HttpGet('https://pastebin.com/raw/nMu90Kdq',true))()
  4633.  
  4634. end)
  4635.  
  4636. FunStuffLEAKED.Name = "FunStuffLEAKED"
  4637. FunStuffLEAKED.Parent = LT2GUI2Frame
  4638. FunStuffLEAKED.BackgroundColor3 = Color3.new(0, 0, 0)
  4639. FunStuffLEAKED.BorderColor3 = Color3.new(0, 0, 0)
  4640. FunStuffLEAKED.Position = UDim2.new(0, 3, 0, 118)
  4641. FunStuffLEAKED.Size = UDim2.new(0, 165, 0, 20)
  4642. FunStuffLEAKED.Font = Enum.Font.Fantasy
  4643. FunStuffLEAKED.FontSize = Enum.FontSize.Size18
  4644. FunStuffLEAKED.Text = "Leaked Items"
  4645. FunStuffLEAKED.TextColor3 = Color3.new(255, 0, 0)
  4646. FunStuffLEAKED.TextSize = 15
  4647. FunStuffLEAKED.MouseButton1Down:connect(function()
  4648. game.ReplicatedStorage.Purchasables:Clone().Parent = game.Workspace.PlayerModels
  4649. end)
  4650.  
  4651.  
  4652. FunStuffFLASH.Name = "FunStuffFLASH"
  4653. FunStuffFLASH.Parent = LT2GUI2Frame
  4654. FunStuffFLASH.BackgroundColor3 = Color3.new(0, 0, 0)
  4655. FunStuffFLASH.BorderColor3 = Color3.new(0, 0, 0)
  4656. FunStuffFLASH.Position = UDim2.new(0, 3, 0, 141)
  4657. FunStuffFLASH.Size = UDim2.new(0, 165, 0, 20)
  4658. FunStuffFLASH.Font = Enum.Font.Fantasy
  4659. FunStuffFLASH.FontSize = Enum.FontSize.Size18
  4660. FunStuffFLASH.Text = "Flash Light"
  4661. FunStuffFLASH.TextColor3 = Color3.new(255, 0, 0)
  4662. FunStuffFLASH.TextSize = 15
  4663. FunStuffFLASH.MouseButton1Click:Connect(function()
  4664.  
  4665. FunStuffFLASH.BackgroundColor3 = Color3.new(0.14902, 0.490196, 0.109804)
  4666. -- Created by supersonicfan111
  4667. local p=game:GetService"Players".LocalPlayer
  4668. local c=p.Character
  4669. local surf='SmoothNoOutlines'
  4670. if not c then error'Cannot find character, please respawn, then rerun the script' end
  4671.  
  4672. -- Flashlight Handle
  4673. local hand=Instance.new"Part"
  4674. hand.BrickColor=BrickColor.DarkGray()
  4675. hand.Parent=c
  4676. hand.Anchored=false
  4677. hand.Locked=true
  4678. hand.CanCollide=false
  4679. hand.FormFactor='Custom'
  4680. hand.Size=Vector3.new(1,1,2)
  4681. hand.TopSurface,hand.BottomSurface=surf,surf
  4682.  
  4683. -- Torch Effect
  4684. local fe=Instance.new"Part"
  4685. fe.BrickColor=BrickColor.new"Black"
  4686. fe.Parent=c
  4687. fe.Anchored=false
  4688. fe.Locked=true
  4689. fe.CanCollide=false
  4690. fe.FormFactor='Custom'
  4691. fe.Size=Vector3.new(.8,.8,.2)
  4692. fe.TopSurface,hand.BottomSurface=surf,surf
  4693.  
  4694. -- Welding stuff
  4695.  
  4696. -- Flash to Right Arm
  4697. local weld1=Instance.new"Weld"
  4698. weld1.Parent=hand
  4699. weld1.Part0=hand
  4700. weld1.Part1=c['Right Arm']
  4701. weld1.C0=CFrame.new(0, 1.5, 0)
  4702.  
  4703. -- Torch Effect to Flash
  4704. local weld2=Instance.new"Weld"
  4705. weld2.Parent=hand
  4706. weld2.Part0=hand
  4707. weld2.Part1=fe
  4708. weld2.C0=CFrame.new(0, 0, 1)
  4709.  
  4710. -- Right Arm Weld
  4711. local ra=Instance.new"Weld"
  4712. ra.Parent=c['Torso']
  4713. ra.Part0=c['Right Arm']
  4714. ra.Part1=c['Torso']
  4715. ra.C0=CFrame.new(-1.5,1,0)*CFrame.Angles(math.rad(180),0,0)
  4716.  
  4717.  
  4718.  
  4719. -- Flashlight Functionality
  4720.  
  4721. local flashlightOn = false
  4722. local Battery=50
  4723.  
  4724. -- Handles turning the flashlight on/off
  4725. p:GetMouse().Button1Down:connect(function()
  4726. flashlightOn=not flashlightOn
  4727. if flashlightOn then
  4728. fe.BrickColor=BrickColor.new"New Yeller"
  4729. light=Instance.new"SurfaceLight"
  4730. light.Parent=fe
  4731. light.Range=1000
  4732. light.Face="Back"
  4733. light.Brightness=10
  4734. fe.Material="Neon"
  4735. else
  4736. fe.BrickColor=BrickColor.new"Black"
  4737. if light then light:destroy() end
  4738. fe.Material="SmoothPlastic"
  4739. end
  4740. end)
  4741.  
  4742. -- Battery Modules
  4743.  
  4744. -- Depleting and Charging
  4745. spawn(function()
  4746. while wait(1) do
  4747. if flashlightOn then
  4748. if Battery > 0 then
  4749. Battery=Battery-1
  4750. end
  4751. else
  4752. if Battery < 100 then
  4753. Battery=Battery+1
  4754. end
  4755. end
  4756. print(Battery)
  4757. end
  4758. end)
  4759.  
  4760. -- Turning off flashlight if the battery is too low
  4761. spawn(function()
  4762. while wait() do
  4763. if Battery <= 0 then
  4764. flashlightOn=false
  4765. if light then light:destroy() end
  4766. fe.BrickColor=BrickColor.new"Black"
  4767. fe.Material="SmoothPlastic"
  4768. end
  4769. end
  4770. end)
  4771.  
  4772. local stepped = game:GetService'RunService'.RenderStepped
  4773. end)
  4774.  
  4775.  
  4776.  
  4777. DeleteTool.Name = "DeleteTool "
  4778. DeleteTool.Parent = LT2GUI2Frame
  4779. DeleteTool.BackgroundColor3 = Color3.new(0, 0, 0)
  4780. DeleteTool.BorderColor3 = Color3.new(0, 0, 0)
  4781. DeleteTool.Position = UDim2.new(0, 3, 0, 187)
  4782. DeleteTool.Size = UDim2.new(0, 165, 0, 20)
  4783. DeleteTool.Font = Enum.Font.Fantasy
  4784. DeleteTool.FontSize = Enum.FontSize.Size18
  4785. DeleteTool.Text = "Delete Tool"
  4786. DeleteTool.TextColor3 = Color3.new(255, 0, 0)
  4787. DeleteTool.TextSize = 15
  4788.  
  4789. MoveTool.Name = "DeleteTool "
  4790. MoveTool.Parent = LT2GUI2Frame
  4791. MoveTool.BackgroundColor3 = Color3.new(0, 0, 0)
  4792. MoveTool.BorderColor3 = Color3.new(0, 0, 0)
  4793. MoveTool.Position = UDim2.new(0, 3, 0, 210)
  4794. MoveTool.Size = UDim2.new(0, 165, 0, 20)
  4795. MoveTool.Font = Enum.Font.Fantasy
  4796. MoveTool.FontSize = Enum.FontSize.Size18
  4797. MoveTool.Text = "Move Tool"
  4798. MoveTool.TextColor3 = Color3.new(255, 0, 0)
  4799. MoveTool.TextSize = 15
  4800.  
  4801. CopyTool.Name = "DeleteTool "
  4802. CopyTool.Parent = LT2GUI2Frame
  4803. CopyTool.BackgroundColor3 = Color3.new(0, 0, 0)
  4804. CopyTool.BorderColor3 = Color3.new(0, 0, 0)
  4805. CopyTool.Position = UDim2.new(0, 3, 0, 233)
  4806. CopyTool.Size = UDim2.new(0, 165, 0, 20)
  4807. CopyTool.Font = Enum.Font.Fantasy
  4808. CopyTool.FontSize = Enum.FontSize.Size18
  4809. CopyTool.Text = "Copy Tool"
  4810. CopyTool.TextColor3 = Color3.new(255, 0, 0)
  4811. CopyTool.TextSize = 15
  4812.  
  4813. DeleteTool.MouseButton1Down:connect(function()
  4814.  
  4815. if BTool == "Delete" then
  4816. BTool = "Nothing"
  4817. DeleteTool.BackgroundColor3 = Color3.new(0, 0, 0)
  4818. else
  4819. BTool = "Delete"
  4820. DeleteTool.BackgroundColor3 = Color3.new(0, 0.5, 0)
  4821. end
  4822. end)
  4823.  
  4824. MoveTool.MouseButton1Down:connect(function()
  4825.  
  4826. if BTool == "Move" then
  4827. BTool = "Nothing"
  4828. MoveTool.BackgroundColor3 = Color3.new(0, 0, 0)
  4829. else
  4830. BTool = "Move"
  4831. MoveTool.BackgroundColor3 = Color3.new(0, 0.5, 0)
  4832. end
  4833. end)
  4834.  
  4835. CopyTool.MouseButton1Down:connect(function()
  4836.  
  4837. if BTool == "Copy" then
  4838. BTool = "Nothing"
  4839. CopyTool.BackgroundColor3 = Color3.new(0, 0, 0)
  4840.  
  4841. else
  4842. BTool = "Copy"
  4843. CopyTool.BackgroundColor3 = Color3.new(0, 0.5, 0)
  4844.  
  4845. end
  4846. end)
  4847.  
  4848. Mouse.Button1Up:connect(function()
  4849. MDown = false
  4850. end)
  4851.  
  4852. Mouse.Button1Down:connect(function()
  4853. MDown = true
  4854. if BTool == "Copy" then
  4855. if Mouse.Target ~= nil then
  4856. Clone = Mouse.Target:clone()
  4857. Clone.Parent = game.Workspace
  4858. end
  4859. end
  4860.  
  4861. if BTool == "Delete" then
  4862. if Mouse.Target ~= nil then
  4863. Mouse.Target:remove()
  4864. end
  4865. end
  4866.  
  4867. if BTool == "Move" then
  4868. if Mouse.Target ~= nil then
  4869. MoveObject = Mouse.Target
  4870. end
  4871. end
  4872.  
  4873. wait()
  4874. if Clone ~= nil then
  4875. Clone.CanCollide = false
  4876. repeat
  4877. wait()
  4878. SubX = Clone.Size.X/2
  4879. SubY = Clone.Size.Y/2
  4880. SubZ = Clone.Size.Z/2
  4881. Clone.Position = Vector3.new(Mouse.Hit.X - SubX, Mouse.Hit.Y - SubY, Mouse.Hit.Z - SubZ)
  4882. until MDown == false
  4883. Clone.CanCollide = true
  4884. Clone.Position = Clone.Position + Vector3.new(SubX, SubY, SubZ)
  4885. Clone = nil
  4886. end
  4887.  
  4888. if MoveObject ~= nil then
  4889. MoveObject.CanCollide = false
  4890. repeat
  4891. wait()
  4892. SubX = MoveObject.Size.X/2
  4893. SubY = MoveObject.Size.Y/2
  4894. SubZ = MoveObject.Size.Z/2
  4895. MoveObject.Position = Vector3.new(Mouse.Hit.X - SubX, Mouse.Hit.Y - SubY, Mouse.Hit.Z - SubZ)
  4896. until MDown == false
  4897. MoveObject.CanCollide = true
  4898. MoveObject.Position = MoveObject.Position + Vector3.new(SubX, SubY, SubZ)
  4899. MoveObject= nil
  4900. end
  4901. end)
  4902.  
  4903.  
  4904. local Menus = {
  4905. [Player] = PlayerFrame;
  4906. [Teleport] = Waypoints;
  4907. [AIntroImage] = BloodFrameInfo;
  4908. [Woodmenu] = WoodFrame;
  4909. [Copymenu] = CopyFrame;
  4910. [PaintFill] = PaintFills;
  4911. [Artmenu] = ArtFrame;
  4912. [toolamenu] = toolaFrame;
  4913. [Buymenu] = BuyFrame;
  4914. [TpCar] = TpCarFrame;
  4915. [Tptree] = TptreeFrame;
  4916. [Btoolamenu] = LT2GUI2Frame;
  4917. }
  4918. for button,frame in pairs(Menus) do
  4919. button.MouseButton1Click:connect(function()
  4920. if frame.Visible then
  4921. frame.Visible = false
  4922. return
  4923. end
  4924. for k,v in pairs(Menus) do
  4925. v.Visible = v == frame
  4926. end
  4927. end)
  4928. end
  4929.  
  4930.  
  4931. --- Open/Close ---
  4932.  
  4933. Open.MouseButton1Down:connect(function()
  4934. OpenFrame.Visible = false
  4935. MainFrame.Visible = true
  4936. end)
  4937.  
  4938. Minimize.MouseButton1Down:connect(function()
  4939. MainFrame.Visible = false
  4940. OpenFrame.Visible = true
  4941. end)
  4942.  
  4943. CloseBLOOD.MouseButton1Down:connect(function()
  4944. BLOOD:destroy()
  4945. end)
  4946.  
  4947. --bring up menu
  4948. CurrentItem.MouseButton1Click:Connect(function()
  4949. if Picker.Visible == false then
  4950. Picker.Visible = true
  4951. else
  4952. Picker.Visible = false
  4953. end
  4954. end)
  4955. end)
  4956.  
  4957.  
  4958. Ferry.Name = "Ferry"
  4959. Ferry.Parent = MainFrame
  4960. Ferry.BackgroundColor3 = Color3.new(1, 0.0313726, 0.921569)
  4961. Ferry.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  4962. Ferry.Position = UDim2.new(0, 138, 0, 166)
  4963. Ferry.Size = UDim2.new(0, 200, 0, 50)
  4964. Ferry.Font = Enum.Font.SciFi
  4965. Ferry.Text = "Ferry"
  4966. Ferry.TextColor3 = Color3.new(0, 0, 0)
  4967. Ferry.TextSize = 14
  4968. Ferry.MouseButton1Down:connect(function()
  4969. ------------------
  4970. --CRACKED BY RTX/LiLWally
  4971. --https://v3rmillion.net/member.php?action=profile&uid=516951
  4972. ------------------
  4973.  
  4974. Found=false;Tool="None"Down=false
  4975. Mouse=game.Players.LocalPlayer:GetMouse()
  4976. Client=game.ReplicatedStorage.Interaction.ClientSetListPlayer;players=game.Players
  4977. for bbab,cbab in pairs(players:GetPlayers())do if cbab.Name~=
  4978. players.LocalPlayer.Name then
  4979. Client:InvokeServer(players.LocalPlayer.BlacklistFolder,cbab,false)end end
  4980. players.PlayerAdded:connect(function(bbab)
  4981. Client:InvokeServer(players.LocalPlayer.BlacklistFolder,bbab,false)end)
  4982. function move(bbab)
  4983. bbab:MoveTo(
  4984. game.Players.LocalPlayer.Character.Head.Position+Vector3.new(5,-4,5))bbab.WoodSection.Anchored=true;wait(2)
  4985. bbab.WoodSection.Anchored=false end
  4986. function tree(bbab,cbab)
  4987. for dbab,_cab in pairs(bbab:GetChildren())do if _cab.Name=="TreeClass"then
  4988. if
  4989. _cab.Value==cbab then if Found==false then move(bbab)Found=true end end end end end;local dc_a=Instance.new("ScreenGui")
  4990. local _d_a=Instance.new("TextButton")local ad_a=Instance.new("ImageLabel")
  4991. local bd_a=Instance.new("TextLabel")local cd_a=Instance.new("Frame")
  4992. local dd_a=Instance.new("Frame")local __aa=Instance.new("ImageLabel")
  4993. local a_aa=Instance.new("ImageButton")local b_aa=Instance.new("TextLabel")
  4994. local c_aa=Instance.new("Frame")local d_aa=Instance.new("ImageButton")
  4995. local _aaa=Instance.new("TextLabel")local aaaa=Instance.new("ImageButton")
  4996. local baaa=Instance.new("TextLabel")local caaa=Instance.new("ImageButton")
  4997. local daaa=Instance.new("TextLabel")local _baa=Instance.new("ImageButton")
  4998. local abaa=Instance.new("TextLabel")local bbaa=Instance.new("ImageButton")
  4999. local cbaa=Instance.new("TextLabel")local dbaa=Instance.new("Frame")
  5000. local _caa=Instance.new("Frame")local acaa=Instance.new("ImageLabel")
  5001. local bcaa=Instance.new("ImageButton")local ccaa=Instance.new("TextLabel")
  5002. local dcaa=Instance.new("Frame")local _daa=Instance.new("ImageButton")
  5003. local adaa=Instance.new("TextLabel")local bdaa=Instance.new("ImageButton")
  5004. local cdaa=Instance.new("TextLabel")local ddaa=Instance.new("ImageButton")
  5005. local __ba=Instance.new("TextLabel")local a_ba=Instance.new("ImageButton")
  5006. local b_ba=Instance.new("TextLabel")local c_ba=Instance.new("ImageButton")
  5007. local d_ba=Instance.new("TextLabel")local _aba=Instance.new("Frame")
  5008. local aaba=Instance.new("Frame")local baba=Instance.new("Frame")
  5009. local caba=Instance.new("ImageLabel")local daba=Instance.new("TextLabel")
  5010. local _bba=Instance.new("TextLabel")local abba=Instance.new("TextLabel")
  5011. local bbba=Instance.new("ImageButton")local cbba=Instance.new("TextLabel")
  5012. local dbba=Instance.new("Frame")local _cba=Instance.new("Frame")
  5013. local acba=Instance.new("Frame")local bcba=Instance.new("ImageLabel")
  5014. local ccba=Instance.new("ImageButton")local dcba=Instance.new("TextLabel")
  5015. local _dba=Instance.new("ImageButton")local adba=Instance.new("TextLabel")
  5016. local bdba=Instance.new("ImageButton")local cdba=Instance.new("TextLabel")
  5017. local ddba=Instance.new("ImageButton")local __ca=Instance.new("TextLabel")
  5018. local a_ca=Instance.new("ImageButton")local b_ca=Instance.new("TextLabel")
  5019. local c_ca=Instance.new("ImageLabel")local d_ca=Instance.new("TextBox")
  5020. local _aca=Instance.new("ImageButton")local aaca=Instance.new("TextLabel")
  5021. local baca=Instance.new("ImageButton")local caca=Instance.new("TextLabel")
  5022. local daca=Instance.new("ImageButton")local _bca=Instance.new("TextLabel")
  5023. local abca=Instance.new("ImageButton")local bbca=Instance.new("TextLabel")
  5024. local cbca=Instance.new("ImageButton")local dbca=Instance.new("TextLabel")
  5025. local _cca=Instance.new("Frame")local acca=Instance.new("Frame")
  5026. local bcca=Instance.new("Frame")local ccca=Instance.new("ImageLabel")
  5027. local dcca=Instance.new("ImageButton")local _dca=Instance.new("TextLabel")
  5028. local adca=Instance.new("TextLabel")local bdca=Instance.new("ImageButton")
  5029. local cdca=Instance.new("TextLabel")local ddca=Instance.new("ImageButton")
  5030. local __da=Instance.new("TextLabel")local a_da=Instance.new("ImageButton")
  5031. local b_da=Instance.new("TextLabel")local c_da=Instance.new("ImageButton")
  5032. local d_da=Instance.new("TextLabel")local _ada=Instance.new("ImageButton")
  5033. local aada=Instance.new("TextLabel")local bada=Instance.new("ImageButton")
  5034. local cada=Instance.new("TextLabel")local dada=Instance.new("ImageButton")
  5035. local _bda=Instance.new("TextLabel")local abda=Instance.new("TextButton")
  5036. local bbda=Instance.new("ImageLabel")local cbda=Instance.new("TextLabel")
  5037. local dbda=Instance.new("TextButton")local _cda=Instance.new("ImageLabel")
  5038. local acda=Instance.new("TextLabel")local bcda=Instance.new("TextButton")
  5039. local ccda=Instance.new("ImageLabel")local dcda=Instance.new("TextLabel")
  5040. local _dda=Instance.new("TextButton")local adda=Instance.new("ImageLabel")
  5041. local bdda=Instance.new("TextLabel")local cdda=Instance.new("Frame")
  5042. local ddda=Instance.new("Frame")local ___b=Instance.new("Frame")
  5043. local a__b=Instance.new("ImageLabel")local b__b=Instance.new("ImageButton")
  5044. local c__b=Instance.new("TextLabel")local d__b=Instance.new("ImageButton")
  5045. local _a_b=Instance.new("TextLabel")local aa_b=Instance.new("ImageLabel")
  5046. local ba_b=Instance.new("TextBox")local ca_b=Instance.new("ImageLabel")
  5047. local da_b=Instance.new("TextBox")local _b_b=Instance.new("Frame")
  5048. local ab_b=Instance.new("Frame")local bb_b=Instance.new("Frame")
  5049. local cb_b=Instance.new("ImageLabel")local db_b=Instance.new("ImageButton")
  5050. local _c_b=Instance.new("TextLabel")local ac_b=Instance.new("ScrollingFrame")
  5051. local bc_b=Instance.new("UIListLayout")local cc_b=Instance.new("TextLabel")
  5052. local dc_b=Instance.new("TextLabel")local _d_b=Instance.new("TextLabel")
  5053. local ad_b=Instance.new("TextLabel")local bd_b=Instance.new("TextLabel")
  5054. local cd_b=Instance.new("TextLabel")local dd_b=Instance.new("TextLabel")
  5055. local __ab=Instance.new("TextLabel")local a_ab=Instance.new("TextLabel")
  5056. local b_ab=Instance.new("TextLabel")local c_ab=Instance.new("TextLabel")
  5057. local d_ab=Instance.new("TextLabel")local _aab=Instance.new("TextLabel")
  5058. local aaab=Instance.new("TextLabel")local baab=Instance.new("TextLabel")
  5059. local caab=Instance.new("TextLabel")local daab=Instance.new("TextLabel")
  5060. local _bab=Instance.new("TextLabel")local abab=game.Players.LocalPlayer
  5061. game:GetService("StarterGui"):SetCore("SendNotification",{Title="Your Account :",Text=game.Players.LocalPlayer.Name})
  5062. game:GetService("StarterGui"):SetCore("SendNotification",{Title="Checking Whitelist :",Text="Whitelisted"})dc_a.Name="FERRYLT2"dc_a.Parent=game.CoreGui;_d_a.Name="b2"
  5063. _d_a.Parent=dc_a
  5064. _d_a.BackgroundColor3=Color3.new(0.517647,0.517647,0.517647)_d_a.BorderSizePixel=0;_d_a.ClipsDescendants=true
  5065. _d_a.Position=UDim2.new(-0.00200000009,0,0.529999971,0)_d_a.Selectable=false;_d_a.Size=UDim2.new(0,160,0,30)
  5066. _d_a.Font=Enum.Font.SourceSansBold;_d_a.Text=""_d_a.TextColor3=Color3.new(1,1,1)
  5067. _d_a.TextScaled=true;_d_a.TextSize=14;_d_a.TextStrokeTransparency=0.69999998807907
  5068. _d_a.TextWrapped=true;ad_a.Parent=_d_a;ad_a.BackgroundColor3=Color3.new(1,1,1)
  5069. ad_a.BackgroundTransparency=1;ad_a.Size=UDim2.new(0,20,0,20)ad_a.Visible=false
  5070. ad_a.Image="rbxassetid://210453768"ad_a.ImageTransparency=0.20000000298023;bd_a.Parent=_d_a
  5071. bd_a.BackgroundColor3=Color3.new(1,1,1)bd_a.BackgroundTransparency=1;bd_a.Size=UDim2.new(1,0,1,0)
  5072. bd_a.ZIndex=2;bd_a.Font=Enum.Font.SourceSansBold;bd_a.Text="MAIN MENU"
  5073. bd_a.TextColor3=Color3.new(1,1,1)bd_a.TextScaled=true;bd_a.TextSize=14
  5074. bd_a.TextStrokeTransparency=0.69999998807907;bd_a.TextWrapped=true;cd_a.Name="woods"cd_a.Parent=dc_a
  5075. cd_a.BackgroundColor3=Color3.new(0.301961,0.301961,0.301961)cd_a.BorderSizePixel=0
  5076. cd_a.Position=UDim2.new(0.629000008,0,-1,0)cd_a.Size=UDim2.new(0,241,0,330)dd_a.Parent=cd_a
  5077. dd_a.BackgroundColor3=Color3.new(0.270588,0.0901961,0.545098)dd_a.BorderSizePixel=0;dd_a.Size=UDim2.new(0,242,0,39)
  5078. __aa.Name="WOOD MENU"__aa.Parent=cd_a;__aa.BackgroundColor3=Color3.new(1,1,1)
  5079. __aa.BackgroundTransparency=1;__aa.Position=UDim2.new(0.103139281,0,0.0204323977,0)
  5080. __aa.Size=UDim2.new(0,167,0,24)__aa.Image="rbxassetid://2978417973"a_aa.Name="minim6"a_aa.Parent=cd_a
  5081. 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,
  5082. -0.000636407116,0)
  5083. a_aa.Size=UDim2.new(0,25,0,13)a_aa.Image="rbxassetid://2790389767"
  5084. a_aa.ImageColor3=Color3.new(0.466667,0.392157,0.87451)a_aa.ScaleType=Enum.ScaleType.Slice
  5085. a_aa.SliceCenter=Rect.new(8,8,248,248)b_aa.Name="minim5"b_aa.Parent=a_aa
  5086. b_aa.AnchorPoint=Vector2.new(0.5,0.5)b_aa.BackgroundTransparency=1
  5087. b_aa.Position=UDim2.new(0.494003624,0,0.5,0)b_aa.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  5088. b_aa.Font=Enum.Font.Cartoon;b_aa.Text="-"b_aa.TextColor3=Color3.new(0,0,0)
  5089. b_aa.TextSize=21;c_aa.Parent=cd_a
  5090. c_aa.BackgroundColor3=Color3.new(0.270588,0.0901961,0.545098)c_aa.BorderSizePixel=0
  5091. c_aa.Position=UDim2.new(-0.00414937781,0,0.881818175,0)c_aa.Size=UDim2.new(0,242,0,39)d_aa.Name="volcano"
  5092. d_aa.Parent=cd_a
  5093. d_aa.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)d_aa.BackgroundTransparency=1;d_aa.BorderSizePixel=0
  5094. d_aa.Position=UDim2.new(0.208800852,0,0.147848472,0)d_aa.Size=UDim2.new(0,143,0,41)
  5095. d_aa.Image="rbxassetid://2790389767"d_aa.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  5096. d_aa.ScaleType=Enum.ScaleType.Slice;d_aa.SliceCenter=Rect.new(8,8,248,248)
  5097. d_aa.MouseButton1Down:connect(function()for bbab,cbab in
  5098. pairs(game.Workspace.LogModels:GetChildren())do cut(cbab,"Volcano")end end)_aaa.Name="volcanotext"_aaa.Parent=d_aa
  5099. _aaa.AnchorPoint=Vector2.new(0.5,0.5)_aaa.BackgroundTransparency=1
  5100. _aaa.Position=UDim2.new(0.494003624,0,0.5,0)_aaa.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  5101. _aaa.Font=Enum.Font.Cartoon;_aaa.Text="VOLCANO"_aaa.TextColor3=Color3.new(0,0,0)
  5102. _aaa.TextSize=25;aaaa.Name="palm"aaaa.Parent=cd_a
  5103. aaaa.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)aaaa.BackgroundTransparency=1;aaaa.BorderSizePixel=0
  5104. aaaa.Position=UDim2.new(0.204651475,0,0.293303013,0)aaaa.Size=UDim2.new(0,143,0,41)
  5105. aaaa.Image="rbxassetid://2790389767"aaaa.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  5106. aaaa.ScaleType=Enum.ScaleType.Slice;aaaa.SliceCenter=Rect.new(8,8,248,248)
  5107. aaaa.MouseButton1Down:connect(function()for bbab,cbab in
  5108. pairs(game.Workspace.LogModels:GetChildren())do cut(cbab,"Palm")end end)baaa.Name="palm"baaa.Parent=aaaa
  5109. baaa.AnchorPoint=Vector2.new(0.5,0.5)baaa.BackgroundTransparency=1
  5110. baaa.Position=UDim2.new(0.494003624,0,0.5,0)baaa.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  5111. baaa.Font=Enum.Font.Cartoon;baaa.Text="PALM"baaa.TextColor3=Color3.new(0,0,0)
  5112. baaa.TextSize=25;caaa.Name="greenwood"caaa.Parent=cd_a
  5113. caaa.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)caaa.BackgroundTransparency=1;caaa.BorderSizePixel=0
  5114. caaa.Position=UDim2.new(0.204651475,0,0.435727239,0)caaa.Size=UDim2.new(0,143,0,41)
  5115. caaa.Image="rbxassetid://2790389767"caaa.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  5116. caaa.ScaleType=Enum.ScaleType.Slice;caaa.SliceCenter=Rect.new(8,8,248,248)
  5117. caaa.MouseButton1Down:connect(function()
  5118. for bbab,cbab in
  5119. pairs(game.Workspace.LogModels:GetChildren())do cut(cbab,"GreenSwampy")end end)daaa.Name="greenwood"daaa.Parent=caaa
  5120. daaa.AnchorPoint=Vector2.new(0.5,0.5)daaa.BackgroundTransparency=1
  5121. daaa.Position=UDim2.new(0.494003624,0,0.5,0)daaa.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  5122. daaa.Font=Enum.Font.Cartoon;daaa.Text="GREEN WOOD"daaa.TextColor3=Color3.new(0,0,0)
  5123. daaa.TextSize=25;_baa.Name="goldenwood"_baa.Parent=cd_a
  5124. _baa.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)_baa.BackgroundTransparency=1;_baa.BorderSizePixel=0
  5125. _baa.Position=UDim2.new(0.200502098,0,0.578151464,0)_baa.Size=UDim2.new(0,143,0,41)
  5126. _baa.Image="rbxassetid://2790389767"_baa.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  5127. _baa.ScaleType=Enum.ScaleType.Slice;_baa.SliceCenter=Rect.new(8,8,248,248)
  5128. _baa.MouseButton1Down:connect(function()
  5129. for bbab,cbab in
  5130. pairs(game.Workspace.LogModels:GetChildren())do cut(cbab,"GoldSwampy")end end)abaa.Name="goldenwood"abaa.Parent=_baa
  5131. abaa.AnchorPoint=Vector2.new(0.5,0.5)abaa.BackgroundTransparency=1
  5132. abaa.Position=UDim2.new(0.494003624,0,0.5,0)abaa.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  5133. abaa.Font=Enum.Font.Cartoon;abaa.Text="GOLDEN WOOD"abaa.TextColor3=Color3.new(0,0,0)
  5134. abaa.TextSize=24;bbaa.Name="bluewood"bbaa.Parent=cd_a
  5135. bbaa.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)bbaa.BackgroundTransparency=1;bbaa.BorderSizePixel=0
  5136. bbaa.Position=UDim2.new(0.19635272,0,0.726636291,0)bbaa.Size=UDim2.new(0,143,0,41)
  5137. bbaa.Image="rbxassetid://2790389767"bbaa.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  5138. bbaa.ScaleType=Enum.ScaleType.Slice;bbaa.SliceCenter=Rect.new(8,8,248,248)
  5139. bbaa.MouseButton1Down:connect(function()
  5140. for bbab,cbab in
  5141. pairs(game.Workspace.LogModels:GetChildren())do cut(cbab,"CaveCrawler")end end)cbaa.Name="bluewood"cbaa.Parent=bbaa
  5142. cbaa.AnchorPoint=Vector2.new(0.5,0.5)cbaa.BackgroundTransparency=1
  5143. cbaa.Position=UDim2.new(0.494003624,0,0.5,0)cbaa.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  5144. cbaa.Font=Enum.Font.Cartoon;cbaa.Text="BLUE WOOD"cbaa.TextColor3=Color3.new(0,0,0)
  5145. cbaa.TextSize=25;dbaa.Name="bringmenu"dbaa.Parent=cd_a
  5146. dbaa.BackgroundColor3=Color3.new(0.301961,0.301961,0.301961)dbaa.BorderSizePixel=0
  5147. dbaa.Position=UDim2.new(-1.08387113,0,-0.00256957673,0)dbaa.Size=UDim2.new(0,241,0,330)_caa.Parent=dbaa
  5148. _caa.BackgroundColor3=Color3.new(0.270588,0.0901961,0.545098)_caa.BorderSizePixel=0;_caa.Size=UDim2.new(0,242,0,39)
  5149. acaa.Name="BRING MENU"acaa.Parent=dbaa;acaa.BackgroundColor3=Color3.new(1,1,1)
  5150. acaa.BackgroundTransparency=1;acaa.Position=UDim2.new(0.103139281,0,0.0204323977,0)
  5151. acaa.Size=UDim2.new(0,167,0,24)acaa.Image="rbxassetid://2978417876"bcaa.Name="minim7"bcaa.Parent=dbaa
  5152. bcaa.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)bcaa.BackgroundTransparency=1;bcaa.BorderSizePixel=0;bcaa.Position=UDim2.new(0.900565624,0,
  5153. -0.000636407116,0)
  5154. bcaa.Size=UDim2.new(0,25,0,13)bcaa.Image="rbxassetid://2790389767"
  5155. bcaa.ImageColor3=Color3.new(0.466667,0.392157,0.87451)bcaa.ScaleType=Enum.ScaleType.Slice
  5156. bcaa.SliceCenter=Rect.new(8,8,248,248)ccaa.Name="minim7"ccaa.Parent=bcaa
  5157. ccaa.AnchorPoint=Vector2.new(0.5,0.5)ccaa.BackgroundTransparency=1
  5158. ccaa.Position=UDim2.new(0.494003624,0,0.5,0)ccaa.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  5159. ccaa.Font=Enum.Font.Cartoon;ccaa.Text="-"ccaa.TextColor3=Color3.new(0,0,0)
  5160. ccaa.TextSize=21;dcaa.Parent=dbaa
  5161. dcaa.BackgroundColor3=Color3.new(0.270588,0.0901961,0.545098)dcaa.BorderSizePixel=0
  5162. dcaa.Position=UDim2.new(-0.00414937781,0,0.881818175,0)dcaa.Size=UDim2.new(0,242,0,39)_daa.Name="volcano2"
  5163. _daa.Parent=dbaa
  5164. _daa.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)_daa.BackgroundTransparency=1;_daa.BorderSizePixel=0
  5165. _daa.Position=UDim2.new(0.208800852,0,0.147848472,0)_daa.Size=UDim2.new(0,143,0,41)
  5166. _daa.Image="rbxassetid://2790389767"_daa.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  5167. _daa.ScaleType=Enum.ScaleType.Slice;_daa.SliceCenter=Rect.new(8,8,248,248)
  5168. _daa.MouseButton1Down:connect(function()
  5169. Found=false
  5170. for bbab,cbab in pairs(game.Workspace:GetChildren())do if
  5171. cbab.Name=="TreeRegion"then
  5172. for dbab,_cab in pairs(cbab:GetChildren())do tree(_cab,"Volcano")end end end end)adaa.Name="volcanotext2"adaa.Parent=_daa
  5173. adaa.AnchorPoint=Vector2.new(0.5,0.5)adaa.BackgroundTransparency=1
  5174. adaa.Position=UDim2.new(0.494003624,0,0.5,0)adaa.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  5175. adaa.Font=Enum.Font.Cartoon;adaa.Text="VOLCANO"adaa.TextColor3=Color3.new(0,0,0)
  5176. adaa.TextSize=25;bdaa.Name="palm2"bdaa.Parent=dbaa
  5177. bdaa.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)bdaa.BackgroundTransparency=1;bdaa.BorderSizePixel=0
  5178. bdaa.Position=UDim2.new(0.204651475,0,0.293303013,0)bdaa.Size=UDim2.new(0,143,0,41)
  5179. bdaa.Image="rbxassetid://2790389767"bdaa.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  5180. bdaa.ScaleType=Enum.ScaleType.Slice;bdaa.SliceCenter=Rect.new(8,8,248,248)
  5181. bdaa.MouseButton1Down:connect(function()
  5182. Found=false
  5183. for bbab,cbab in pairs(game.Workspace:GetChildren())do if
  5184. cbab.Name=="TreeRegion"then
  5185. for dbab,_cab in pairs(cbab:GetChildren())do tree(_cab,"Palm")end end end end)cdaa.Name="palm2"cdaa.Parent=bdaa
  5186. cdaa.AnchorPoint=Vector2.new(0.5,0.5)cdaa.BackgroundTransparency=1
  5187. cdaa.Position=UDim2.new(0.494003624,0,0.5,0)cdaa.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  5188. cdaa.Font=Enum.Font.Cartoon;cdaa.Text="PALM"cdaa.TextColor3=Color3.new(0,0,0)
  5189. cdaa.TextSize=25;ddaa.Name="greenwood2"ddaa.Parent=dbaa
  5190. ddaa.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)ddaa.BackgroundTransparency=1;ddaa.BorderSizePixel=0
  5191. ddaa.Position=UDim2.new(0.204651475,0,0.435727239,0)ddaa.Size=UDim2.new(0,143,0,41)
  5192. ddaa.Image="rbxassetid://2790389767"ddaa.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  5193. ddaa.ScaleType=Enum.ScaleType.Slice;ddaa.SliceCenter=Rect.new(8,8,248,248)
  5194. ddaa.MouseButton1Down:connect(function()
  5195. Found=false
  5196. for bbab,cbab in pairs(game.Workspace:GetChildren())do if
  5197. cbab.Name=="TreeRegion"then
  5198. for dbab,_cab in pairs(cbab:GetChildren())do tree(_cab,"GreenSwampy")end end end end)__ba.Name="greenwood2"__ba.Parent=ddaa
  5199. __ba.AnchorPoint=Vector2.new(0.5,0.5)__ba.BackgroundTransparency=1
  5200. __ba.Position=UDim2.new(0.494003624,0,0.5,0)__ba.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  5201. __ba.Font=Enum.Font.Cartoon;__ba.Text="GREEN WOOD"__ba.TextColor3=Color3.new(0,0,0)
  5202. __ba.TextSize=25;a_ba.Name="goldenwood2"a_ba.Parent=dbaa
  5203. a_ba.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)a_ba.BackgroundTransparency=1;a_ba.BorderSizePixel=0
  5204. a_ba.Position=UDim2.new(0.200502098,0,0.578151464,0)a_ba.Size=UDim2.new(0,143,0,41)
  5205. a_ba.Image="rbxassetid://2790389767"a_ba.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  5206. a_ba.ScaleType=Enum.ScaleType.Slice;a_ba.SliceCenter=Rect.new(8,8,248,248)
  5207. a_ba.MouseButton1Down:connect(function()
  5208. Found=false
  5209. for bbab,cbab in pairs(game.Workspace:GetChildren())do if
  5210. cbab.Name=="TreeRegion"then
  5211. for dbab,_cab in pairs(cbab:GetChildren())do tree(_cab,"GoldSwampy")end end end end)b_ba.Name="goldenwood2"b_ba.Parent=a_ba
  5212. b_ba.AnchorPoint=Vector2.new(0.5,0.5)b_ba.BackgroundTransparency=1
  5213. b_ba.Position=UDim2.new(0.494003624,0,0.5,0)b_ba.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  5214. b_ba.Font=Enum.Font.Cartoon;b_ba.Text="GOLDEN WOOD"b_ba.TextColor3=Color3.new(0,0,0)
  5215. b_ba.TextSize=24;c_ba.Name="bluewood2"c_ba.Parent=dbaa
  5216. c_ba.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)c_ba.BackgroundTransparency=1;c_ba.BorderSizePixel=0
  5217. c_ba.Position=UDim2.new(0.19635272,0,0.726636291,0)c_ba.Size=UDim2.new(0,143,0,41)
  5218. c_ba.Image="rbxassetid://2790389767"c_ba.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  5219. c_ba.ScaleType=Enum.ScaleType.Slice;c_ba.SliceCenter=Rect.new(8,8,248,248)
  5220. c_ba.MouseButton1Down:connect(function()
  5221. Found=false
  5222. for bbab,cbab in pairs(game.Workspace:GetChildren())do if
  5223. cbab.Name=="TreeRegion"then
  5224. for dbab,_cab in pairs(cbab:GetChildren())do tree(_cab,"CavCrawler")end end end end)d_ba.Name="bluewood2"d_ba.Parent=c_ba
  5225. d_ba.AnchorPoint=Vector2.new(0.5,0.5)d_ba.BackgroundTransparency=1
  5226. d_ba.Position=UDim2.new(0.494003624,0,0.5,0)d_ba.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  5227. d_ba.Font=Enum.Font.Cartoon;d_ba.Text="BLUE WOOD"d_ba.TextColor3=Color3.new(0,0,0)
  5228. d_ba.TextSize=25;_aba.Name="creditsmenu"_aba.Parent=dc_a
  5229. _aba.BackgroundColor3=Color3.new(0.301961,0.301961,0.301961)_aba.BorderSizePixel=0
  5230. _aba.Position=UDim2.new(0.349999994,0,-1,0)_aba.Size=UDim2.new(0,447,0,330)aaba.Parent=_aba
  5231. aaba.BackgroundColor3=Color3.new(0.270588,0.0901961,0.545098)aaba.BorderSizePixel=0;aaba.Size=UDim2.new(0,447,0,39)
  5232. baba.Parent=_aba
  5233. baba.BackgroundColor3=Color3.new(0.270588,0.0901961,0.545098)baba.BorderSizePixel=0
  5234. baba.Position=UDim2.new(0,0,0.881818175,0)baba.Size=UDim2.new(0,447,0,39)caba.Name="CREDITS"
  5235. caba.Parent=_aba;caba.BackgroundColor3=Color3.new(1,1,1)
  5236. caba.BackgroundTransparency=1;caba.Position=UDim2.new(0.311592132,0,0.0204323977,0)
  5237. caba.Size=UDim2.new(0,167,0,24)caba.Image="rbxassetid://2978329813"daba.Name="creditsnum2"
  5238. daba.Parent=_aba;daba.BackgroundColor3=Color3.new(1,1,1)
  5239. daba.BackgroundTransparency=1;daba.BorderSizePixel=0
  5240. daba.Position=UDim2.new(0.185043171,0,0.367304683,0)daba.Size=UDim2.new(0,231,0,25)
  5241. daba.Font=Enum.Font.Cartoon;daba.Text="-RBXLStealit[TEAM]"
  5242. daba.TextColor3=Color3.new(1,1,1)daba.TextSize=25;daba.TextWrapped=true;_bba.Name="creditsnum3"
  5243. _bba.Parent=_aba;_bba.BackgroundColor3=Color3.new(1,1,1)
  5244. _bba.BackgroundTransparency=1;_bba.BorderSizePixel=0
  5245. _bba.Position=UDim2.new(0.204970941,0,0.439242482,0)_bba.Size=UDim2.new(0,104,0,25)
  5246. _bba.Font=Enum.Font.Cartoon;_bba.Text="-CharWar"_bba.TextColor3=Color3.new(1,1,1)
  5247. _bba.TextSize=25;_bba.TextWrapped=true;abba.Name="creditsnum"abba.Parent=_aba
  5248. abba.BackgroundColor3=Color3.new(1,1,1)abba.BackgroundTransparency=1;abba.BorderSizePixel=0
  5249. abba.Position=UDim2.new(0.205177397,0,0.29457736,0)abba.Size=UDim2.new(0,269,0,25)
  5250. abba.Font=Enum.Font.Cartoon;abba.Text="-FerryDeveloper [OWNER]"
  5251. abba.TextColor3=Color3.new(1,1,1)abba.TextSize=25;abba.TextWrapped=true;bbba.Name="minim3"
  5252. bbba.Parent=_aba
  5253. bbba.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)bbba.BackgroundTransparency=1;bbba.BorderSizePixel=0;bbba.Position=UDim2.new(0.943400443,0,
  5254. -0.000636407116,0)
  5255. bbba.Size=UDim2.new(0,25,0,13)bbba.Image="rbxassetid://2790389767"
  5256. bbba.ImageColor3=Color3.new(0.466667,0.392157,0.87451)bbba.ScaleType=Enum.ScaleType.Slice
  5257. bbba.SliceCenter=Rect.new(8,8,248,248)cbba.Name="minim3"cbba.Parent=bbba
  5258. cbba.AnchorPoint=Vector2.new(0.5,0.5)cbba.BackgroundTransparency=1
  5259. cbba.Position=UDim2.new(0.494003624,0,0.5,0)cbba.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  5260. cbba.Font=Enum.Font.Cartoon;cbba.Text="-"cbba.TextColor3=Color3.new(0,0,0)
  5261. cbba.TextSize=21;dbba.Name="ferrymenu"dbba.Parent=dc_a
  5262. dbba.BackgroundColor3=Color3.new(0.301961,0.301961,0.301961)dbba.BorderSizePixel=0
  5263. dbba.Position=UDim2.new(0.349999994,0,-1,0)dbba.Size=UDim2.new(0,447,0,330)_cba.Parent=dbba
  5264. _cba.BackgroundColor3=Color3.new(0.270588,0.0901961,0.545098)_cba.BorderSizePixel=0;_cba.Size=UDim2.new(0,447,0,39)
  5265. acba.Parent=dbba
  5266. acba.BackgroundColor3=Color3.new(0.270588,0.0901961,0.545098)acba.BorderSizePixel=0
  5267. acba.Position=UDim2.new(0,0,0.881818175,0)acba.Size=UDim2.new(0,447,0,39)bcba.Name="FERRY MENU"
  5268. bcba.Parent=dbba;bcba.BackgroundColor3=Color3.new(1,1,1)
  5269. bcba.BackgroundTransparency=1;bcba.Position=UDim2.new(0.311592132,0,0.0204323977,0)
  5270. bcba.Size=UDim2.new(0,167,0,24)bcba.Image="rbxassetid://2978304809"ccba.Name="planks"ccba.Parent=dbba
  5271. ccba.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)ccba.BackgroundTransparency=1;ccba.BorderSizePixel=0
  5272. ccba.Position=UDim2.new(0.0261745248,0,0.381181777,0)ccba.Size=UDim2.new(0,143,0,41)
  5273. ccba.Image="rbxassetid://2790389767"ccba.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  5274. ccba.ScaleType=Enum.ScaleType.Slice;ccba.SliceCenter=Rect.new(8,8,248,248)
  5275. ccba.MouseButton1Click:connect(function()
  5276. abab=game.Players.LocalPlayer;local bbab=d_ca.Text;local cbab="TreeClass"local dbab=0
  5277. for _cab,acab in
  5278. pairs(game.Workspace.PlayerModels:GetChildren())do
  5279. if acab:FindFirstChild("Owner")and
  5280. tostring(acab.Owner.Value)==bbab then
  5281. if cbab~="TreeClass"then
  5282. if
  5283.  
  5284. acab:FindFirstChild("Type")and tostring(acab.Type.Value)==cbab then
  5285. if acab.PrimaryPart then
  5286. acab.PrimaryPart.CFrame=
  5287. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  5288. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(acab.PrimaryPart)
  5289. acab.PrimaryPart.CFrame=
  5290. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  5291. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(acab.PrimaryPart)
  5292. acab.PrimaryPart.CFrame=
  5293. 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
  5294. if acab:FindFirstChild("TreeClass")then
  5295. if acab.WoodSection then
  5296. acab.WoodSection.CFrame=
  5297. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  5298. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(acab.WoodSection)
  5299. acab.WoodSection.CFrame=
  5300. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  5301. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(acab.WoodSection)
  5302. acab.WoodSection.CFrame=
  5303. 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
  5304. dcba.AnchorPoint=Vector2.new(0.5,0.5)dcba.BackgroundTransparency=1
  5305. dcba.Position=UDim2.new(0.494003624,0,0.5,0)dcba.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  5306. dcba.Font=Enum.Font.Cartoon;dcba.Text="PLANKS"dcba.TextColor3=Color3.new(0,0,0)
  5307. dcba.TextSize=25;_dba.Name="loose"_dba.Parent=dbba
  5308. _dba.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)_dba.BackgroundTransparency=1;_dba.BorderSizePixel=0
  5309. _dba.Position=UDim2.new(0.0261745248,0,0.532696962,0)_dba.Size=UDim2.new(0,143,0,41)
  5310. _dba.Image="rbxassetid://2790389767"_dba.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  5311. _dba.ScaleType=Enum.ScaleType.Slice;_dba.SliceCenter=Rect.new(8,8,248,248)
  5312. _dba.MouseButton1Click:connect(function()
  5313. abab=game.Players.LocalPlayer;local bbab=d_ca.Text;local cbab="Loose Item"local dbab=0
  5314. for _cab,acab in
  5315. pairs(game.Workspace.PlayerModels:GetChildren())do
  5316. if acab:FindFirstChild("Owner")and
  5317. tostring(acab.Owner.Value)==bbab then
  5318. if cbab~="TreeClass"then
  5319. if
  5320.  
  5321. acab:FindFirstChild("Type")and tostring(acab.Type.Value)==cbab then
  5322. if acab.PrimaryPart then
  5323. acab.PrimaryPart.CFrame=
  5324. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  5325. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(acab.PrimaryPart)
  5326. acab.PrimaryPart.CFrame=
  5327. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  5328. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(acab.PrimaryPart)
  5329. acab.PrimaryPart.CFrame=
  5330. 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
  5331. if acab:FindFirstChild("TreeClass")then
  5332. if acab.WoodSection then
  5333. acab.WoodSection.CFrame=
  5334. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  5335. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(acab.WoodSection)
  5336. acab.WoodSection.CFrame=
  5337. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  5338. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(acab.WoodSection)
  5339. acab.WoodSection.CFrame=
  5340. 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
  5341. adba.AnchorPoint=Vector2.new(0.5,0.5)adba.BackgroundTransparency=1
  5342. adba.Position=UDim2.new(0.494003624,0,0.5,0)adba.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  5343. adba.Font=Enum.Font.Cartoon;adba.Text="LOOSE ITEM"adba.TextColor3=Color3.new(0,0,0)
  5344. adba.TextSize=21;bdba.Name="vehicle"bdba.Parent=dbba
  5345. bdba.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)bdba.BackgroundTransparency=1;bdba.BorderSizePixel=0
  5346. bdba.Position=UDim2.new(0.0261745248,0,0.681181788,0)bdba.Size=UDim2.new(0,143,0,41)
  5347. bdba.Image="rbxassetid://2790389767"bdba.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  5348. bdba.ScaleType=Enum.ScaleType.Slice;bdba.SliceCenter=Rect.new(8,8,248,248)
  5349. bdba.MouseButton1Click:connect(function()
  5350. abab=game.Players.LocalPlayer;local bbab=d_ca.Text;local cbab="Vehicle"local dbab=0
  5351. for _cab,acab in
  5352. pairs(game.Workspace.PlayerModels:GetChildren())do
  5353. if acab:FindFirstChild("Owner")and
  5354. tostring(acab.Owner.Value)==bbab then
  5355. if cbab~="TreeClass"then
  5356. if
  5357.  
  5358. acab:FindFirstChild("Type")and tostring(acab.Type.Value)==cbab then
  5359. if acab.PrimaryPart then
  5360. acab.PrimaryPart.CFrame=
  5361. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  5362. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(acab.PrimaryPart)
  5363. acab.PrimaryPart.CFrame=
  5364. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  5365. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(acab.PrimaryPart)
  5366. acab.PrimaryPart.CFrame=
  5367. 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
  5368. if acab:FindFirstChild("TreeClass")then
  5369. if acab.WoodSection then
  5370. acab.WoodSection.CFrame=
  5371. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  5372. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(acab.WoodSection)
  5373. acab.WoodSection.CFrame=
  5374. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  5375. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(acab.WoodSection)
  5376. acab.WoodSection.CFrame=
  5377. 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
  5378. cdba.AnchorPoint=Vector2.new(0.5,0.5)cdba.BackgroundTransparency=1
  5379. cdba.Position=UDim2.new(0.494003624,0,0.5,0)cdba.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  5380. cdba.Font=Enum.Font.Cartoon;cdba.Text="VEHICLE"cdba.TextColor3=Color3.new(0,0,0)
  5381. cdba.TextSize=21;ddba.Name="gift"ddba.Parent=dbba
  5382. ddba.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)ddba.BackgroundTransparency=1;ddba.BorderSizePixel=0
  5383. ddba.Position=UDim2.new(0.648098469,0,0.381181777,0)ddba.Size=UDim2.new(0,143,0,41)
  5384. ddba.Image="rbxassetid://2790389767"ddba.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  5385. ddba.ScaleType=Enum.ScaleType.Slice;ddba.SliceCenter=Rect.new(8,8,248,248)
  5386. ddba.MouseButton1Click:connect(function()
  5387. abab=game.Players.LocalPlayer;local bbab=d_ca.Text;local cbab="Gift"local dbab=0
  5388. for _cab,acab in
  5389. pairs(game.Workspace.PlayerModels:GetChildren())do
  5390. if acab:FindFirstChild("Owner")and
  5391. tostring(acab.Owner.Value)==bbab then
  5392. if cbab~="TreeClass"then
  5393. if
  5394.  
  5395. acab:FindFirstChild("Type")and tostring(acab.Type.Value)==cbab then
  5396. if acab.PrimaryPart then
  5397. acab.PrimaryPart.CFrame=
  5398. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  5399. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(acab.PrimaryPart)
  5400. acab.PrimaryPart.CFrame=
  5401. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  5402. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(acab.PrimaryPart)
  5403. acab.PrimaryPart.CFrame=
  5404. 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
  5405. if acab:FindFirstChild("TreeClass")then
  5406. if acab.WoodSection then
  5407. acab.WoodSection.CFrame=
  5408. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  5409. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(acab.WoodSection)
  5410. acab.WoodSection.CFrame=
  5411. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  5412. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(acab.WoodSection)
  5413. acab.WoodSection.CFrame=
  5414. 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
  5415. __ca.AnchorPoint=Vector2.new(0.5,0.5)__ca.BackgroundTransparency=1
  5416. __ca.Position=UDim2.new(0.494003624,0,0.5,0)__ca.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  5417. __ca.Font=Enum.Font.Cartoon;__ca.Text="GIFT"__ca.TextColor3=Color3.new(0,0,0)
  5418. __ca.TextSize=25;a_ca.Name="axe"a_ca.Parent=dbba
  5419. a_ca.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)a_ca.BackgroundTransparency=1;a_ca.BorderSizePixel=0
  5420. a_ca.Position=UDim2.new(0.648098469,0,0.532696962,0)a_ca.Size=UDim2.new(0,143,0,41)
  5421. a_ca.Image="rbxassetid://2790389767"a_ca.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  5422. a_ca.ScaleType=Enum.ScaleType.Slice;a_ca.SliceCenter=Rect.new(8,8,248,248)
  5423. a_ca.MouseButton1Click:connect(function()
  5424. abab=game.Players.LocalPlayer;local bbab=d_ca.Text;local cbab="Tool"local dbab=0
  5425. for _cab,acab in
  5426. pairs(game.Workspace.PlayerModels:GetChildren())do
  5427. if acab:FindFirstChild("Owner")and
  5428. tostring(acab.Owner.Value)==bbab then
  5429. if cbab~="TreeClass"then
  5430. if
  5431.  
  5432. acab:FindFirstChild("Type")and tostring(acab.Type.Value)==cbab then
  5433. if acab.PrimaryPart then
  5434. acab.PrimaryPart.CFrame=
  5435. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  5436. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(acab.PrimaryPart)
  5437. acab.PrimaryPart.CFrame=
  5438. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  5439. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(acab.PrimaryPart)
  5440. acab.PrimaryPart.CFrame=
  5441. 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
  5442. if acab:FindFirstChild("TreeClass")then
  5443. if acab.WoodSection then
  5444. acab.WoodSection.CFrame=
  5445. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  5446. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(acab.WoodSection)
  5447. acab.WoodSection.CFrame=
  5448. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  5449. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(acab.WoodSection)
  5450. acab.WoodSection.CFrame=
  5451. 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
  5452. b_ca.AnchorPoint=Vector2.new(0.5,0.5)b_ca.BackgroundTransparency=1
  5453. b_ca.Position=UDim2.new(0.494003624,0,0.5,0)b_ca.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  5454. b_ca.Font=Enum.Font.Cartoon;b_ca.Text="AXE"b_ca.TextColor3=Color3.new(0,0,0)
  5455. b_ca.TextSize=25;c_ca.Name="ayoh"c_ca.Parent=dbba
  5456. c_ca.BackgroundColor3=Color3.new(0.364706,0.196078,0.65098)c_ca.BackgroundTransparency=1
  5457. c_ca.Position=UDim2.new(0.277404934,0,0.224242419,0)c_ca.Size=UDim2.new(0,196,0,45)
  5458. c_ca.Image="rbxassetid://2790389767"c_ca.ImageColor3=Color3.new(0.364706,0.196078,0.65098)
  5459. c_ca.ScaleType=Enum.ScaleType.Slice;c_ca.SliceCenter=Rect.new(8,8,248,248)d_ca.Name="Bangsad"
  5460. d_ca.Parent=c_ca;d_ca.AnchorPoint=Vector2.new(0.5,0.5)
  5461. d_ca.BackgroundTransparency=1;d_ca.Position=UDim2.new(0.5,0,0.5,0)
  5462. d_ca.Size=UDim2.new(1,0,0.899999976,0)d_ca.Font=Enum.Font.Cartoon;d_ca.Text="PLAYERS NAME"
  5463. d_ca.TextColor3=Color3.new(1,1,1)d_ca.TextSize=25;_aca.Name="wipebase"_aca.Parent=dbba
  5464. _aca.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)_aca.BackgroundTransparency=1;_aca.BorderSizePixel=0
  5465. _aca.Position=UDim2.new(0.724161029,0,0.890272677,0)_aca.Size=UDim2.new(0,109,0,33)
  5466. _aca.Image="rbxassetid://2790389767"_aca.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  5467. _aca.ScaleType=Enum.ScaleType.Slice;_aca.SliceCenter=Rect.new(8,8,248,248)
  5468. _aca.MouseButton1Click:Connect(function()
  5469. abab=game.Players.LocalPlayer;plr=d_ca.Text;pmds=game.Workspace.PlayerModels
  5470. PlaceR=game.ReplicatedStorage.Interaction.DestroyStructure
  5471. for bbab,cbab in pairs(pmds:GetChildren())do
  5472. if
  5473.  
  5474. cbab:FindFirstChild("Owner")and
  5475. cbab.Owner.Value~=nil and
  5476. cbab.Owner.Value==game.Players[plr]and
  5477. cbab:FindFirstChild("ItemName")and
  5478. cbab:FindFirstChild("Type")and
  5479. (cbab.PrimaryPart~=nil or cbab:FindFirstChild("MainCFrame"))then PlaceR:FireServer(cbab)end end end)aaca.Name="wipebase"aaca.Parent=_aca
  5480. aaca.AnchorPoint=Vector2.new(0.5,0.5)aaca.BackgroundTransparency=1
  5481. aaca.Position=UDim2.new(0.494003624,0,0.5,0)aaca.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  5482. aaca.Font=Enum.Font.Cartoon;aaca.Text="WIPE BASE"aaca.TextColor3=Color3.new(0,0,0)
  5483. aaca.TextSize=21;baca.Name="minim2"baca.Parent=dbba
  5484. baca.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)baca.BackgroundTransparency=1;baca.BorderSizePixel=0;baca.Position=UDim2.new(0.943400443,0,
  5485. -0.000636407116,0)
  5486. baca.Size=UDim2.new(0,25,0,13)baca.Image="rbxassetid://2790389767"
  5487. baca.ImageColor3=Color3.new(0.466667,0.392157,0.87451)baca.ScaleType=Enum.ScaleType.Slice
  5488. baca.SliceCenter=Rect.new(8,8,248,248)caca.Name="minim2"caca.Parent=baca
  5489. caca.AnchorPoint=Vector2.new(0.5,0.5)caca.BackgroundTransparency=1
  5490. caca.Position=UDim2.new(0.494003624,0,0.5,0)caca.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  5491. caca.Font=Enum.Font.Cartoon;caca.Text="-"caca.TextColor3=Color3.new(0,0,0)
  5492. caca.TextSize=21;daca.Name="copybase"daca.Parent=dbba
  5493. daca.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)daca.BackgroundTransparency=1;daca.BorderSizePixel=0
  5494. daca.Position=UDim2.new(0.648098469,0,0.681181788,0)daca.Size=UDim2.new(0,143,0,41)
  5495. daca.Image="rbxassetid://2790389767"daca.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  5496. daca.ScaleType=Enum.ScaleType.Slice;daca.SliceCenter=Rect.new(8,8,248,248)
  5497. daca.MouseButton1Click:Connect(function()
  5498. abab=game.Players.LocalPlayer;plr=d_ca.Text;pmds=game.Workspace.PlayerModels
  5499. PlaceR=game.ReplicatedStorage.PlaceStructure.ClientPlacedBlueprint
  5500. PlaceS=game.ReplicatedStorage.PlaceStructure.ClientPlacedStructure;Property=nil;MProperty=nil
  5501. for bbab,cbab in
  5502. pairs(game.Workspace.Properties:GetChildren())do
  5503. if
  5504.  
  5505. cbab:FindFirstChild("Owner")and cbab.Owner.Value~=nil and cbab.Owner.Value==game.Players[plr]then Property=cbab.OriginSquare end end
  5506. for bbab,cbab in
  5507. pairs(game.Workspace.Properties:GetChildren())do
  5508. if
  5509.  
  5510. cbab:FindFirstChild("Owner")and cbab.Owner.Value~=nil and cbab.Owner.Value==game.Players.LocalPlayer then MProperty=cbab.OriginSquare end end
  5511. function copypart(bbab)if bbab:FindFirstChild("MainCFrame")then Cframe=bbab.MainCFrame.Value else
  5512. Cframe=bbab.PrimaryPart.CFrame end;X=
  5513. Property.Position.X-Cframe.X
  5514. Y=Property.Position.Y-Cframe.Y;Z=Property.Position.Z-Cframe.Z
  5515. PlaceR:FireServer(bbab.ItemName.Value,
  5516. (
  5517. 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
  5518. for bbab,cbab in pairs(pmds:GetChildren())do
  5519. if
  5520.  
  5521. cbab:FindFirstChild("Owner")and
  5522. cbab.Owner.Value~=nil and
  5523. cbab.Owner.Value==game.Players[plr]and
  5524. cbab:FindFirstChild("ItemName")and
  5525. cbab:FindFirstChild("Type")and
  5526. (cbab.PrimaryPart~=nil or cbab:FindFirstChild("MainCFrame"))then copypart(cbab)end end end)_bca.Name="copybasetext"_bca.Parent=daca
  5527. _bca.AnchorPoint=Vector2.new(0.5,0.5)_bca.BackgroundTransparency=1
  5528. _bca.Position=UDim2.new(0.494003624,0,0.5,0)_bca.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  5529. _bca.Font=Enum.Font.Cartoon;_bca.Text="COPY BASE"_bca.TextColor3=Color3.new(0,0,0)
  5530. _bca.TextSize=25;abca.Name="painting"abca.Parent=dbba
  5531. abca.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)abca.BackgroundTransparency=1;abca.BorderSizePixel=0
  5532. abca.Position=UDim2.new(0.379642069,0,0.396333277,0)abca.Size=UDim2.new(0,109,0,33)
  5533. abca.Image="rbxassetid://2790389767"abca.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  5534. abca.ScaleType=Enum.ScaleType.Slice;abca.SliceCenter=Rect.new(8,8,248,248)
  5535. abca.MouseButton1Click:connect(function()
  5536. abab=game.Players.LocalPlayer;local bbab=d_ca.Text;local cbab="Painting"local dbab=0
  5537. for _cab,acab in
  5538. pairs(game.Workspace.PlayerModels:GetChildren())do
  5539. if acab:FindFirstChild("Owner")and
  5540. tostring(acab.Owner.Value)==bbab then
  5541. if cbab~="TreeClass"then
  5542. if
  5543.  
  5544. acab:FindFirstChild("Type")and tostring(acab.Type.Value)==cbab then
  5545. if acab.PrimaryPart then
  5546. acab.PrimaryPart.CFrame=
  5547. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  5548. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(acab.PrimaryPart)
  5549. acab.PrimaryPart.CFrame=
  5550. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  5551. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(acab.PrimaryPart)
  5552. acab.PrimaryPart.CFrame=
  5553. 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
  5554. if acab:FindFirstChild("TreeClass")then
  5555. if acab.WoodSection then
  5556. acab.WoodSection.CFrame=
  5557. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  5558. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(acab.WoodSection)
  5559. acab.WoodSection.CFrame=
  5560. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  5561. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(acab.WoodSection)
  5562. acab.WoodSection.CFrame=
  5563. 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
  5564. bbca.AnchorPoint=Vector2.new(0.5,0.5)bbca.BackgroundTransparency=1
  5565. bbca.Position=UDim2.new(0.494003624,0,0.5,0)bbca.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  5566. bbca.Font=Enum.Font.Cartoon;bbca.Text="PAINTING"bbca.TextColor3=Color3.new(0,0,0)
  5567. bbca.TextSize=21;cbca.Name="wire"cbca.Parent=dbba
  5568. cbca.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)cbca.BackgroundTransparency=1;cbca.BorderSizePixel=0
  5569. cbca.Position=UDim2.new(0.375167787,0,0.675121188,0)cbca.Size=UDim2.new(0,109,0,33)
  5570. cbca.Image="rbxassetid://2790389767"cbca.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  5571. cbca.ScaleType=Enum.ScaleType.Slice;cbca.SliceCenter=Rect.new(8,8,248,248)
  5572. cbca.MouseButton1Click:connect(function()
  5573. abab=game.Players.LocalPlayer;local bbab=d_ca.Text;local cbab="Wire"local dbab=0
  5574. for _cab,acab in
  5575. pairs(game.Workspace.PlayerModels:GetChildren())do
  5576. if acab:FindFirstChild("Owner")and
  5577. tostring(acab.Owner.Value)==bbab then
  5578. if cbab~="TreeClass"then
  5579. if
  5580.  
  5581. acab:FindFirstChild("Type")and tostring(acab.Type.Value)==cbab then
  5582. if acab.PrimaryPart then
  5583. acab.PrimaryPart.CFrame=
  5584. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  5585. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(acab.PrimaryPart)
  5586. acab.PrimaryPart.CFrame=
  5587. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  5588. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(acab.PrimaryPart)
  5589. acab.PrimaryPart.CFrame=
  5590. 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
  5591. if acab:FindFirstChild("TreeClass")then
  5592. if acab.WoodSection then
  5593. acab.WoodSection.CFrame=
  5594. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  5595. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(acab.WoodSection)
  5596. acab.WoodSection.CFrame=
  5597. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(0,10,0)
  5598. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(acab.WoodSection)
  5599. acab.WoodSection.CFrame=
  5600. 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
  5601. dbca.AnchorPoint=Vector2.new(0.5,0.5)dbca.BackgroundTransparency=1
  5602. dbca.Position=UDim2.new(0.494003624,0,0.5,0)dbca.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  5603. dbca.Font=Enum.Font.Cartoon;dbca.Text="WIRE"dbca.TextColor3=Color3.new(0,0,0)
  5604. dbca.TextSize=21;_cca.Name="Border5"_cca.Parent=dc_a
  5605. _cca.BackgroundColor3=Color3.new(0.301961,0.301961,0.301961)_cca.BorderSizePixel=0
  5606. _cca.Position=UDim2.new(0.349999994,0,-1,0)_cca.Size=UDim2.new(0,447,0,330)acca.Parent=_cca
  5607. acca.BackgroundColor3=Color3.new(0.270588,0.0901961,0.545098)acca.BorderSizePixel=0;acca.Size=UDim2.new(0,447,0,39)
  5608. bcca.Parent=_cca
  5609. bcca.BackgroundColor3=Color3.new(0.270588,0.0901961,0.545098)bcca.BorderSizePixel=0
  5610. bcca.Position=UDim2.new(0,0,0.881818175,0)bcca.Size=UDim2.new(0,447,0,39)ccca.Name="LT 2\"FERRY\""
  5611. ccca.Parent=_cca;ccca.BackgroundColor3=Color3.new(1,1,1)
  5612. ccca.BackgroundTransparency=1;ccca.Position=UDim2.new(0.309354991,0,0.0204323977,0)
  5613. ccca.Size=UDim2.new(0,167,0,24)ccca.Image="rbxassetid://2978220566"dcca.Name="Dupe"dcca.Parent=_cca
  5614. dcca.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)dcca.BackgroundTransparency=1;dcca.BorderSizePixel=0
  5615. dcca.Position=UDim2.new(0.274290383,0,0.662502229,0)dcca.Size=UDim2.new(0,200,0,50)
  5616. dcca.Image="rbxassetid://2790389767"dcca.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  5617. dcca.ScaleType=Enum.ScaleType.Slice;dcca.SliceCenter=Rect.new(8,8,248,248)
  5618. dcca.MouseButton1Down:connect(function()
  5619. plr=game:GetService("Players").LocalPlayer;slot=plr.CurrentSaveSlot
  5620. if Option==false then
  5621. if slot.Value==-1 then
  5622. game:GetService("StarterGui"):SetCore("SendNotification",{Title="STATUS DUPE :",Text="DUPE ACTIVE!"})Option=true;slot.RobloxLocked=true
  5623. dcca.BackgroundColor3=Color3.new(0,1,0)adca.Text="Status Dupe : Active"end else
  5624. game:GetService("StarterGui"):SetCore("SendNotification",{Title="STATUS DUPE :",Text="DUPE NOT ACTIVE!"})Option=false;slot.RobloxLocked=false
  5625. dcca.BackgroundColor3=Color3.new(0.7,0,0)adca.Text="Status Dupe : Not Active"
  5626. adca.Text=Color3.new(63,253,4)end end)_dca.Name="Dupetext"_dca.Parent=dcca
  5627. _dca.AnchorPoint=Vector2.new(0.5,0.5)_dca.BackgroundTransparency=1
  5628. _dca.Position=UDim2.new(0.494003624,0,0.5,0)_dca.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  5629. _dca.Font=Enum.Font.Cartoon;_dca.Text="DUPE"_dca.TextColor3=Color3.new(0,0,0)
  5630. _dca.TextSize=39;adca.Name="DupeLabel"adca.Parent=_cca;adca.Active=true
  5631. adca.BackgroundColor3=Color3.new(1,1,1)adca.BackgroundTransparency=1
  5632. adca.Position=UDim2.new(0.274654567,0,0.803698897,0)adca.Size=UDim2.new(0,200,0,21)
  5633. adca.Font=Enum.Font.Cartoon;adca.Text="Status Dupe : Not Active"
  5634. adca.TextColor3=Color3.new(0.247059,0.992157,0.0156863)adca.TextSize=14;adca.TextWrapped=true;bdca.Name="woodmenu"
  5635. bdca.Parent=_cca
  5636. bdca.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)bdca.BackgroundTransparency=1;bdca.BorderSizePixel=0
  5637. bdca.Position=UDim2.new(0.0261745248,0,0.193303004,0)bdca.Size=UDim2.new(0,143,0,41)
  5638. bdca.Image="rbxassetid://2790389767"bdca.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  5639. bdca.ScaleType=Enum.ScaleType.Slice;bdca.SliceCenter=Rect.new(8,8,248,248)cdca.Name="woodmenutext"
  5640. cdca.Parent=bdca;cdca.AnchorPoint=Vector2.new(0.5,0.5)
  5641. cdca.BackgroundTransparency=1;cdca.Position=UDim2.new(0.494003624,0,0.5,0)
  5642. cdca.Size=UDim2.new(0.0926923454,0,0.899999917,0)cdca.Font=Enum.Font.Cartoon;cdca.Text="WOOD MENU"
  5643. cdca.TextColor3=Color3.new(0,0,0)cdca.TextSize=21;ddca.Name="tpsystem"ddca.Parent=_cca
  5644. ddca.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)ddca.BackgroundTransparency=1;ddca.BorderSizePixel=0
  5645. ddca.Position=UDim2.new(0.0261745248,0,0.344818175,0)ddca.Size=UDim2.new(0,143,0,41)
  5646. ddca.Image="rbxassetid://2790389767"ddca.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  5647. ddca.ScaleType=Enum.ScaleType.Slice;ddca.SliceCenter=Rect.new(8,8,248,248)__da.Name="tpsystemtext"
  5648. __da.Parent=ddca;__da.AnchorPoint=Vector2.new(0.5,0.5)
  5649. __da.BackgroundTransparency=1;__da.Position=UDim2.new(0.494003624,0,0.5,0)
  5650. __da.Size=UDim2.new(0.0926923454,0,0.899999917,0)__da.Font=Enum.Font.Cartoon;__da.Text="TP SYSTEM"
  5651. __da.TextColor3=Color3.new(0,0,0)__da.TextSize=21;a_da.Name="maxland"a_da.Parent=_cca
  5652. a_da.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)a_da.BackgroundTransparency=1;a_da.BorderSizePixel=0
  5653. a_da.Position=UDim2.new(0.0261745248,0,0.493303031,0)a_da.Size=UDim2.new(0,143,0,41)
  5654. a_da.Image="rbxassetid://2790389767"a_da.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  5655. a_da.ScaleType=Enum.ScaleType.Slice;a_da.SliceCenter=Rect.new(8,8,248,248)
  5656. a_da.MouseButton1Click:connect(function()
  5657. for bbab,cbab in
  5658. pairs(game:GetService("Workspace").Properties:GetChildren())do
  5659. if cbab:FindFirstChild("Owner")and
  5660. cbab.Owner.Value==game.Players.LocalPlayer then base=cbab;square=cbab.OriginSquare end end
  5661. function makebase(bbab)
  5662. local cbab=game:GetService("ReplicatedStorage").PropertyPurchasing.ClientExpandedProperty;cbab:FireServer(base,bbab)end;spos=square.Position
  5663. makebase(CFrame.new(spos.X+40,spos.Y,spos.Z))
  5664. makebase(CFrame.new(spos.X-40,spos.Y,spos.Z))
  5665. makebase(CFrame.new(spos.X,spos.Y,spos.Z+40))
  5666. makebase(CFrame.new(spos.X,spos.Y,spos.Z-40))
  5667. makebase(CFrame.new(spos.X+40,spos.Y,spos.Z+40))
  5668. makebase(CFrame.new(spos.X+40,spos.Y,spos.Z-40))
  5669. makebase(CFrame.new(spos.X-40,spos.Y,spos.Z+40))
  5670. makebase(CFrame.new(spos.X-40,spos.Y,spos.Z-40))
  5671. makebase(CFrame.new(spos.X+80,spos.Y,spos.Z))
  5672. makebase(CFrame.new(spos.X-80,spos.Y,spos.Z))
  5673. makebase(CFrame.new(spos.X,spos.Y,spos.Z+80))
  5674. makebase(CFrame.new(spos.X,spos.Y,spos.Z-80))
  5675. makebase(CFrame.new(spos.X+80,spos.Y,spos.Z+80))
  5676. makebase(CFrame.new(spos.X+80,spos.Y,spos.Z-80))
  5677. makebase(CFrame.new(spos.X-80,spos.Y,spos.Z+80))
  5678. makebase(CFrame.new(spos.X-80,spos.Y,spos.Z-80))
  5679. makebase(CFrame.new(spos.X+40,spos.Y,spos.Z+80))
  5680. makebase(CFrame.new(spos.X-40,spos.Y,spos.Z+80))
  5681. makebase(CFrame.new(spos.X+80,spos.Y,spos.Z+40))
  5682. makebase(CFrame.new(spos.X+80,spos.Y,spos.Z-40))
  5683. makebase(CFrame.new(spos.X-80,spos.Y,spos.Z+40))
  5684. makebase(CFrame.new(spos.X-80,spos.Y,spos.Z-40))
  5685. makebase(CFrame.new(spos.X+40,spos.Y,spos.Z-80))
  5686. makebase(CFrame.new(spos.X-40,spos.Y,spos.Z-80))end)b_da.Name="maxlandtext"b_da.Parent=a_da
  5687. b_da.AnchorPoint=Vector2.new(0.5,0.5)b_da.BackgroundTransparency=1
  5688. b_da.Position=UDim2.new(0.494003624,0,0.5,0)b_da.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  5689. b_da.Font=Enum.Font.Cartoon;b_da.Text="MAX LAND"b_da.TextColor3=Color3.new(0,0,0)
  5690. b_da.TextSize=21;c_da.Name="goldaxe"c_da.Parent=_cca
  5691. c_da.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)c_da.BackgroundTransparency=1;c_da.BorderSizePixel=0
  5692. c_da.Position=UDim2.new(0.648098469,0,0.193303004,0)c_da.Size=UDim2.new(0,143,0,41)
  5693. c_da.Image="rbxassetid://2790389767"c_da.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  5694. c_da.ScaleType=Enum.ScaleType.Slice;c_da.SliceCenter=Rect.new(8,8,248,248)
  5695. c_da.MouseButton1Click:connect(function()
  5696. Detect=coroutine.wrap(function()
  5697. Player=game.Players.LocalPlayer;mouse=Player:GetMouse()
  5698. mouse.Button1Down:connect(function()MouseDown=true end)
  5699. mouse.Button1Up:connect(function()MouseDown=false end)end)Detect()Player=game.Players.LocalPlayer
  5700. mouse=Player:GetMouse()
  5701. game:GetService('RunService').RenderStepped:connect(function()
  5702. if
  5703. Player.Character:FindFirstChild("Tool")then
  5704. if MouseDown==true then
  5705. if mouse.Target.Name=="WoodSection"then
  5706. targetWood=mouse.Target;Tool=Player.Character.Tool
  5707. Height=
  5708. targetWood.CFrame:pointToObjectSpace(mouse.Hit.p).Y+targetWood.Size.Y/2
  5709. local bbab=Ray.new(Player.Character.Head.Position,
  5710. (
  5711. (targetWood.CFrame*CFrame.new(0,Height-
  5712. targetWood.Size.Y/2,0)).p-Player.Character.Head.Position).unit*200)
  5713. part,_,p=workspace:FindPartOnRay(bbab,Player.Character)function fixVector(dcab)
  5714. return Vector3.new(math.floor(dcab.X+0.5),math.floor(dcab.Y+0.5),math.floor(
  5715. dcab.Z+0.5))end
  5716. local cbab=fixVector(targetWood.CFrame:vectorToObjectSpace(p))if cbab.Y~=0 then return end
  5717. local dbab=CFrame.new(Player.Character.Head.Position,mouse.Hit.p)
  5718. 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
  5719. if
  5720. cbab.X==1 then cbab=Vector3.new(0,0,-1)*bcab elseif cbab.X==-1 then cbab=
  5721. Vector3.new(0,0,1)*bcab elseif cbab.Z==1 then
  5722. 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
  5723. 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
  5724. d_da.AnchorPoint=Vector2.new(0.5,0.5)d_da.BackgroundTransparency=1
  5725. d_da.Position=UDim2.new(0.494003624,0,0.5,0)d_da.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  5726. d_da.Font=Enum.Font.Cartoon;d_da.Text="GOLD AXE"d_da.TextColor3=Color3.new(0,0,0)
  5727. d_da.TextSize=21;_ada.Name="painttools"_ada.Parent=_cca
  5728. _ada.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)_ada.BackgroundTransparency=1;_ada.BorderSizePixel=0
  5729. _ada.Position=UDim2.new(0.648098469,0,0.344818175,0)_ada.Size=UDim2.new(0,143,0,41)
  5730. _ada.Image="rbxassetid://2790389767"_ada.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  5731. _ada.ScaleType=Enum.ScaleType.Slice;_ada.SliceCenter=Rect.new(8,8,248,248)
  5732. _ada.MouseButton1Down:Connect(function()
  5733. local bbab=Instance.new("ScreenGui")local cbab=Instance.new("Frame")
  5734. local dbab=Instance.new("ImageButton")local _cab=Instance.new("ScrollingFrame")
  5735. local acab=Instance.new("ImageButton")local bcab=Instance.new("Frame")
  5736. local ccab=Instance.new("ImageButton")local dcab=Instance.new("Frame")
  5737. local _dab=Instance.new("ImageButton")local adab=Instance.new("Frame")
  5738. local bdab=Instance.new("ImageButton")local cdab=Instance.new("Frame")
  5739. local ddab=Instance.new("ImageButton")local __bb=Instance.new("Frame")
  5740. local a_bb=Instance.new("ImageButton")local b_bb=Instance.new("Frame")
  5741. local c_bb=Instance.new("ImageButton")local d_bb=Instance.new("Frame")
  5742. local _abb=Instance.new("ImageButton")local aabb=Instance.new("Frame")
  5743. local babb=Instance.new("ImageButton")local cabb=Instance.new("Frame")
  5744. local dabb=Instance.new("ImageButton")local _bbb=Instance.new("Frame")
  5745. local abbb=Instance.new("ImageButton")local bbbb=Instance.new("Frame")
  5746. local cbbb=Instance.new("ImageButton")local dbbb=Instance.new("Frame")
  5747. local _cbb=Instance.new("ImageButton")local acbb=Instance.new("Frame")
  5748. local bcbb=Instance.new("ImageButton")local ccbb=Instance.new("Frame")
  5749. local dcbb=Instance.new("ImageButton")local _dbb=Instance.new("Frame")
  5750. local adbb=Instance.new("ImageButton")local bdbb=Instance.new("Frame")
  5751. local cdbb=Instance.new("ImageButton")local ddbb=Instance.new("Frame")
  5752. local __cb=Instance.new("ImageButton")local a_cb=Instance.new("Frame")
  5753. local b_cb=Instance.new("ImageButton")local c_cb=Instance.new("Frame")bbab.Name="ColorPicker"
  5754. bbab.Parent=game.Players.LocalPlayer:WaitForChild("PlayerGui")cbab.Name="ChangeColor"cbab.Parent=bbab
  5755. 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,
  5756. -110)
  5757. cbab.Size=UDim2.new(0,100,0,100)cbab.ZIndex=2;bbab.Enabled=false;dbab.Name="CurrentColor"
  5758. dbab.Parent=cbab
  5759. dbab.BackgroundColor3=Color3.new(0.176471,0.254902,0.427451)dbab.BorderColor3=Color3.new(0,0,0)dbab.BorderSizePixel=2
  5760. dbab.Position=UDim2.new(0,10,0,10)dbab.Size=UDim2.new(0,80,0,80)dbab.ZIndex=2
  5761. dbab.Image="rbxassetid://2712547918"dbab.ScaleType=Enum.ScaleType.Crop;_cab.Name="Picker"
  5762. _cab.Parent=bbab
  5763. _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,
  5764. -320)
  5765. _cab.Size=UDim2.new(0,100,0,200)_cab.CanvasPosition=Vector2.new(0,700)
  5766. _cab.CanvasSize=UDim2.new(0,0,0,900)_cab.ScrollBarThickness=7
  5767. _cab.VerticalScrollBarPosition=Enum.VerticalScrollBarPosition.Left;_cab.Visible=false;acab.Name="Birch"acab.Parent=_cab
  5768. acab.BackgroundColor3=Color3.new(1,1,1)acab.BorderColor3=Color3.new(0,0,0)
  5769. acab.Position=UDim2.new(0,10,0,5)acab.Size=UDim2.new(0,80,0,40)acab.ZIndex=3
  5770. acab.Image="rbxassetid://2712547918"acab.ScaleType=Enum.ScaleType.Crop;bcab.Name="DropShadow"
  5771. bcab.Parent=acab;bcab.BackgroundColor3=Color3.new(0,0,0)bcab.BorderSizePixel=0
  5772. bcab.Position=UDim2.new(0,4,0,4)bcab.Size=UDim2.new(1,0,1,0)bcab.ZIndex=2;ccab.Name="Grey"
  5773. ccab.Parent=_cab;ccab.BackgroundColor3=Color3.new(1,1,1)
  5774. ccab.BorderColor3=Color3.new(0,0,0)ccab.Position=UDim2.new(0,10,0,55)
  5775. ccab.Size=UDim2.new(0,80,0,40)ccab.ZIndex=3;ccab.Image="rbxassetid://924320031"
  5776. ccab.ScaleType=Enum.ScaleType.Crop;dcab.Name="DropShadow"dcab.Parent=ccab
  5777. dcab.BackgroundColor3=Color3.new(0,0,0)dcab.BorderSizePixel=0;dcab.Position=UDim2.new(0,4,0,4)
  5778. dcab.Size=UDim2.new(1,0,1,0)dcab.ZIndex=2;_dab.Name="Walnut"_dab.Parent=_cab
  5779. _dab.BackgroundColor3=Color3.new(1,1,1)_dab.BorderColor3=Color3.new(0,0,0)
  5780. _dab.Position=UDim2.new(0,10,0,105)_dab.Size=UDim2.new(0,80,0,40)_dab.ZIndex=3
  5781. _dab.Image="rbxassetid://2712559790"_dab.ScaleType=Enum.ScaleType.Crop;adab.Name="DropShadow"
  5782. adab.Parent=_dab;adab.BackgroundColor3=Color3.new(0,0,0)adab.BorderSizePixel=0
  5783. adab.Position=UDim2.new(0,4,0,4)adab.Size=UDim2.new(1,0,1,0)adab.ZIndex=2;bdab.Name="Generic"
  5784. bdab.Parent=_cab;bdab.BackgroundColor3=Color3.new(1,1,1)
  5785. bdab.BorderColor3=Color3.new(0,0,0)bdab.Position=UDim2.new(0,10,0,155)
  5786. bdab.Size=UDim2.new(0,80,0,40)bdab.ZIndex=3;bdab.Image="rbxassetid://2712568624"
  5787. bdab.ScaleType=Enum.ScaleType.Crop;cdab.Name="DropShadow"cdab.Parent=bdab
  5788. cdab.BackgroundColor3=Color3.new(0,0,0)cdab.BorderSizePixel=0;cdab.Position=UDim2.new(0,4,0,4)
  5789. cdab.Size=UDim2.new(1,0,1,0)cdab.ZIndex=2;ddab.Name="Oak"ddab.Parent=_cab
  5790. ddab.BackgroundColor3=Color3.new(1,1,1)ddab.BorderColor3=Color3.new(0,0,0)
  5791. ddab.Position=UDim2.new(0,10,0,205)ddab.Size=UDim2.new(0,80,0,40)ddab.ZIndex=3
  5792. ddab.Image="rbxassetid://2712579185"ddab.ScaleType=Enum.ScaleType.Crop;__bb.Name="DropShadow"
  5793. __bb.Parent=ddab;__bb.BackgroundColor3=Color3.new(0,0,0)__bb.BorderSizePixel=0
  5794. __bb.Position=UDim2.new(0,4,0,4)__bb.Size=UDim2.new(1,0,1,0)__bb.ZIndex=2;a_bb.Name="Pine"
  5795. a_bb.Parent=_cab;a_bb.BackgroundColor3=Color3.new(1,1,1)
  5796. a_bb.BorderColor3=Color3.new(0,0,0)a_bb.Position=UDim2.new(0,10,0,255)
  5797. a_bb.Size=UDim2.new(0,80,0,40)a_bb.ZIndex=3;a_bb.Image="rbxassetid://2712591183"
  5798. a_bb.ScaleType=Enum.ScaleType.Crop;b_bb.Name="DropShadow"b_bb.Parent=a_bb
  5799. b_bb.BackgroundColor3=Color3.new(0,0,0)b_bb.BorderSizePixel=0;b_bb.Position=UDim2.new(0,4,0,4)
  5800. b_bb.Size=UDim2.new(1,0,1,0)b_bb.ZIndex=2;c_bb.Name="Palm"c_bb.Parent=_cab
  5801. c_bb.BackgroundColor3=Color3.new(1,1,1)c_bb.BorderColor3=Color3.new(0,0,0)
  5802. c_bb.Position=UDim2.new(0,10,0,305)c_bb.Size=UDim2.new(0,80,0,40)c_bb.ZIndex=3
  5803. c_bb.Image="rbxassetid://2712597395"c_bb.ScaleType=Enum.ScaleType.Crop;d_bb.Name="DropShadow"
  5804. d_bb.Parent=c_bb;d_bb.BackgroundColor3=Color3.new(0,0,0)d_bb.BorderSizePixel=0
  5805. 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"
  5806. _abb.Parent=_cab;_abb.BackgroundColor3=Color3.new(1,1,1)
  5807. _abb.BorderColor3=Color3.new(0,0,0)_abb.Position=UDim2.new(0,10,0,355)
  5808. _abb.Size=UDim2.new(0,80,0,40)_abb.ZIndex=3;_abb.Image="rbxassetid://2712608599"
  5809. _abb.ScaleType=Enum.ScaleType.Crop;aabb.Name="DropShadow"aabb.Parent=_abb
  5810. aabb.BackgroundColor3=Color3.new(0,0,0)aabb.BorderSizePixel=0;aabb.Position=UDim2.new(0,4,0,4)
  5811. aabb.Size=UDim2.new(1,0,1,0)aabb.ZIndex=2;babb.Name="Koa"babb.Parent=_cab
  5812. babb.BackgroundColor3=Color3.new(1,1,1)babb.BorderColor3=Color3.new(0,0,0)
  5813. babb.Position=UDim2.new(0,10,0,355)babb.Size=UDim2.new(0,80,0,40)babb.ZIndex=3
  5814. babb.Image="rbxassetid://2712612798"babb.ScaleType=Enum.ScaleType.Crop;cabb.Name="DropShadow"
  5815. cabb.Parent=babb;cabb.BackgroundColor3=Color3.new(0,0,0)cabb.BorderSizePixel=0
  5816. cabb.Position=UDim2.new(0,4,0,4)cabb.Size=UDim2.new(1,0,1,0)cabb.ZIndex=2;dabb.Name="Volcano"
  5817. dabb.Parent=_cab;dabb.BackgroundColor3=Color3.new(1,1,1)
  5818. dabb.BorderColor3=Color3.new(0,0,0)dabb.Position=UDim2.new(0,10,0,405)
  5819. dabb.Size=UDim2.new(0,80,0,40)dabb.ZIndex=3;dabb.Image="rbxassetid://2712618609"
  5820. dabb.ScaleType=Enum.ScaleType.Crop;_bbb.Name="DropShadow"_bbb.Parent=dabb
  5821. _bbb.BackgroundColor3=Color3.new(0,0,0)_bbb.BorderSizePixel=0;_bbb.Position=UDim2.new(0,4,0,4)
  5822. _bbb.Size=UDim2.new(1,0,1,0)_bbb.ZIndex=2;abbb.Name="GreenSwampy"abbb.Parent=_cab
  5823. abbb.BackgroundColor3=Color3.new(1,1,1)abbb.BorderColor3=Color3.new(0,0,0)
  5824. abbb.Position=UDim2.new(0,10,0,455)abbb.Size=UDim2.new(0,80,0,40)abbb.ZIndex=3
  5825. abbb.Image="rbxassetid://2712623896"abbb.ScaleType=Enum.ScaleType.Crop;bbbb.Name="DropShadow"
  5826. bbbb.Parent=abbb;bbbb.BackgroundColor3=Color3.new(0,0,0)bbbb.BorderSizePixel=0
  5827. bbbb.Position=UDim2.new(0,4,0,4)bbbb.Size=UDim2.new(1,0,1,0)bbbb.ZIndex=2
  5828. cbbb.Name="GoldSwampy"cbbb.Parent=_cab;cbbb.BackgroundColor3=Color3.new(1,1,1)
  5829. cbbb.BorderColor3=Color3.new(0,0,0)cbbb.Position=UDim2.new(0,10,0,505)
  5830. cbbb.Size=UDim2.new(0,80,0,40)cbbb.ZIndex=3;cbbb.Image="rbxassetid://2712631457"
  5831. cbbb.ScaleType=Enum.ScaleType.Crop;dbbb.Name="DropShadow"dbbb.Parent=cbbb
  5832. dbbb.BackgroundColor3=Color3.new(0,0,0)dbbb.BorderSizePixel=0;dbbb.Position=UDim2.new(0,4,0,4)
  5833. dbbb.Size=UDim2.new(1,0,1,0)dbbb.ZIndex=2;_cbb.Name="GenericSpecial"_cbb.Parent=_cab
  5834. _cbb.BackgroundColor3=Color3.new(1,1,1)_cbb.BorderColor3=Color3.new(0,0,0)
  5835. _cbb.Position=UDim2.new(0,10,0,555)_cbb.Size=UDim2.new(0,80,0,40)_cbb.ZIndex=3
  5836. _cbb.Image="rbxassetid://2712639396"_cbb.ScaleType=Enum.ScaleType.Crop;acbb.Name="DropShadow"
  5837. acbb.Parent=_cbb;acbb.BackgroundColor3=Color3.new(0,0,0)acbb.BorderSizePixel=0
  5838. acbb.Position=UDim2.new(0,4,0,4)acbb.Size=UDim2.new(1,0,1,0)acbb.ZIndex=2;bcbb.Name="SnowGlow"
  5839. bcbb.Parent=_cab;bcbb.BackgroundColor3=Color3.new(1,1,1)
  5840. bcbb.BorderColor3=Color3.new(0,0,0)bcbb.Position=UDim2.new(0,10,0,605)
  5841. bcbb.Size=UDim2.new(0,80,0,40)bcbb.ZIndex=3;bcbb.Image="rbxassetid://2712651454"
  5842. bcbb.ScaleType=Enum.ScaleType.Crop;ccbb.Name="DropShadow"ccbb.Parent=bcbb
  5843. ccbb.BackgroundColor3=Color3.new(0,0,0)ccbb.BorderSizePixel=0;ccbb.Position=UDim2.new(0,4,0,4)
  5844. ccbb.Size=UDim2.new(1,0,1,0)ccbb.ZIndex=2;dcbb.Name="Frost"dcbb.Parent=_cab
  5845. dcbb.BackgroundColor3=Color3.new(1,1,1)dcbb.BorderColor3=Color3.new(0,0,0)
  5846. dcbb.Position=UDim2.new(0,10,0,655)dcbb.Size=UDim2.new(0,80,0,40)dcbb.ZIndex=3
  5847. dcbb.Image="rbxassetid://2712667804"dcbb.ScaleType=Enum.ScaleType.Crop;_dbb.Name="DropShadow"
  5848. _dbb.Parent=dcbb;_dbb.BackgroundColor3=Color3.new(0,0,0)_dbb.BorderSizePixel=0
  5849. _dbb.Position=UDim2.new(0,4,0,4)_dbb.Size=UDim2.new(1,0,1,0)_dbb.ZIndex=2
  5850. adbb.Name="CaveCrawler"adbb.Parent=_cab;adbb.BackgroundColor3=Color3.new(1,1,1)
  5851. adbb.BorderColor3=Color3.new(0,0,0)adbb.Position=UDim2.new(0,10,0,705)
  5852. adbb.Size=UDim2.new(0,80,0,40)adbb.ZIndex=3;adbb.Image="rbxassetid://2712673980"
  5853. adbb.ScaleType=Enum.ScaleType.Crop;bdbb.Name="DropShadow"bdbb.Parent=adbb
  5854. bdbb.BackgroundColor3=Color3.new(0,0,0)bdbb.BorderSizePixel=0;bdbb.Position=UDim2.new(0,4,0,4)
  5855. bdbb.Size=UDim2.new(1,0,1,0)bdbb.ZIndex=2;cdbb.Name="LoneCave"cdbb.Parent=_cab
  5856. cdbb.BackgroundColor3=Color3.new(1,1,1)cdbb.BorderColor3=Color3.new(0,0,0)
  5857. cdbb.Position=UDim2.new(0,10,0,755)cdbb.Size=UDim2.new(0,80,0,40)cdbb.ZIndex=3
  5858. cdbb.Image="rbxassetid://2712693147"cdbb.ScaleType=Enum.ScaleType.Crop;ddbb.Name="DropShadow"
  5859. ddbb.Parent=cdbb;ddbb.BackgroundColor3=Color3.new(0,0,0)ddbb.BorderSizePixel=0
  5860. ddbb.Position=UDim2.new(0,4,0,4)ddbb.Size=UDim2.new(1,0,1,0)ddbb.ZIndex=2;__cb.Name="Spooky"
  5861. __cb.Parent=_cab;__cb.BackgroundColor3=Color3.new(1,1,1)
  5862. __cb.BorderColor3=Color3.new(0,0,0)__cb.Position=UDim2.new(0,10,0,805)
  5863. __cb.Size=UDim2.new(0,80,0,40)__cb.ZIndex=3;__cb.Image="rbxassetid://2712696822"
  5864. __cb.ScaleType=Enum.ScaleType.Crop;a_cb.Name="DropShadow"a_cb.Parent=__cb
  5865. a_cb.BackgroundColor3=Color3.new(0,0,0)a_cb.BorderSizePixel=0;a_cb.Position=UDim2.new(0,4,0,4)
  5866. a_cb.Size=UDim2.new(1,0,1,0)a_cb.ZIndex=2;b_cb.Name="SpookyNeon"b_cb.Parent=_cab
  5867. b_cb.BackgroundColor3=Color3.new(1,1,1)b_cb.BorderColor3=Color3.new(0,0,0)
  5868. b_cb.Position=UDim2.new(0,10,0,855)b_cb.Size=UDim2.new(0,80,0,40)b_cb.ZIndex=3
  5869. b_cb.Image="rbxassetid://2712700047"b_cb.ScaleType=Enum.ScaleType.Crop;c_cb.Name="DropShadow"
  5870. c_cb.Parent=b_cb;c_cb.BackgroundColor3=Color3.new(0,0,0)c_cb.BorderSizePixel=0
  5871. c_cb.Position=UDim2.new(0,4,0,4)c_cb.Size=UDim2.new(1,0,1,0)c_cb.ZIndex=2;woodtype="Birch"
  5872. local d_cb=Instance.new("Tool",game.Players.LocalPlayer.Backpack)d_cb.RequiresHandle=false;d_cb.Name="Paint"
  5873. d_cb.ToolTip="Changes A Stucture's Wood Type"
  5874. d_cb.Equipped:connect(function(_acb)bbab.Enabled=true
  5875. _acb.Button1Down:connect(function()
  5876. if
  5877.  
  5878. _acb.Target.Parent:FindFirstChild("Type")or _acb.Target.Parent:FindFirstChild("BlueprintWoodClass")then local aacb
  5879. if _acb.Target.Parent:FindFirstChild("MainCFrame")then
  5880. aacb=_acb.Target.Parent.MainCFrame.Value else aacb=_acb.Target.Parent.PrimaryPart.CFrame end
  5881. if _acb.Target.Parent~=nil then
  5882. game.ReplicatedStorage.PlaceStructure.ClientPlacedStructure:FireServer(_acb.Target.Parent.ItemName.Value,aacb,game.Players.LocalPlayer,woodtype,_acb.Target.Parent,false)end else end end)end)
  5883. d_cb.Unequipped:connect(function(_acb)bbab.Enabled=false end)
  5884. acab.MouseButton1Click:Connect(function()dbab.Image=acab.Image;woodtype="Birch"end)
  5885. ccab.MouseButton1Click:Connect(function()dbab.Image=ccab.Image;woodtype=nil end)
  5886. _dab.MouseButton1Click:Connect(function()dbab.Image=_dab.Image;woodtype="Walnut"end)
  5887. bdab.MouseButton1Click:Connect(function()dbab.Image=bdab.Image;woodtype="Generic"end)
  5888. ddab.MouseButton1Click:Connect(function()dbab.Image=ddab.Image;woodtype="Oak"end)
  5889. a_bb.MouseButton1Click:Connect(function()dbab.Image=a_bb.Image;woodtype="Pine"end)
  5890. c_bb.MouseButton1Click:Connect(function()dbab.Image=c_bb.Image;woodtype="Palm"end)
  5891. babb.MouseButton1Click:Connect(function()dbab.Image=babb.Image;woodtype="Koa"end)
  5892. dabb.MouseButton1Click:Connect(function()dbab.Image=dabb.Image;woodtype="Volcano"end)
  5893. abbb.MouseButton1Click:Connect(function()dbab.Image=abbb.Image;woodtype="GreenSwampy"end)
  5894. cbbb.MouseButton1Click:Connect(function()dbab.Image=cbbb.Image;woodtype="GoldSwampy"end)
  5895. _cbb.MouseButton1Click:Connect(function()dbab.Image=_cbb.Image
  5896. woodtype="GenericSpecial"end)
  5897. bcbb.MouseButton1Click:Connect(function()dbab.Image=bcbb.Image;woodtype="SnowGlow"end)
  5898. dcbb.MouseButton1Click:Connect(function()dbab.Image=dcbb.Image;woodtype="Frost"end)
  5899. adbb.MouseButton1Click:Connect(function()dbab.Image=adbb.Image;woodtype="CaveCrawler"end)
  5900. cdbb.MouseButton1Click:Connect(function()dbab.Image=cdbb.Image;woodtype="LoneCave"end)
  5901. __cb.MouseButton1Click:Connect(function()dbab.Image=__cb.Image;woodtype="Spooky"end)
  5902. b_cb.MouseButton1Click:Connect(function()dbab.Image=b_cb.Image;woodtype="SpookyNeon"end)
  5903. dbab.MouseButton1Click:Connect(function()if _cab.Visible==false then _cab.Visible=true else
  5904. _cab.Visible=false end end)end)aada.Name="painttools"aada.Parent=_ada
  5905. aada.AnchorPoint=Vector2.new(0.5,0.5)aada.BackgroundTransparency=1
  5906. aada.Position=UDim2.new(0.494003624,0,0.5,0)aada.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  5907. aada.Font=Enum.Font.Cartoon;aada.Text="PAINT TOOLS"aada.TextColor3=Color3.new(0,0,0)
  5908. aada.TextSize=21;bada.Name="fvckferry"bada.Parent=_cca
  5909. bada.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)bada.BackgroundTransparency=1;bada.BorderSizePixel=0
  5910. bada.Position=UDim2.new(0.648098469,0,0.493303031,0)bada.Size=UDim2.new(0,143,0,41)
  5911. bada.Image="rbxassetid://2790389767"bada.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  5912. bada.ScaleType=Enum.ScaleType.Slice;bada.SliceCenter=Rect.new(8,8,248,248)
  5913. cada.Name="fvckferrytext"cada.Parent=bada;cada.AnchorPoint=Vector2.new(0.5,0.5)
  5914. cada.BackgroundTransparency=1;cada.Position=UDim2.new(0.494003624,0,0.5,0)
  5915. cada.Size=UDim2.new(0.0926923454,0,0.899999917,0)cada.Font=Enum.Font.Cartoon;cada.Text="FERRY MENU!"
  5916. cada.TextColor3=Color3.new(0,0,0)cada.TextSize=21;dada.Name="minim"dada.Parent=_cca
  5917. dada.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)dada.BackgroundTransparency=1;dada.BorderSizePixel=0;dada.Position=UDim2.new(0.943400443,0,
  5918. -0.000636407116,0)
  5919. dada.Size=UDim2.new(0,25,0,13)dada.Image="rbxassetid://2790389767"
  5920. dada.ImageColor3=Color3.new(0.466667,0.392157,0.87451)dada.ScaleType=Enum.ScaleType.Slice
  5921. dada.SliceCenter=Rect.new(8,8,248,248)_bda.Name="minim"_bda.Parent=dada
  5922. _bda.AnchorPoint=Vector2.new(0.5,0.5)_bda.BackgroundTransparency=1
  5923. _bda.Position=UDim2.new(0.494003624,0,0.5,0)_bda.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  5924. _bda.Font=Enum.Font.Cartoon;_bda.Text="-"_bda.TextColor3=Color3.new(0,0,0)
  5925. _bda.TextSize=21;abda.Name="b3"abda.Parent=dc_a
  5926. abda.BackgroundColor3=Color3.new(0.517647,0.517647,0.517647)abda.BorderSizePixel=0;abda.ClipsDescendants=true
  5927. abda.Position=UDim2.new(-0.00200000009,0,0.601364493,0)abda.Selectable=false;abda.Size=UDim2.new(0,160,0,30)
  5928. abda.Font=Enum.Font.SourceSansBold;abda.Text=""abda.TextColor3=Color3.new(1,1,1)
  5929. abda.TextScaled=true;abda.TextSize=14;abda.TextStrokeTransparency=0.69999998807907
  5930. abda.TextWrapped=true;bbda.Parent=abda;bbda.BackgroundColor3=Color3.new(1,1,1)
  5931. bbda.BackgroundTransparency=1;bbda.Size=UDim2.new(0,20,0,20)bbda.Visible=false
  5932. bbda.Image="rbxassetid://2513701731"bbda.ImageTransparency=0.20000000298023;cbda.Parent=abda
  5933. cbda.BackgroundColor3=Color3.new(1,1,1)cbda.BackgroundTransparency=1;cbda.Size=UDim2.new(1,0,1,0)
  5934. cbda.ZIndex=2;cbda.Font=Enum.Font.SourceSansBold;cbda.Text="FERRY MENU"
  5935. cbda.TextColor3=Color3.new(1,1,1)cbda.TextScaled=true;cbda.TextSize=14
  5936. cbda.TextStrokeTransparency=0.69999998807907;cbda.TextWrapped=true;dbda.Name="b4"dbda.Parent=dc_a
  5937. dbda.BackgroundColor3=Color3.new(0.517647,0.517647,0.517647)dbda.BorderSizePixel=0;dbda.ClipsDescendants=true
  5938. dbda.Position=UDim2.new(-0.00065229123,0,0.673099458,0)dbda.Selectable=false;dbda.Size=UDim2.new(0,160,0,30)
  5939. dbda.Font=Enum.Font.SourceSansBold;dbda.Text=""dbda.TextColor3=Color3.new(1,1,1)
  5940. dbda.TextScaled=true;dbda.TextSize=14;dbda.TextStrokeTransparency=0.69999998807907
  5941. dbda.TextWrapped=true;_cda.Parent=dbda;_cda.BackgroundColor3=Color3.new(1,1,1)
  5942. _cda.BackgroundTransparency=1;_cda.Size=UDim2.new(0,20,0,20)_cda.Visible=false
  5943. _cda.Image="rbxassetid://856547512"_cda.ImageTransparency=0.20000000298023;acda.Parent=dbda
  5944. acda.BackgroundColor3=Color3.new(1,1,1)acda.BackgroundTransparency=1
  5945. acda.Size=UDim2.new(0.993749976,0,1,0)acda.ZIndex=2;acda.Font=Enum.Font.SourceSansBold
  5946. acda.Text="WOOD MENU"acda.TextColor3=Color3.new(1,1,1)acda.TextScaled=true
  5947. acda.TextSize=14;acda.TextStrokeTransparency=0.69999998807907;acda.TextWrapped=true
  5948. bcda.Name="b5"bcda.Parent=dc_a
  5949. bcda.BackgroundColor3=Color3.new(0.517647,0.517647,0.517647)bcda.BorderSizePixel=0;bcda.ClipsDescendants=true
  5950. bcda.Position=UDim2.new(-0.00100000005,0,0.745224178,0)bcda.Selectable=false;bcda.Size=UDim2.new(0,160,0,30)
  5951. bcda.Font=Enum.Font.SourceSansBold;bcda.Text=""bcda.TextColor3=Color3.new(1,1,1)
  5952. bcda.TextScaled=true;bcda.TextSize=14;bcda.TextStrokeTransparency=0.69999998807907
  5953. bcda.TextWrapped=true;ccda.Parent=bcda;ccda.BackgroundColor3=Color3.new(1,1,1)
  5954. ccda.BackgroundTransparency=1;ccda.Size=UDim2.new(0,20,0,20)ccda.Visible=false
  5955. ccda.Image="rbxassetid://2927751166"ccda.ImageTransparency=0.20000000298023;dcda.Parent=bcda
  5956. dcda.BackgroundColor3=Color3.new(1,1,1)dcda.BackgroundTransparency=1
  5957. dcda.Size=UDim2.new(0.995362461,0,1,0)dcda.ZIndex=2;dcda.Font=Enum.Font.SourceSansBold
  5958. dcda.Text="INSTANT BLUEPRINT"dcda.TextColor3=Color3.new(1,1,1)dcda.TextScaled=true
  5959. dcda.TextSize=14;dcda.TextStrokeTransparency=0.69999998807907;dcda.TextWrapped=true
  5960. _dda.Name="b6"_dda.Parent=dc_a
  5961. _dda.BackgroundColor3=Color3.new(0.517647,0.517647,0.517647)_dda.BorderSizePixel=0;_dda.ClipsDescendants=true
  5962. _dda.Position=UDim2.new(-0.00234770891,0,0.819688082,0)_dda.Selectable=false;_dda.Size=UDim2.new(0,160,0,30)
  5963. _dda.Font=Enum.Font.SourceSansBold;_dda.Text=""_dda.TextColor3=Color3.new(1,1,1)
  5964. _dda.TextScaled=true;_dda.TextSize=14;_dda.TextStrokeTransparency=0.69999998807907
  5965. _dda.TextWrapped=true;adda.Parent=_dda;adda.BackgroundColor3=Color3.new(1,1,1)
  5966. adda.BackgroundTransparency=1;adda.Size=UDim2.new(0,20,0,20)adda.Visible=false
  5967. adda.Image="rbxassetid://2664323359"adda.ImageTransparency=0.20000000298023;bdda.Parent=_dda
  5968. bdda.BackgroundColor3=Color3.new(1,1,1)bdda.BackgroundTransparency=1;bdda.Size=UDim2.new(1,0,1,0)
  5969. bdda.ZIndex=2;bdda.Font=Enum.Font.SourceSansBold;bdda.Text="CREDITS"
  5970. bdda.TextColor3=Color3.new(1,1,1)bdda.TextScaled=true;bdda.TextSize=14
  5971. bdda.TextStrokeTransparency=0.69999998807907;bdda.TextWrapped=true;cdda.Name="blueprint"cdda.Parent=dc_a
  5972. cdda.BackgroundColor3=Color3.new(0.301961,0.301961,0.301961)cdda.BorderSizePixel=0
  5973. cdda.Position=UDim2.new(0.523999989,0,-1,0)cdda.Size=UDim2.new(0,447,0,330)ddda.Parent=cdda
  5974. ddda.BackgroundColor3=Color3.new(0.270588,0.0901961,0.545098)ddda.BorderSizePixel=0;ddda.Size=UDim2.new(0,447,0,39)
  5975. ___b.Parent=cdda
  5976. ___b.BackgroundColor3=Color3.new(0.270588,0.0901961,0.545098)___b.BorderSizePixel=0
  5977. ___b.Position=UDim2.new(0,0,0.881818175,0)___b.Size=UDim2.new(0,447,0,39)a__b.Name="INSTANT BLUEPRINT"
  5978. a__b.Parent=cdda;a__b.BackgroundColor3=Color3.new(1,1,1)
  5979. a__b.BackgroundTransparency=1;a__b.Position=UDim2.new(0.284746498,0,0.0204323977,0)
  5980. a__b.Size=UDim2.new(0,197,0,24)a__b.Image="rbxassetid://2978371575"b__b.Name="minim4"b__b.Parent=cdda
  5981. 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,
  5982. -0.000636407116,0)
  5983. b__b.Size=UDim2.new(0,25,0,13)b__b.Image="rbxassetid://2790389767"
  5984. b__b.ImageColor3=Color3.new(0.466667,0.392157,0.87451)b__b.ScaleType=Enum.ScaleType.Slice
  5985. b__b.SliceCenter=Rect.new(8,8,248,248)c__b.Name="minim4"c__b.Parent=b__b
  5986. c__b.AnchorPoint=Vector2.new(0.5,0.5)c__b.BackgroundTransparency=1
  5987. c__b.Position=UDim2.new(0.494003624,0,0.5,0)c__b.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  5988. c__b.Font=Enum.Font.Cartoon;c__b.Text="-"c__b.TextColor3=Color3.new(0,0,0)
  5989. c__b.TextSize=21;d__b.Name="ok"d__b.Parent=cdda
  5990. d__b.BackgroundColor3=Color3.new(0.466667,0.392157,0.87451)d__b.BackgroundTransparency=1;d__b.BorderSizePixel=0
  5991. d__b.Position=UDim2.new(0.335055172,0,0.599363565,0)d__b.Size=UDim2.new(0,143,0,41)
  5992. d__b.Image="rbxassetid://2790389767"d__b.ImageColor3=Color3.new(0.466667,0.392157,0.87451)
  5993. d__b.ScaleType=Enum.ScaleType.Slice;d__b.SliceCenter=Rect.new(8,8,248,248)
  5994. d__b.MouseButton1Click:connect(function()
  5995. abab=game.Players.LocalPlayer;local bbab=ba_b.Text;local cbab=da_b.Text;local dbab
  5996. local _cab=game.ReplicatedStorage.PlaceStructure.ClientPlacedStructure
  5997. for acab,bcab in
  5998. pairs(game.Workspace.PlayerModels:GetChildren())do
  5999. if bcab:FindFirstChild("Owner")and
  6000. tostring(bcab.Owner.Value)==bbab then
  6001. if bcab:FindFirstChild("Type")and bcab.Type.Value==
  6002. "Blueprint"then
  6003. if
  6004. bcab:FindFirstChild("MainCFrame")then dbab=bcab.MainCFrame.Value else dbab=bcab.PrimaryPart.CFrame end;if bcab~=nil then
  6005. _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
  6006. _a_b.AnchorPoint=Vector2.new(0.5,0.5)_a_b.BackgroundTransparency=1
  6007. _a_b.Position=UDim2.new(0.494003624,0,0.5,0)_a_b.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  6008. _a_b.Font=Enum.Font.Cartoon;_a_b.Text="OK!"_a_b.TextColor3=Color3.new(0,0,0)
  6009. _a_b.TextSize=40;aa_b.Name="haha"aa_b.Parent=cdda
  6010. aa_b.BackgroundColor3=Color3.new(0.364706,0.196078,0.65098)aa_b.BackgroundTransparency=1
  6011. aa_b.Position=UDim2.new(0.277404934,0,0.224242419,0)aa_b.Size=UDim2.new(0,196,0,45)
  6012. aa_b.Image="rbxassetid://2790389767"aa_b.ImageColor3=Color3.new(0.364706,0.196078,0.65098)
  6013. aa_b.ScaleType=Enum.ScaleType.Slice;aa_b.SliceCenter=Rect.new(8,8,248,248)ba_b.Name="bangsad2"
  6014. ba_b.Parent=aa_b;ba_b.AnchorPoint=Vector2.new(0.5,0.5)
  6015. ba_b.BackgroundTransparency=1;ba_b.Position=UDim2.new(0.5,0,0.5,0)
  6016. ba_b.Size=UDim2.new(1,0,0.899999976,0)ba_b.Font=Enum.Font.Cartoon;ba_b.Text="PLAYERS HERE"
  6017. ba_b.TextColor3=Color3.new(1,1,1)ba_b.TextSize=25;ca_b.Name="HIHI"ca_b.Parent=cdda
  6018. ca_b.BackgroundColor3=Color3.new(0.364706,0.196078,0.65098)ca_b.BackgroundTransparency=1
  6019. ca_b.Position=UDim2.new(0.293064922,0,0.409090936,0)ca_b.Size=UDim2.new(0,181,0,37)
  6020. ca_b.Image="rbxassetid://2790389767"ca_b.ImageColor3=Color3.new(0.364706,0.196078,0.65098)
  6021. ca_b.ScaleType=Enum.ScaleType.Slice;ca_b.SliceCenter=Rect.new(8,8,248,248)da_b.Name="bangsad3"
  6022. da_b.Parent=ca_b;da_b.AnchorPoint=Vector2.new(0.5,0.5)
  6023. da_b.BackgroundTransparency=1;da_b.Position=UDim2.new(0.5,0,0.5,0)
  6024. da_b.Size=UDim2.new(1,0,0.899999976,0)da_b.Font=Enum.Font.Cartoon;da_b.Text="Volcano"
  6025. da_b.TextColor3=Color3.new(1,1,1)da_b.TextSize=25;_b_b.Name="blueprintcodes"_b_b.Parent=cdda
  6026. _b_b.BackgroundColor3=Color3.new(0.301961,0.301961,0.301961)_b_b.BorderSizePixel=0
  6027. _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
  6028. ab_b.BackgroundColor3=Color3.new(0.270588,0.0901961,0.545098)ab_b.BorderSizePixel=0;ab_b.Size=UDim2.new(0,238,0,39)
  6029. bb_b.Parent=_b_b
  6030. bb_b.BackgroundColor3=Color3.new(0.270588,0.0901961,0.545098)bb_b.BorderSizePixel=0
  6031. bb_b.Position=UDim2.new(0,0,0.881818175,0)bb_b.Size=UDim2.new(0,238,0,39)cb_b.Name="CODE BLUEPRINT"
  6032. cb_b.Parent=_b_b;cb_b.BackgroundColor3=Color3.new(1,1,1)
  6033. cb_b.BackgroundTransparency=1
  6034. cb_b.Position=UDim2.new(0.0964094698,0,0.0204323977,0)cb_b.Size=UDim2.new(0,189,0,24)
  6035. cb_b.Image="rbxassetid://2978835053"db_b.Name="minim4"db_b.Parent=_b_b
  6036. 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,
  6037. -0.000636430224,0)
  6038. db_b.Size=UDim2.new(0,22,0,13)db_b.Image="rbxassetid://2790389767"
  6039. db_b.ImageColor3=Color3.new(0.466667,0.392157,0.87451)db_b.ScaleType=Enum.ScaleType.Slice
  6040. db_b.SliceCenter=Rect.new(8,8,248,248)_c_b.Name="minim4"_c_b.Parent=db_b
  6041. _c_b.AnchorPoint=Vector2.new(0.5,0.5)_c_b.BackgroundTransparency=1
  6042. _c_b.Position=UDim2.new(0.494003624,0,0.5,0)_c_b.Size=UDim2.new(0.0926923454,0,0.899999917,0)
  6043. _c_b.Font=Enum.Font.Cartoon;_c_b.Text="-"_c_b.TextColor3=Color3.new(0,0,0)
  6044. _c_b.TextSize=21;ac_b.Name="testframe"ac_b.Parent=_b_b
  6045. ac_b.BackgroundColor3=Color3.new(0.670588,0.670588,0.670588)ac_b.Position=UDim2.new(0.0269681793,0,0.154545456,0)
  6046. ac_b.Size=UDim2.new(0,218,0,232)ac_b.CanvasPosition=Vector2.new(0,116)bc_b.Parent=ac_b
  6047. cc_b.Name="1"cc_b.Parent=ac_b;cc_b.BackgroundColor3=Color3.new(1,1,1)
  6048. cc_b.BackgroundTransparency=1;cc_b.Size=UDim2.new(0,200,0,50)
  6049. cc_b.Font=Enum.Font.Cartoon;cc_b.Text="Birch"cc_b.TextColor3=Color3.new(1,1,1)
  6050. cc_b.TextScaled=true;cc_b.TextSize=14;cc_b.TextWrapped=true;dc_b.Name="2"dc_b.Parent=ac_b
  6051. dc_b.BackgroundColor3=Color3.new(1,1,1)dc_b.BackgroundTransparency=1;dc_b.Size=UDim2.new(0,200,0,50)
  6052. dc_b.Font=Enum.Font.Cartoon;dc_b.Text="nil"dc_b.TextColor3=Color3.new(1,1,1)
  6053. dc_b.TextScaled=true;dc_b.TextSize=14;dc_b.TextWrapped=true;_d_b.Name="3"_d_b.Parent=ac_b
  6054. _d_b.BackgroundColor3=Color3.new(1,1,1)_d_b.BackgroundTransparency=1;_d_b.Size=UDim2.new(0,200,0,50)
  6055. _d_b.Font=Enum.Font.Cartoon;_d_b.Text="Walnut"_d_b.TextColor3=Color3.new(1,1,1)
  6056. _d_b.TextScaled=true;_d_b.TextSize=14;_d_b.TextWrapped=true;ad_b.Name="4"ad_b.Parent=ac_b
  6057. ad_b.BackgroundColor3=Color3.new(1,1,1)ad_b.BackgroundTransparency=1;ad_b.Size=UDim2.new(0,200,0,50)
  6058. ad_b.Font=Enum.Font.Cartoon;ad_b.Text="Generic"ad_b.TextColor3=Color3.new(1,1,1)
  6059. ad_b.TextScaled=true;ad_b.TextSize=14;ad_b.TextWrapped=true;bd_b.Name="5"bd_b.Parent=ac_b
  6060. bd_b.BackgroundColor3=Color3.new(1,1,1)bd_b.BackgroundTransparency=1;bd_b.Size=UDim2.new(0,200,0,50)
  6061. bd_b.Font=Enum.Font.Cartoon;bd_b.Text="Oak"bd_b.TextColor3=Color3.new(1,1,1)
  6062. bd_b.TextScaled=true;bd_b.TextSize=14;bd_b.TextWrapped=true;cd_b.Name="6"cd_b.Parent=ac_b
  6063. cd_b.BackgroundColor3=Color3.new(1,1,1)cd_b.BackgroundTransparency=1;cd_b.Size=UDim2.new(0,200,0,50)
  6064. cd_b.Font=Enum.Font.Cartoon;cd_b.Text="Pine"cd_b.TextColor3=Color3.new(1,1,1)
  6065. cd_b.TextScaled=true;cd_b.TextSize=14;cd_b.TextWrapped=true;dd_b.Name="7"dd_b.Parent=ac_b
  6066. dd_b.BackgroundColor3=Color3.new(1,1,1)dd_b.BackgroundTransparency=1;dd_b.Size=UDim2.new(0,200,0,50)
  6067. dd_b.Font=Enum.Font.Cartoon;dd_b.Text="Palm"dd_b.TextColor3=Color3.new(1,1,1)
  6068. dd_b.TextScaled=true;dd_b.TextSize=14;dd_b.TextWrapped=true;__ab.Name="8"__ab.Parent=ac_b
  6069. __ab.BackgroundColor3=Color3.new(1,1,1)__ab.BackgroundTransparency=1;__ab.Size=UDim2.new(0,200,0,50)
  6070. __ab.Font=Enum.Font.Cartoon;__ab.Text="Koa"__ab.TextColor3=Color3.new(1,1,1)
  6071. __ab.TextScaled=true;__ab.TextSize=14;__ab.TextWrapped=true;a_ab.Name="9"a_ab.Parent=ac_b
  6072. a_ab.BackgroundColor3=Color3.new(1,1,1)a_ab.BackgroundTransparency=1;a_ab.Size=UDim2.new(0,200,0,50)
  6073. a_ab.Font=Enum.Font.Cartoon;a_ab.Text="Volcano"a_ab.TextColor3=Color3.new(1,1,1)
  6074. a_ab.TextScaled=true;a_ab.TextSize=14;a_ab.TextWrapped=true;b_ab.Name="10"b_ab.Parent=ac_b
  6075. b_ab.BackgroundColor3=Color3.new(1,1,1)b_ab.BackgroundTransparency=1;b_ab.Size=UDim2.new(0,200,0,50)
  6076. b_ab.Font=Enum.Font.Cartoon;b_ab.Text="GreenSwampy"b_ab.TextColor3=Color3.new(1,1,1)
  6077. b_ab.TextScaled=true;b_ab.TextSize=14;b_ab.TextWrapped=true;c_ab.Name="11"c_ab.Parent=ac_b
  6078. c_ab.BackgroundColor3=Color3.new(1,1,1)c_ab.BackgroundTransparency=1
  6079. c_ab.Position=UDim2.new(0.0229357798,0,0.00606060587,0)c_ab.Size=UDim2.new(0,200,0,50)
  6080. c_ab.Font=Enum.Font.Cartoon;c_ab.Text="GoldSwampy"c_ab.TextColor3=Color3.new(1,1,1)
  6081. c_ab.TextScaled=true;c_ab.TextSize=14;c_ab.TextWrapped=true;d_ab.Name="12"d_ab.Parent=ac_b
  6082. d_ab.BackgroundColor3=Color3.new(1,1,1)d_ab.BackgroundTransparency=1;d_ab.Size=UDim2.new(0,200,0,50)
  6083. d_ab.Font=Enum.Font.Cartoon;d_ab.Text="GenericSpecial"d_ab.TextColor3=Color3.new(1,1,1)
  6084. d_ab.TextScaled=true;d_ab.TextSize=14;d_ab.TextWrapped=true;_aab.Name="13"_aab.Parent=ac_b
  6085. _aab.BackgroundColor3=Color3.new(1,1,1)_aab.BackgroundTransparency=1;_aab.Size=UDim2.new(0,200,0,50)
  6086. _aab.Font=Enum.Font.Cartoon;_aab.Text="SnowGlow"_aab.TextColor3=Color3.new(1,1,1)
  6087. _aab.TextScaled=true;_aab.TextSize=14;_aab.TextWrapped=true;aaab.Name="14"aaab.Parent=ac_b
  6088. aaab.BackgroundColor3=Color3.new(1,1,1)aaab.BackgroundTransparency=1;aaab.Size=UDim2.new(0,200,0,50)
  6089. aaab.Font=Enum.Font.Cartoon;aaab.Text="Frost"aaab.TextColor3=Color3.new(1,1,1)
  6090. aaab.TextScaled=true;aaab.TextSize=14;aaab.TextWrapped=true;baab.Name="15"baab.Parent=ac_b
  6091. baab.BackgroundColor3=Color3.new(1,1,1)baab.BackgroundTransparency=1;baab.Size=UDim2.new(0,200,0,50)
  6092. baab.Font=Enum.Font.Cartoon;baab.Text="CaveCrawler"baab.TextColor3=Color3.new(1,1,1)
  6093. baab.TextScaled=true;baab.TextSize=14;baab.TextWrapped=true;caab.Name="16"caab.Parent=ac_b
  6094. caab.BackgroundColor3=Color3.new(1,1,1)caab.BackgroundTransparency=1;caab.Size=UDim2.new(0,200,0,50)
  6095. caab.Font=Enum.Font.Cartoon;caab.Text="LoneCave"caab.TextColor3=Color3.new(1,1,1)
  6096. caab.TextScaled=true;caab.TextSize=14;caab.TextWrapped=true;daab.Name="17"daab.Parent=ac_b
  6097. daab.BackgroundColor3=Color3.new(1,1,1)daab.BackgroundTransparency=1;daab.Size=UDim2.new(0,200,0,50)
  6098. daab.Font=Enum.Font.Cartoon;daab.Text="Spooky"daab.TextColor3=Color3.new(1,1,1)
  6099. daab.TextScaled=true;daab.TextSize=14;daab.TextWrapped=true;_bab.Name="18"_bab.Parent=ac_b
  6100. _bab.BackgroundColor3=Color3.new(1,1,1)_bab.BackgroundTransparency=1;_bab.Size=UDim2.new(0,200,0,50)
  6101. _bab.Font=Enum.Font.Cartoon;_bab.Text="SpookyNeon"_bab.TextColor3=Color3.new(1,1,1)
  6102. _bab.TextScaled=true;_bab.TextSize=14;_bab.TextWrapped=true
  6103. function SCRIPT_HYYQ80_FAKESCRIPT()
  6104. local bbab=Instance.new('LocalScript')bbab.Parent=_d_a
  6105. local cbab={0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9,1}
  6106. while wait(.2)do local dbab=bbab.Parent.ImageLabel:clone()
  6107. game.Debris:AddItem(dbab,3)dbab.Parent=bbab.Parent;dbab.Visible=true
  6108. local _cab=cbab[math.random(1,#cbab)]dbab.Position=UDim2.new(_cab,0,1,0,"Out","Quad",1,true)
  6109. dbab:TweenPosition(UDim2.new(_cab,0,
  6110. -1,0),"Out","Quad",1,true)end end
  6111. coroutine.resume(coroutine.create(SCRIPT_HYYQ80_FAKESCRIPT))
  6112. function SCRIPT_TEHT81_FAKESCRIPT()local bbab=Instance.new('LocalScript')
  6113. bbab.Parent=dc_a;repeat wait()until game.Players.LocalPlayer.Character
  6114. local cbab=game.Players.LocalPlayer.Character;local dbab=cbab:WaitForChild("Humanoid")
  6115. local _cab=Instance.new("Sound",bbab.Parent)_cab.SoundId="rbxassetid://408524543"_cab.Volume=1
  6116. 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)
  6117. ccab.SoundId="rbxassetid://452267918"local dcab=bbab.Parent.b2;local _dab=bbab.Parent.b3
  6118. local adab=bbab.Parent.b4;local bdab=bbab.Parent.b5;local cdab=bbab.Parent.b6;local ddab=false;local __bb=false
  6119. local a_bb=bbab.Parent.Border5;local b_bb=bbab.Parent.ferrymenu;local c_bb=bbab.Parent.woods
  6120. local d_bb=bbab.Parent.blueprint;local _abb=bbab.Parent.creditsmenu
  6121. local aabb=Instance.new("BlurEffect",workspace.CurrentCamera)aabb.Size=0
  6122. function bluron()for i=0,20,1 do aabb.Size=i;wait()end end
  6123. function bluroff()for i=20,0,-1 do aabb.Size=i;wait()end end
  6124. dbab.Died:Connect(function()aabb:Destroy()end)
  6125. dcab.MouseButton1Click:Connect(function()ccab:Play()
  6126. if ddab==false then ddab=true
  6127. if
  6128. aabb.Size~=20 then
  6129. local babb=coroutine.create(function()bluron()end)coroutine.resume(babb)end;if __bb==true then __bb=false
  6130. b_bb:TweenPosition(UDim2.new(.35,0,-1,0),"Out","Back",1,true)end
  6131. a_bb:TweenPosition(UDim2.new(.35,0,.15,0),"Out","Back",1,true)elseif ddab==true then ddab=false
  6132. local babb=coroutine.create(function()bluroff()end)coroutine.resume(babb)
  6133. a_bb:TweenPosition(UDim2.new(.35,0,-1,0),"Out","Back",1,true)end end)
  6134. _dab.MouseButton1Click:Connect(function()ccab:Play()
  6135. if ddab==false then ddab=true
  6136. if
  6137. aabb.Size~=20 then
  6138. local babb=coroutine.create(function()bluron()end)coroutine.resume(babb)end;if __bb==true then __bb=false
  6139. b_bb:TweenPosition(UDim2.new(.35,0,-1,0),"Out","Back",1,true)end
  6140. b_bb:TweenPosition(UDim2.new(.35,0,.15,0),"Out","Back",1,true)elseif ddab==true then ddab=false
  6141. local babb=coroutine.create(function()bluroff()end)coroutine.resume(babb)
  6142. b_bb:TweenPosition(UDim2.new(.35,0,-1,0),"Out","Back",1,true)end end)
  6143. adab.MouseButton1Click:Connect(function()ccab:Play()
  6144. if ddab==false then ddab=true
  6145. if
  6146. aabb.Size~=20 then
  6147. local babb=coroutine.create(function()bluron()end)coroutine.resume(babb)end;if __bb==true then __bb=false
  6148. c_bb:TweenPosition(UDim2.new(.35,0,-3,0),"Out","Back",1,true)end
  6149. c_bb:TweenPosition(UDim2.new(.35,0,.15,0),"Out","Back",1,true)elseif ddab==true then ddab=false
  6150. local babb=coroutine.create(function()bluroff()end)coroutine.resume(babb)
  6151. c_bb:TweenPosition(UDim2.new(.35,0,-3,0),"Out","Back",1,true)end end)
  6152. bdab.MouseButton1Click:Connect(function()ccab:Play()
  6153. if ddab==false then ddab=true
  6154. if
  6155. aabb.Size~=20 then
  6156. local babb=coroutine.create(function()bluron()end)coroutine.resume(babb)end;if __bb==true then __bb=false
  6157. d_bb:TweenPosition(UDim2.new(.35,0,-3,0),"Out","Back",1,true)end
  6158. d_bb:TweenPosition(UDim2.new(.35,0,.15,0),"Out","Back",1,true)elseif ddab==true then ddab=false
  6159. local babb=coroutine.create(function()bluroff()end)coroutine.resume(babb)
  6160. d_bb:TweenPosition(UDim2.new(.35,0,-3,0),"Out","Back",1,true)end end)
  6161. cdab.MouseButton1Click:Connect(function()ccab:Play()
  6162. if ddab==false then ddab=true
  6163. if
  6164. aabb.Size~=20 then
  6165. local babb=coroutine.create(function()bluron()end)coroutine.resume(babb)end;if __bb==true then __bb=false
  6166. _abb:TweenPosition(UDim2.new(.35,0,-3,0),"Out","Back",1,true)end
  6167. _abb:TweenPosition(UDim2.new(.35,0,.15,0),"Out","Back",1,true)elseif ddab==true then ddab=false
  6168. local babb=coroutine.create(function()bluroff()end)coroutine.resume(babb)
  6169. _abb:TweenPosition(UDim2.new(.35,0,-3,0),"Out","Back",1,true)end end)
  6170. dcab.MouseEnter:Connect(function()_cab:Play()dcab.TextLabel.TextColor3=Color3.new(255 /255,
  6171. 100 /255,100 /255)
  6172. dcab:TweenSize(UDim2.new(0,165,0,30),"Out","Quad",.2,true)end)
  6173. dcab.MouseLeave:Connect(function()
  6174. dcab.TextLabel.TextColor3=Color3.new(255 /255,255 /255,255 /255)
  6175. dcab:TweenSize(UDim2.new(0,160,0,30),"Out","Quad",.2,true)end)
  6176. _dab.MouseEnter:Connect(function()_cab:Play()_dab.TextLabel.TextColor3=Color3.new(255 /255,
  6177. 100 /255,100 /255)
  6178. _dab:TweenSize(UDim2.new(0,165,0,30),"Out","Quad",.2,true)end)
  6179. _dab.MouseLeave:Connect(function()
  6180. _dab.TextLabel.TextColor3=Color3.new(255 /255,255 /255,255 /255)
  6181. _dab:TweenSize(UDim2.new(0,160,0,30),"Out","Quad",.2,true)end)
  6182. adab.MouseEnter:Connect(function()_cab:Play()adab.TextLabel.TextColor3=Color3.new(255 /255,
  6183. 100 /255,100 /255)
  6184. adab:TweenSize(UDim2.new(0,165,0,30),"Out","Quad",.2,true)end)
  6185. adab.MouseLeave:Connect(function()
  6186. adab.TextLabel.TextColor3=Color3.new(255 /255,255 /255,255 /255)
  6187. adab:TweenSize(UDim2.new(0,160,0,30),"Out","Quad",.2,true)end)
  6188. bdab.MouseEnter:Connect(function()_cab:Play()bdab.TextLabel.TextColor3=Color3.new(255 /255,
  6189. 100 /255,100 /255)
  6190. bdab:TweenSize(UDim2.new(0,165,0,30),"Out","Quad",.2,true)end)
  6191. bdab.MouseLeave:Connect(function()
  6192. bdab.TextLabel.TextColor3=Color3.new(255 /255,255 /255,255 /255)
  6193. bdab:TweenSize(UDim2.new(0,160,0,30),"Out","Quad",.2,true)end)
  6194. cdab.MouseEnter:Connect(function()_cab:Play()cdab.TextLabel.TextColor3=Color3.new(255 /255,
  6195. 100 /255,100 /255)
  6196. cdab:TweenSize(UDim2.new(0,165,0,30),"Out","Quad",.2,true)end)
  6197. cdab.MouseLeave:Connect(function()
  6198. cdab.TextLabel.TextColor3=Color3.new(255 /255,255 /255,255 /255)
  6199. cdab:TweenSize(UDim2.new(0,160,0,30),"Out","Quad",.2,true)end)end
  6200. coroutine.resume(coroutine.create(SCRIPT_TEHT81_FAKESCRIPT))
  6201. function SCRIPT_RJTR66_FAKESCRIPT()local bbab=Instance.new('LocalScript')
  6202. bbab.Parent=abda;local cbab={0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9,1}
  6203. while wait(.2)do
  6204. local dbab=bbab.Parent.ImageLabel:clone()game.Debris:AddItem(dbab,3)dbab.Parent=bbab.Parent
  6205. dbab.Visible=true;local _cab=cbab[math.random(1,#cbab)]
  6206. dbab.Position=UDim2.new(_cab,0,1,0,"Out","Quad",1,true)
  6207. dbab:TweenPosition(UDim2.new(_cab,0,-1,0),"Out","Quad",1,true)end end
  6208. coroutine.resume(coroutine.create(SCRIPT_RJTR66_FAKESCRIPT))
  6209. function SCRIPT_VUYD83_FAKESCRIPT()local bbab=Instance.new('LocalScript')
  6210. bbab.Parent=dbda;local cbab={0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9,1}
  6211. while wait(.2)do
  6212. local dbab=bbab.Parent.ImageLabel:clone()game.Debris:AddItem(dbab,3)dbab.Parent=bbab.Parent
  6213. dbab.Visible=true;local _cab=cbab[math.random(1,#cbab)]
  6214. dbab.Position=UDim2.new(_cab,0,1,0,"Out","Quad",1,true)
  6215. dbab:TweenPosition(UDim2.new(_cab,0,-1,0),"Out","Quad",1,true)end end
  6216. coroutine.resume(coroutine.create(SCRIPT_VUYD83_FAKESCRIPT))
  6217. function SCRIPT_OVKE74_FAKESCRIPT()local bbab=Instance.new('LocalScript')
  6218. bbab.Parent=bcda;local cbab={0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9,1}
  6219. while wait(.2)do
  6220. local dbab=bbab.Parent.ImageLabel:clone()game.Debris:AddItem(dbab,3)dbab.Parent=bbab.Parent
  6221. dbab.Visible=true;local _cab=cbab[math.random(1,#cbab)]
  6222. dbab.Position=UDim2.new(_cab,0,1,0,"Out","Quad",1,true)
  6223. dbab:TweenPosition(UDim2.new(_cab,0,-1,0),"Out","Quad",1,true)end end
  6224. coroutine.resume(coroutine.create(SCRIPT_OVKE74_FAKESCRIPT))
  6225. function SCRIPT_AZJR74_FAKESCRIPT()local bbab=Instance.new('LocalScript')
  6226. bbab.Parent=_dda;local cbab={0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9,1}
  6227. while wait(.2)do
  6228. local dbab=bbab.Parent.ImageLabel:clone()game.Debris:AddItem(dbab,3)dbab.Parent=bbab.Parent
  6229. dbab.Visible=true;local _cab=cbab[math.random(1,#cbab)]
  6230. dbab.Position=UDim2.new(_cab,0,1,0,"Out","Quad",1,true)
  6231. dbab:TweenPosition(UDim2.new(_cab,0,-1,0),"Out","Quad",1,true)end end
  6232. coroutine.resume(coroutine.create(SCRIPT_AZJR74_FAKESCRIPT))
  6233. end)
  6234.  
  6235. exitofmainframe.Name = "exitofmainframe"
  6236. exitofmainframe.Parent = MainFrame
  6237. exitofmainframe.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  6238. exitofmainframe.BorderSizePixel = 0
  6239. exitofmainframe.Position = UDim2.new(0, 299, 0, 4)
  6240. exitofmainframe.Size = UDim2.new(0, 91, 0, 32)
  6241. exitofmainframe.Font = Enum.Font.SciFi
  6242. exitofmainframe.Text = "X"
  6243. exitofmainframe.TextColor3 = Color3.new(1, 0.0313726, 0.921569)
  6244. exitofmainframe.TextSize = 14
  6245. exitofmainframe.MouseButton1Down:connect(function()
  6246. MainFrame.Visible = false
  6247. LoginMainFrame.Visible = false
  6248. end)
  6249.  
  6250. truelol.Name = "truelol"
  6251. truelol.Parent = MainFrame
  6252. truelol.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  6253. truelol.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  6254. truelol.Position = UDim2.new(0, 56, 0, 4)
  6255. truelol.Size = UDim2.new(0, 200, 0, 32)
  6256. truelol.Font = Enum.Font.SciFi
  6257. truelol.Text = "What you actually need"
  6258. truelol.TextColor3 = Color3.new(1, 0.0313726, 0.921569)
  6259. truelol.TextSize = 14
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement