xDavid673x

Hackの呼吸V1.1

May 1st, 2020
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 73.12 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local Hack11 = Instance.new("ScreenGui")
  7. local OpenFrame = Instance.new("Frame")
  8. local Openimage = Instance.new("ImageLabel")
  9. local Openimage2 = Instance.new("ImageLabel")
  10. local Open = Instance.new("TextButton")
  11. local Main = Instance.new("Frame")
  12. local Design = Instance.new("Frame")
  13. local PersonFunction = Instance.new("Frame")
  14. local NoClip = Instance.new("TextButton")
  15. local FindSpook = Instance.new("TextButton")
  16. local MaxLand = Instance.new("TextButton")
  17. local AxeCount = Instance.new("TextButton")
  18. local AxeStore = Instance.new("TextButton")
  19. local AxeRestore = Instance.new("TextButton")
  20. local AllBP = Instance.new("TextButton")
  21. local NoFog = Instance.new("TextButton")
  22. local InfJump = Instance.new("TextButton")
  23. local FreeLand = Instance.new("TextButton")
  24. local ResetCharacter = Instance.new("TextButton")
  25. local AntiBLAll = Instance.new("TextButton")
  26. local Speed = Instance.new("Frame")
  27. local Speed_2 = Instance.new("TextButton")
  28. local SpeedTextBox = Instance.new("TextBox")
  29. local Fly = Instance.new("TextButton")
  30. local FlyTextBox = Instance.new("TextBox")
  31. local Jump = Instance.new("TextButton")
  32. local JumpTextbox = Instance.new("TextBox")
  33. local Lumber = Instance.new("TextLabel")
  34. local Design_2 = Instance.new("Frame")
  35. local wood = Instance.new("Frame")
  36. local SellWood = Instance.new("TextButton")
  37. local SellPlank = Instance.new("TextButton")
  38. local RemoveTree = Instance.new("TextButton")
  39. local WoodList = Instance.new("TextLabel")
  40. local Icewood = Instance.new("ImageButton")
  41. local SnowGlowWood = Instance.new("ImageButton")
  42. local Bluewood = Instance.new("ImageButton")
  43. local Cherry = Instance.new("ImageButton")
  44. local pine = Instance.new("ImageButton")
  45. local Koa = Instance.new("ImageButton")
  46. local Amount = Instance.new("TextLabel")
  47. local GreenSwampy = Instance.new("ImageButton")
  48. local WoodTextBox = Instance.new("TextBox")
  49. local Palm = Instance.new("ImageButton")
  50. local oak = Instance.new("ImageButton")
  51. local Spook = Instance.new("ImageButton")
  52. local Gerenic = Instance.new("ImageButton")
  53. local Redwood = Instance.new("ImageButton")
  54. local walnut = Instance.new("ImageButton")
  55. local Brich = Instance.new("ImageButton")
  56. local Sinister = Instance.new("ImageButton")
  57. local GoldSwampy = Instance.new("ImageButton")
  58. local ModWood = Instance.new("TextButton")
  59. local Car = Instance.new("Frame")
  60. local SpawnPinkcar = Instance.new("TextButton")
  61. local RotateCar = Instance.new("TextButton")
  62. local NoClipCarTree = Instance.new("TextButton")
  63. local CarSpeed = Instance.new("TextButton")
  64. local CarSpeedTextBox = Instance.new("TextBox")
  65. local HUB = Instance.new("Frame")
  66. local HUB_2 = Instance.new("TextLabel")
  67. local Design_3 = Instance.new("Frame")
  68. local xDavid673x2696 = Instance.new("TextLabel")
  69. local Credits = Instance.new("TextLabel")
  70. local Help = Instance.new("TextLabel")
  71. local SemeleTV4177 = Instance.new("TextLabel")
  72. local xTheAlex143200 = Instance.new("TextLabel")
  73. local Destroy = Instance.new("TextButton")
  74. local Zypher = Instance.new("TextButton")
  75. local Shift = Instance.new("TextLabel")
  76. local Close = Instance.new("TextButton")
  77. local SpeedButton = Instance.new("TextButton")
  78. local MainFunction = Instance.new("TextButton")
  79. local Car_2 = Instance.new("TextButton")
  80. local wood_2 = Instance.new("TextButton")
  81. local HUB_3 = Instance.new("TextButton")
  82. local Dupe = Instance.new("TextButton")
  83. local Dupe_2 = Instance.new("Frame")
  84. local LoadSlot = Instance.new("TextButton")
  85. local Dupemoney = Instance.new("TextButton")
  86. local SaveSlot = Instance.new("TextButton")
  87. local SlotTextbox = Instance.new("TextBox")
  88. local SlotHere = Instance.new("TextLabel")
  89. local ModWoodFrame = Instance.new("Frame")
  90. local Teaching = Instance.new("TextLabel")
  91. local CloseModwood = Instance.new("TextButton")
  92. local Mod = Instance.new("TextLabel")
  93. local Tree = Instance.new("TextLabel")
  94. local wood_3 = Instance.new("TextLabel")
  95. local GoldSwampy_2 = Instance.new("ImageButton")
  96. local VirgoPH_Roundify_12px = Instance.new("ImageLabel")
  97. local Hack = Instance.new("TextLabel")
  98. local MoneyCooldown = false
  99. local CurrentSlot = game.Players.LocalPlayer:WaitForChild("CurrentSaveSlot").Value
  100. local ScriptLoadOrSave = false
  101. local CurrentlySavingOrLoading = game.Players.LocalPlayer:WaitForChild("CurrentlySavingOrLoading")
  102. local function CheckSlotNumber() --Checks if the slot number is right
  103. if SlotTextbox.Text == "1" or SlotTextbox.Text == "2" or SlotTextbox.Text == "3" or SlotTextbox.Text == "4" or SlotTextbox.Text == "5" or SlotTextbox.Text == "6" then
  104. local SlotNumber = tonumber(SlotTextbox.Text)
  105. return SlotNumber
  106. else return false
  107. end
  108. end
  109. local function SendNotification(title,text,duration,...)
  110. game.StarterGui:SetCore("SendNotification", {
  111. Title = title;
  112. Text = text;
  113. Icon = "";
  114. Duration = duration;
  115. })
  116. end
  117. local function CheckIfSlotAvailable(Slot)
  118. for a,b in pairs(game.ReplicatedStorage.LoadSaveRequests.GetMetaData:InvokeServer(game.Players.LocalPlayer)) do
  119. if a == Slot then
  120. for c,d in pairs(b) do
  121. if c == "NumSaves" and d ~= 0 then
  122. return true
  123. else
  124. return false
  125. end
  126. end
  127. end
  128. end
  129. end
  130. local Player = game.Players.LocalPlayer
  131.  
  132. --Properties:
  133.  
  134. Hack11.Name = "Hackの呼吸•壱の型 改 1.1"
  135. Hack11.Parent = game.CoreGui
  136.  
  137. OpenFrame.Name = "OpenFrame"
  138. OpenFrame.Parent = Hack11
  139. OpenFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  140. OpenFrame.BackgroundTransparency = 1.000
  141. OpenFrame.BorderSizePixel = 0
  142. OpenFrame.Position = UDim2.new(0.0145513415, 0, 0.909082472, 0)
  143. OpenFrame.Size = UDim2.new(0, 79, 0, 37)
  144. OpenFrame.Draggable = true
  145.  
  146. Openimage.Name = "Open image"
  147. Openimage.Parent = OpenFrame
  148. Openimage.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  149. Openimage.BackgroundTransparency = 1.000
  150. Openimage.Position = UDim2.new(-0.101265818, 0, -0.108108103, 0)
  151. Openimage.Size = UDim2.new(0, 118, 0, 53)
  152. Openimage.Image = "rbxassetid://3570695787"
  153. Openimage.ImageColor3 = Color3.fromRGB(48, 29, 255)
  154. Openimage.ScaleType = Enum.ScaleType.Slice
  155. Openimage.SliceCenter = Rect.new(100, 100, 100, 100)
  156. Openimage.SliceScale = 0.120
  157.  
  158. Openimage2.Name = "Open image 2"
  159. Openimage2.Parent = OpenFrame
  160. Openimage2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  161. Openimage2.BackgroundTransparency = 1.000
  162. Openimage2.Position = UDim2.new(0, 0, -0.297297299, 0)
  163. Openimage2.Size = UDim2.new(0, 118, 0, 53)
  164. Openimage2.Image = "rbxassetid://3570695787"
  165. Openimage2.ImageColor3 = Color3.fromRGB(0, 0, 182)
  166. Openimage2.ScaleType = Enum.ScaleType.Slice
  167. Openimage2.SliceCenter = Rect.new(100, 100, 100, 100)
  168. Openimage2.SliceScale = 0.120
  169.  
  170. Open.Name = "Open"
  171. Open.Parent = OpenFrame
  172. Open.BackgroundColor3 = Color3.fromRGB(0, 0, 182)
  173. Open.BorderSizePixel = 0
  174. Open.Position = UDim2.new(0.164556861, 0, -0.0540540218, 0)
  175. Open.Size = UDim2.new(0, 92, 0, 35)
  176. Open.Text = "Open"
  177. Open.TextColor3 = Color3.fromRGB(0, 0, 0)
  178. Open.TextScaled = true
  179. Open.TextSize = 14.000
  180. Open.TextWrapped = true
  181. Open.MouseButton1Down:connect(function()
  182. Main.Visible = true
  183. OpenFrame.Visible = false
  184. end)
  185.  
  186. Main.Name = "Main"
  187. Main.Parent = Hack11
  188. Main.Active = true
  189. Main.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  190. Main.BorderColor3 = Color3.fromRGB(64, 255, 6)
  191. Main.BorderSizePixel = 14
  192. Main.Position = UDim2.new(0.567501903, 0, 0.176644236, 0)
  193. Main.Size = UDim2.new(0, 446, 0, 265)
  194. Main.Visible = false
  195. Main.Draggable = true
  196.  
  197. Design.Name = "Design"
  198. Design.Parent = Main
  199. Design.BackgroundColor3 = Color3.fromRGB(33, 62, 255)
  200. Design.BorderSizePixel = 0
  201. Design.Position = UDim2.new(0.134529144, 0, 0, 0)
  202. Design.Size = UDim2.new(0, 7, 0, 265)
  203.  
  204. PersonFunction.Name = "Person Function"
  205. PersonFunction.Parent = Main
  206. PersonFunction.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  207. PersonFunction.Position = UDim2.new(0.150224209, 0, 0.150943398, 0)
  208. PersonFunction.Size = UDim2.new(0, 379, 0, 225)
  209. PersonFunction.Visible = false
  210.  
  211. NoClip.Name = "NoClip"
  212. NoClip.Parent = PersonFunction
  213. NoClip.BackgroundColor3 = Color3.fromRGB(49, 221, 255)
  214. NoClip.BorderColor3 = Color3.fromRGB(59, 255, 0)
  215. NoClip.BorderSizePixel = 5
  216. NoClip.Position = UDim2.new(0.0715773329, 0, 0.163438052, 0)
  217. NoClip.Size = UDim2.new(0, 52, 0, 27)
  218. NoClip.Font = Enum.Font.GothamSemibold
  219. NoClip.Text = "NoClip"
  220. NoClip.TextColor3 = Color3.fromRGB(0,0,0)
  221. NoClip.TextScaled = true
  222. NoClip.TextSize = 12.000
  223. NoClip.TextWrapped = true
  224. _G.noclip = false
  225. game:GetService('RunService').Stepped:connect(function()
  226. if noclip then
  227. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  228. NoClip.TextColor3 = Color3.fromRGB(255, 0, 0)
  229. end
  230. end)
  231. NoClip.MouseButton1Down:connect(function()
  232. noclip = not noclip
  233. NoClip.TextColor3 = Color3.fromRGB(0,0,0)
  234. end)
  235.  
  236. FindSpook.Name = "Find Spook"
  237. FindSpook.Parent = PersonFunction
  238. FindSpook.BackgroundColor3 = Color3.fromRGB(49, 221, 255)
  239. FindSpook.BorderColor3 = Color3.fromRGB(59, 255, 0)
  240. FindSpook.BorderSizePixel = 5
  241. FindSpook.Position = UDim2.new(0.310510159, 0, 0.163438052, 0)
  242. FindSpook.Size = UDim2.new(0, 52, 0, 27)
  243. FindSpook.Font = Enum.Font.GothamSemibold
  244. FindSpook.Text = "Find Spook"
  245. FindSpook.TextColor3 = Color3.fromRGB(0, 0, 0)
  246. FindSpook.TextScaled = true
  247. FindSpook.TextSize = 12.000
  248. FindSpook.TextWrapped = true
  249. FindSpook.MouseButton1Click:connect(function()
  250. function notif(t1, text)
  251. local gui = game:GetService("Players").LocalPlayer.PlayerGui.OnboardingGUI.Onboarding
  252. gui.Main.Heading.Text = t1
  253. gui.Main.Heading.DropShadow.Text = t1
  254. gui.Main.BodyText.Text = text
  255. gui.Visible = true
  256. end
  257. local tree = false
  258. notif("Finder", "Searching for Spook Tree")
  259. wait(0.5)
  260. notif("Finder", "Searching for Spook Tree")
  261. wait(0.5)
  262. notif("Finder", "Searching for Spook Tree")
  263. for i, v in ipairs(game.Workspace:GetChildren()) do
  264. if v.Name == "TreeRegion" then
  265. for j, k in ipairs(v:GetChildren()) do
  266. if k:FindFirstChild("TreeClass") ~= nil and k.TreeClass.Value == "Spooky" then
  267. game.Players.LocalPlayer.Character:MoveTo(k.WoodSection.Position)
  268. notif("Finder", "Found Spook tree!")
  269. tree = true
  270. break
  271. else
  272. notif("Finder", "No Spook trees found.")
  273. end
  274. end
  275. end
  276. end
  277. if tree == false then
  278. wait(0.5)
  279. notif("Finder", "No Spook trees found.")
  280. wait(0.5)
  281. notif("Finder", "No Spook trees found.")
  282. wait(0.5)
  283. notif("Finder", "No Spook trees found.")
  284. wait(0.5)
  285. notif("Finder", "No Spook trees found.")
  286. elseif tree == true then
  287. wait(0.5)
  288. notif("Finder", "Found Spook tree!")
  289. wait(0.5)
  290. notif("Finder", "Found Spook tree!")
  291. wait(0.5)
  292. notif("Finder", "Found Spook tree!")
  293. wait(0.5)
  294. notif("Finder", "Found Spook tree!")
  295. end
  296. if tree == false then
  297. notif("Finder", "No Spook trees found.")
  298. elseif tree == true then
  299. notif("Finder", "Found Spook tree!")
  300. end
  301. end)
  302.  
  303. MaxLand.Name = "Max Land"
  304. MaxLand.Parent = PersonFunction
  305. MaxLand.BackgroundColor3 = Color3.fromRGB(49, 221, 255)
  306. MaxLand.BorderColor3 = Color3.fromRGB(59, 255, 0)
  307. MaxLand.BorderSizePixel = 5
  308. MaxLand.Position = UDim2.new(0.555064976, 0, 0.163438052, 0)
  309. MaxLand.Size = UDim2.new(0, 52, 0, 27)
  310. MaxLand.Font = Enum.Font.GothamSemibold
  311. MaxLand.Text = "Max Land"
  312. MaxLand.TextColor3 = Color3.fromRGB(0, 0, 0)
  313. MaxLand.TextScaled = true
  314. MaxLand.TextSize = 12.000
  315. MaxLand.TextWrapped = true
  316. MaxLand.MouseButton1Down:Connect(function()
  317. for i, v in pairs(game:GetService("Workspace").Properties:GetChildren()) do
  318. if v:FindFirstChild("Owner") and v.Owner.Value == game.Players.LocalPlayer then
  319. base = v
  320. square = v.OriginSquare
  321. end
  322. end
  323. function makebase(pos)
  324. local Event = game:GetService("ReplicatedStorage").PropertyPurchasing.ClientExpandedProperty
  325. Event:FireServer(base, pos)
  326. end
  327. spos = square.Position
  328. makebase(CFrame.new(spos.X + 40, spos.Y, spos.Z))
  329. makebase(CFrame.new(spos.X - 40, spos.Y, spos.Z))
  330. makebase(CFrame.new(spos.X, spos.Y, spos.Z + 40))
  331. makebase(CFrame.new(spos.X, spos.Y, spos.Z - 40))
  332. makebase(CFrame.new(spos.X + 40, spos.Y, spos.Z + 40))
  333. makebase(CFrame.new(spos.X + 40, spos.Y, spos.Z - 40))
  334. makebase(CFrame.new(spos.X - 40, spos.Y, spos.Z + 40))
  335. makebase(CFrame.new(spos.X - 40, spos.Y, spos.Z - 40))
  336. makebase(CFrame.new(spos.X + 80, spos.Y, spos.Z))
  337. makebase(CFrame.new(spos.X - 80, spos.Y, spos.Z))
  338. makebase(CFrame.new(spos.X, spos.Y, spos.Z + 80))
  339. makebase(CFrame.new(spos.X, spos.Y, spos.Z - 80))
  340. --Corners--
  341. makebase(CFrame.new(spos.X + 80, spos.Y, spos.Z + 80))
  342. makebase(CFrame.new(spos.X + 80, spos.Y, spos.Z - 80))
  343. makebase(CFrame.new(spos.X - 80, spos.Y, spos.Z + 80))
  344. makebase(CFrame.new(spos.X - 80, spos.Y, spos.Z - 80))
  345. --Corners--
  346. makebase(CFrame.new(spos.X + 40, spos.Y, spos.Z + 80))
  347. makebase(CFrame.new(spos.X - 40, spos.Y, spos.Z + 80))
  348. makebase(CFrame.new(spos.X + 80, spos.Y, spos.Z + 40))
  349. makebase(CFrame.new(spos.X + 80, spos.Y, spos.Z - 40))
  350. makebase(CFrame.new(spos.X - 80, spos.Y, spos.Z + 40))
  351. makebase(CFrame.new(spos.X - 80, spos.Y, spos.Z - 40))
  352. makebase(CFrame.new(spos.X + 40, spos.Y, spos.Z - 80))
  353. makebase(CFrame.new(spos.X - 40, spos.Y, spos.Z - 80))
  354.  
  355. end)
  356.  
  357. AxeCount.Name = "Axe Count"
  358. AxeCount.Parent = PersonFunction
  359. AxeCount.BackgroundColor3 = Color3.fromRGB(49, 221, 255)
  360. AxeCount.BorderColor3 = Color3.fromRGB(59, 255, 0)
  361. AxeCount.BorderSizePixel = 5
  362. AxeCount.Position = UDim2.new(0.0710426793, 0, 0.443438053, 0)
  363. AxeCount.Size = UDim2.new(0, 52, 0, 27)
  364. AxeCount.Font = Enum.Font.GothamSemibold
  365. AxeCount.Text = "Axe Count"
  366. AxeCount.TextColor3 = Color3.fromRGB(0, 0, 0)
  367. AxeCount.TextScaled = true
  368. AxeCount.TextSize = 12.000
  369. AxeCount.TextWrapped = true
  370. AxeCount.MouseButton1Down:connect(function() --Counts Axes in your Backpack (Equiped Axes dont Count)
  371. Amount = 0
  372. for a,b in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  373. if b.Name ~= "BlueprintTool" and b.Name == "Tool" then
  374. Amount = Amount + 1
  375. end
  376. end
  377. SendNotification("Axe Amount", "You have "..Amount.." Axes in your Backpack",2)
  378. end)
  379.  
  380. AxeStore.Name = "Axe Store"
  381. AxeStore.Parent = PersonFunction
  382. AxeStore.BackgroundColor3 = Color3.fromRGB(49, 221, 255)
  383. AxeStore.BorderColor3 = Color3.fromRGB(59, 255, 0)
  384. AxeStore.BorderSizePixel = 5
  385. AxeStore.Position = UDim2.new(0.309044361, 0, 0.439882547, 0)
  386. AxeStore.Size = UDim2.new(0, 52, 0, 27)
  387. AxeStore.Font = Enum.Font.GothamSemibold
  388. AxeStore.Text = "Axe Store"
  389. AxeStore.TextColor3 = Color3.fromRGB(0, 0, 0)
  390. AxeStore.TextScaled = true
  391. AxeStore.TextSize = 12.000
  392. AxeStore.TextWrapped = true
  393. AxeStore.MouseButton1Down:connect(function() --Stores the Axes somewhere so you can restore them later
  394. Amount = 0
  395. for a,b in pairs(game.Players.LocalPlayer.Backpack:GetChildren())do
  396. if b.Name ~= "BlueprintTool" and b.Name == "Tool" then
  397. b.Parent = game.Players.LocalPlayer
  398. Amount = Amount + 1
  399. end
  400. end
  401. SendNotification("Store Notification", "Stored "..Amount.." Axes, you can restore them later", 2)
  402. end)
  403.  
  404. AxeRestore.Name = "Axe Restore"
  405. AxeRestore.Parent = PersonFunction
  406. AxeRestore.BackgroundColor3 = Color3.fromRGB(49, 221, 255)
  407. AxeRestore.BorderColor3 = Color3.fromRGB(59, 255, 0)
  408. AxeRestore.BorderSizePixel = 5
  409. AxeRestore.Position = UDim2.new(0.553254187, 0, 0.439882547, 0)
  410. AxeRestore.Size = UDim2.new(0, 52, 0, 27)
  411. AxeRestore.Font = Enum.Font.GothamSemibold
  412. AxeRestore.Text = "Axe Restore"
  413. AxeRestore.TextColor3 = Color3.fromRGB(0, 0, 0)
  414. AxeRestore.TextScaled = true
  415. AxeRestore.TextSize = 12.000
  416. AxeRestore.TextWrapped = true
  417. AxeRestore.MouseButton1Down:connect(function() --Restores the axes that you stored with the Store function
  418. Amount = 0
  419. for a,b in pairs(game.Players.LocalPlayer:GetChildren()) do
  420. if b.Name ~= "BlueprintTool" and b.Name == "Tool" then
  421. b.Parent = game.Players.LocalPlayer.Backpack
  422. Amount = Amount + 1
  423. end
  424. end
  425. SendNotification("Restore Notification", "Restored "..Amount.." Axes that you Stored", 2)
  426. end)
  427.  
  428. AllBP.Name = "All BP"
  429. AllBP.Parent = PersonFunction
  430. AllBP.BackgroundColor3 = Color3.fromRGB(49, 221, 255)
  431. AllBP.BorderColor3 = Color3.fromRGB(59, 255, 0)
  432. AllBP.BorderSizePixel = 5
  433. AllBP.Position = UDim2.new(0.0695768818, 0, 0.715438128, 0)
  434. AllBP.Size = UDim2.new(0, 52, 0, 27)
  435. AllBP.Font = Enum.Font.GothamSemibold
  436. AllBP.Text = "All BP"
  437. AllBP.TextColor3 = Color3.fromRGB(0, 0, 0)
  438. AllBP.TextScaled = true
  439. AllBP.TextSize = 12.000
  440. AllBP.TextWrapped = true
  441. AllBP.MouseButton1Click:Connect(function()
  442. for i,v in pairs(game.ReplicatedStorage.Purchasables.Structures.BlueprintStructures:GetChildren()) do
  443. local clone = v:Clone()
  444. clone.Parent = game.Players.LocalPlayer.PlayerBlueprints.Blueprints
  445. end
  446. end)
  447.  
  448. NoFog.Name = "No Fog"
  449. NoFog.Parent = PersonFunction
  450. NoFog.BackgroundColor3 = Color3.fromRGB(49, 221, 255)
  451. NoFog.BorderColor3 = Color3.fromRGB(59, 255, 0)
  452. NoFog.BorderSizePixel = 5
  453. NoFog.Position = UDim2.new(0.308509737, 0, 0.715438128, 0)
  454. NoFog.Size = UDim2.new(0, 52, 0, 27)
  455. NoFog.Font = Enum.Font.GothamSemibold
  456. NoFog.Text = "No Fog"
  457. NoFog.TextColor3 = Color3.fromRGB(0, 0, 0)
  458. NoFog.TextScaled = true
  459. NoFog.TextSize = 12.000
  460. NoFog.TextWrapped = true
  461. NoFog.MouseButton1Down:connect(function()
  462. --Fog.BackgroundColor3 = Color3.new(0, 0, 0)
  463. NoFog.TextColor3 = Color3.new(255, 0, 0)
  464. game.Lighting.Changed:connect(function()
  465. game.Lighting.TimeOfDay = "12:00:00"
  466. game.Lighting.FogEnd = 9999
  467. game.Lighting.Brightness = 2
  468. end)
  469. end)
  470.  
  471. InfJump.Name = "InfJump"
  472. InfJump.Parent = PersonFunction
  473. InfJump.BackgroundColor3 = Color3.fromRGB(49, 221, 255)
  474. InfJump.BorderColor3 = Color3.fromRGB(59, 255, 0)
  475. InfJump.BorderSizePixel = 5
  476. InfJump.Position = UDim2.new(0.553254187, 0, 0.715438128, 0)
  477. InfJump.Size = UDim2.new(0, 52, 0, 27)
  478. InfJump.Font = Enum.Font.GothamSemibold
  479. InfJump.Text = "InfJump"
  480. InfJump.TextColor3 = Color3.fromRGB(0, 0, 0)
  481. InfJump.TextScaled = true
  482. InfJump.TextSize = 10.000
  483. InfJump.TextWrapped = true
  484. local toggle = false
  485. InfJump.MouseButton1Click:Connect(function()
  486. toggle = not toggle
  487. InfJump.TextColor3 = (toggle and Color3.fromRGB(255, 0, 0) or Color3.fromRGB(0, 0, 0))
  488. if toggle then
  489. InfiniteJumpEnabled = true
  490. game:GetService("UserInputService").JumpRequest:connect(function()
  491. if InfiniteJumpEnabled then
  492. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  493. InfiniteJumpEnabled = true
  494. end
  495. end)
  496.  
  497. else
  498. InfiniteJumpEnabled = false
  499. game:GetService("UserInputService").JumpRequest:connect(function()
  500. if InfiniteJumpEnabled then
  501. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  502.  
  503. end
  504. end)
  505. end
  506. end)
  507.  
  508.  
  509. FreeLand.Name = "Free Land"
  510. FreeLand.Parent = PersonFunction
  511. FreeLand.BackgroundColor3 = Color3.fromRGB(49, 221, 255)
  512. FreeLand.BorderColor3 = Color3.fromRGB(59, 255, 0)
  513. FreeLand.BorderSizePixel = 5
  514. FreeLand.Position = UDim2.new(0.789893508, 0, 0.163438052, 0)
  515. FreeLand.Size = UDim2.new(0, 52, 0, 27)
  516. FreeLand.Font = Enum.Font.GothamSemibold
  517. FreeLand.Text = "Free Land"
  518. FreeLand.TextColor3 = Color3.fromRGB(0, 0, 0)
  519. FreeLand.TextScaled = true
  520. FreeLand.TextSize = 12.000
  521. FreeLand.TextWrapped = true
  522. FreeLand.MouseButton1Click:connect(function()
  523. if Player.OwnsProperty.Value == false then
  524. for i,v in pairs(game.Workspace.Properties:GetChildren()) do
  525. if v:FindFirstChild('Owner') and v.Owner.Value == nil then
  526. Base = v
  527. Square = v.OriginSquare
  528. Plot = CFrame.new(v.OriginSquare.CFrame.x, v.OriginSquare.CFrame.y +3.5, v.OriginSquare.CFrame.z)
  529. end
  530. end
  531. Pos = Square.Position
  532. game.ReplicatedStorage.PropertyPurchasing.ClientPurchasedProperty:FireServer(Base, Pos)
  533. wait()
  534. game.Players.LocalPlayer.Character.Humanoid.Jump = true
  535. wait(0.1)
  536. local New_CFrame = Plot
  537. local ts = game:GetService("TweenService")
  538. local char = game.Players.LocalPlayer.Character
  539. local part = char.HumanoidRootPart
  540. local ti = TweenInfo.new(4, Enum.EasingStyle.Linear)
  541. local tp = {CFrame = New_CFrame}
  542. ts:Create(part, ti, tp):Play()
  543. end
  544. end)
  545.  
  546. ResetCharacter.Name = "Reset Character"
  547. ResetCharacter.Parent = PersonFunction
  548. ResetCharacter.BackgroundColor3 = Color3.fromRGB(49, 221, 255)
  549. ResetCharacter.BorderColor3 = Color3.fromRGB(59, 255, 0)
  550. ResetCharacter.BorderSizePixel = 5
  551. ResetCharacter.Position = UDim2.new(0.788082719, 0, 0.439882547, 0)
  552. ResetCharacter.Size = UDim2.new(0, 52, 0, 27)
  553. ResetCharacter.Font = Enum.Font.GothamSemibold
  554. ResetCharacter.Text = "Reset Character"
  555. ResetCharacter.TextColor3 = Color3.fromRGB(0, 0, 0)
  556. ResetCharacter.TextScaled = true
  557. ResetCharacter.TextSize = 12.000
  558. ResetCharacter.TextWrapped = true
  559. ResetCharacter.MouseButton1Click:connect(function()
  560. game.Players.LocalPlayer.Character.Head:Destroy()
  561. end)
  562.  
  563. AntiBLAll.Name = "AntiBLAll"
  564. AntiBLAll.Parent = PersonFunction
  565. AntiBLAll.BackgroundColor3 = Color3.fromRGB(49, 221, 255)
  566. AntiBLAll.BorderColor3 = Color3.fromRGB(59, 255, 0)
  567. AntiBLAll.BorderSizePixel = 5
  568. AntiBLAll.Position = UDim2.new(0.788082719, 0, 0.715438128, 0)
  569. AntiBLAll.Size = UDim2.new(0, 52, 0, 27)
  570. AntiBLAll.Font = Enum.Font.GothamSemibold
  571. AntiBLAll.Text = "BL All"
  572. AntiBLAll.TextColor3 = Color3.fromRGB(0, 0, 0)
  573. AntiBLAll.TextScaled = true
  574. AntiBLAll.TextSize = 12.000
  575. AntiBLAll.TextWrapped = true
  576. AntiBLAll.MouseButton1Click:Connect(function()
  577. Client = game.ReplicatedStorage.Interaction.ClientSetListPlayer
  578. players = game.Players
  579. for i, v in pairs(players:GetPlayers()) do
  580. if v.Name ~= players.LocalPlayer.Name then
  581. Client:InvokeServer(players.LocalPlayer.BlacklistFolder, v, true)
  582. end
  583. end
  584. players.PlayerAdded:connect(function(plr)
  585. Client:InvokeServer(players.LocalPlayer.BlacklistFolder, plr, true)
  586. end)
  587. end)
  588.  
  589. Speed.Name = "Speed"
  590. Speed.Parent = Main
  591. Speed.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  592. Speed.Position = UDim2.new(0.150224209, 0, 0.150943398, 0)
  593. Speed.Size = UDim2.new(0, 379, 0, 225)
  594. Speed.Visible = false
  595.  
  596. SpeedTextBox.Name = "SpeedTextBox"
  597. SpeedTextBox.Parent = Speed
  598. SpeedTextBox.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  599. SpeedTextBox.BorderColor3 = Color3.fromRGB(59, 255, 0)
  600. SpeedTextBox.BorderSizePixel = 7
  601. SpeedTextBox.Position = UDim2.new(0.332743734, 0, 0.261299819, 0)
  602. SpeedTextBox.Size = UDim2.new(0, 48, 0, 38)
  603. SpeedTextBox.PlaceholderColor3 = Color3.fromRGB(82, 255, 35)
  604. SpeedTextBox.PlaceholderText = "16"
  605. SpeedTextBox.Text = ""
  606. SpeedTextBox.TextColor3 = Color3.fromRGB(91, 255, 3)
  607. SpeedTextBox.TextSize = 14.000
  608.  
  609. Speed_2.Name = "Speed"
  610. Speed_2.Parent = Speed
  611. Speed_2.BackgroundColor3 = Color3.fromRGB(49, 221, 255)
  612. Speed_2.BorderColor3 = Color3.fromRGB(59, 255, 0)
  613. Speed_2.BorderSizePixel = 7
  614. Speed_2.Position = UDim2.new(0.0715773106, 0, 0.261299819, 0)
  615. Speed_2.Size = UDim2.new(0, 73, 0, 38)
  616. Speed_2.Font = Enum.Font.GothamSemibold
  617. Speed_2.Text = "Speed Up"
  618. Speed_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  619. Speed_2.TextScaled = true
  620. Speed_2.TextSize = 12.000
  621. Speed_2.TextWrapped = true
  622. Speed_2.MouseButton1Down:connect(function()
  623. game:GetService("RunService").RenderStepped:connect(function()
  624. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = tonumber(SpeedTextBox.Text)
  625. end)
  626. end)
  627.  
  628. FlyTextBox.Name = "Fly TextBox"
  629. FlyTextBox.Parent = Speed
  630. FlyTextBox.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  631. FlyTextBox.BorderColor3 = Color3.fromRGB(59, 255, 0)
  632. FlyTextBox.BorderSizePixel = 7
  633. FlyTextBox.Position = UDim2.new(0.564933717, 0, 0.572327077, 0)
  634. FlyTextBox.Size = UDim2.new(0, 48, 0, 38)
  635. FlyTextBox.PlaceholderColor3 = Color3.fromRGB(82, 255, 35)
  636. FlyTextBox.PlaceholderText = "100"
  637. FlyTextBox.Text = ""
  638. FlyTextBox.TextColor3 = Color3.fromRGB(91, 255, 3)
  639. FlyTextBox.TextSize = 14.000
  640.  
  641. Fly.Name = "Fly "
  642. Fly.Parent = Speed
  643. Fly.BackgroundColor3 = Color3.fromRGB(49, 221, 255)
  644. Fly.BorderColor3 = Color3.fromRGB(59, 255, 0)
  645. Fly.BorderSizePixel = 7
  646. Fly.Position = UDim2.new(0.303767264, 0, 0.572327077, 0)
  647. Fly.Size = UDim2.new(0, 73, 0, 38)
  648. Fly.Font = Enum.Font.GothamSemibold
  649. Fly.Text = "Fly (X)"
  650. Fly.TextColor3 = Color3.fromRGB(0, 0, 0)
  651. Fly.TextSize = 20.000
  652. Fly.TextWrapped = true
  653. Fly.MouseButton1Down:connect(function()
  654. repeat wait()
  655. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  656. local mouse = game.Players.LocalPlayer:GetMouse()
  657. repeat wait() until mouse
  658. local plr = game.Players.LocalPlayer
  659. local torso = plr.Character.Torso
  660. local flying = true
  661. local deb = true
  662. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  663. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  664. local maxspeed = 999999
  665. local speed = 0
  666.  
  667. function Fly()
  668. local bg = Instance.new("BodyGyro", torso)
  669. bg.P = 9e4
  670. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  671. bg.cframe = torso.CFrame
  672. local bv = Instance.new("BodyVelocity", torso)
  673. bv.velocity = Vector3.new(0,0.1,0)
  674. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  675. repeat wait()
  676. plr.Character.Humanoid.PlatformStand = true
  677. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  678. speed = speed+.5+(speed/maxspeed)
  679. if speed > maxspeed then
  680. speed = maxspeed
  681. end
  682. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  683. speed = speed-1
  684. if speed < 0 then
  685. speed = 0
  686. end
  687. end
  688. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  689. 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
  690. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  691. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  692. 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
  693. else
  694. bv.velocity = Vector3.new(0,0.1,0)
  695. end
  696. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  697. until not flying
  698. ctrl = {f = 0, b = 0, l = 0, r = 0}
  699. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  700. speed = 0
  701. bg:Destroy()
  702. bv:Destroy()
  703. plr.Character.Humanoid.PlatformStand = false
  704. end
  705. mouse.KeyDown:connect(function(key)
  706. if key:lower() == "x" then
  707. if flying then flying = false
  708. else
  709. flying = true
  710. Fly()
  711. end
  712. elseif key:lower() == "w" then
  713. ctrl.f = 1
  714. elseif key:lower() == "s" then
  715. ctrl.b = -1
  716. elseif key:lower() == "a" then
  717. ctrl.l = -1
  718. elseif key:lower() == "d" then
  719. ctrl.r = 1
  720. end
  721. end)
  722. mouse.KeyUp:connect(function(key)
  723. if key:lower() == "w" then
  724. ctrl.f = 0
  725. elseif key:lower() == "s" then
  726. ctrl.b = 0
  727. elseif key:lower() == "a" then
  728. ctrl.l = 0
  729. elseif key:lower() == "d" then
  730. ctrl.r = 0
  731. end
  732. end)
  733. Fly()
  734. end)
  735.  
  736. JumpTextbox.Name = "JumpTextbox"
  737. JumpTextbox.Parent = Speed
  738. JumpTextbox.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  739. JumpTextbox.BorderColor3 = Color3.fromRGB(59, 255, 0)
  740. JumpTextbox.BorderSizePixel = 7
  741. JumpTextbox.Position = UDim2.new(0.799762189, 0, 0.261299819, 0)
  742. JumpTextbox.Size = UDim2.new(0, 48, 0, 38)
  743. JumpTextbox.PlaceholderColor3 = Color3.fromRGB(82, 255, 35)
  744. JumpTextbox.PlaceholderText = "50"
  745. JumpTextbox.Text = ""
  746. JumpTextbox.TextColor3 = Color3.fromRGB(91, 255, 3)
  747. JumpTextbox.TextSize = 14.000
  748.  
  749. Jump.Name = "Jump"
  750. Jump.Parent = Speed
  751. Jump.BackgroundColor3 = Color3.fromRGB(49, 221, 255)
  752. Jump.BorderColor3 = Color3.fromRGB(59, 255, 0)
  753. Jump.BorderSizePixel = 7
  754. Jump.Position = UDim2.new(0.535957217, 0, 0.261299819, 0)
  755. Jump.Size = UDim2.new(0, 73, 0, 38)
  756. Jump.Font = Enum.Font.GothamSemibold
  757. Jump.Text = "Jump Power"
  758. Jump.TextColor3 = Color3.fromRGB(0, 0, 0)
  759. Jump.TextScaled = true
  760. Jump.TextSize = 12.000
  761. Jump.TextWrapped = true
  762. Jump.MouseButton1Down:connect(function()
  763. game:GetService("RunService").RenderStepped:connect(function()
  764. game.Players.LocalPlayer.Character.Humanoid.JumpPower = tonumber(JumpTextbox.Text)
  765. end)
  766. end)
  767.  
  768. Lumber.Name = "Lumber "
  769. Lumber.Parent = Main
  770. Lumber.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  771. Lumber.BorderSizePixel = 0
  772. Lumber.Position = UDim2.new(0.150224209, 0, 0, 0)
  773. Lumber.Size = UDim2.new(0, 277, 0, 34)
  774. Lumber.Font = Enum.Font.SciFi
  775. Lumber.Text = "Lumber Wood 2 GUI"
  776. Lumber.TextColor3 = Color3.fromRGB(75, 255, 228)
  777. Lumber.TextScaled = true
  778. Lumber.TextSize = 14.000
  779. Lumber.TextWrapped = true
  780.  
  781. Design_2.Name = "Design"
  782. Design_2.Parent = Main
  783. Design_2.BackgroundColor3 = Color3.fromRGB(33, 62, 255)
  784. Design_2.BorderSizePixel = 0
  785. Design_2.Position = UDim2.new(0.150224209, 0, 0.128301889, 0)
  786. Design_2.Size = UDim2.new(0, 379, 0, 6)
  787.  
  788. wood.Name = "wood"
  789. wood.Parent = Main
  790. wood.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  791. wood.Position = UDim2.new(0.150224209, 0, 0.150943398, 0)
  792. wood.Size = UDim2.new(0, 379, 0, 225)
  793. wood.Visible = false
  794.  
  795. SellWood.Name = "Sell Wood"
  796. SellWood.Parent = wood
  797. SellWood.BackgroundColor3 = Color3.fromRGB(49, 221, 255)
  798. SellWood.BorderColor3 = Color3.fromRGB(59, 255, 0)
  799. SellWood.BorderSizePixel = 5
  800. SellWood.Position = UDim2.new(0.0425535701, 0, 0.0434380434, 0)
  801. SellWood.Size = UDim2.new(0, 52, 0, 27)
  802. SellWood.Font = Enum.Font.GothamSemibold
  803. SellWood.Text = "Sell Wood"
  804. SellWood.TextColor3 = Color3.fromRGB(0, 0, 0)
  805. SellWood.TextScaled = true
  806. SellWood.TextSize = 12.000
  807. SellWood.TextWrapped = true
  808. SellWood.MouseButton1Down:connect(function()
  809. for _, Log in pairs(workspace.LogModels:GetChildren()) do
  810. if Log.Name:sub(1, 6) == "Loose_" and Log:findFirstChild("Owner") then
  811. if Log.Owner.Value == game.Players.LocalPlayer then
  812. for i,v in pairs(Log:GetChildren()) do
  813. if v.Name=="WoodSection" then
  814. spawn(function()
  815. for i=1,10 do
  816. wait()
  817. v.CFrame=CFrame.new(Vector3.new(315, -0.296, 85.791))*CFrame.Angles(math.rad(90),0,0)
  818. end
  819. end)
  820. end
  821. end
  822. spawn(function()
  823. for i=1,20 do
  824. wait()
  825. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Log)
  826. end
  827. end)
  828. end
  829. end
  830. end
  831. end)
  832.  
  833. SellPlank.Name = "Sell Plank"
  834. SellPlank.Parent = wood
  835. SellPlank.BackgroundColor3 = Color3.fromRGB(49, 221, 255)
  836. SellPlank.BorderColor3 = Color3.fromRGB(59, 255, 0)
  837. SellPlank.BorderSizePixel = 5
  838. SellPlank.Position = UDim2.new(0.298490256, 0, 0.0434380434, 0)
  839. SellPlank.Size = UDim2.new(0, 52, 0, 27)
  840. SellPlank.Font = Enum.Font.GothamSemibold
  841. SellPlank.Text = "Sell Plank"
  842. SellPlank.TextColor3 = Color3.fromRGB(0, 0, 0)
  843. SellPlank.TextScaled = true
  844. SellPlank.TextSize = 12.000
  845. SellPlank.TextWrapped = true
  846. SellPlank.MouseButton1Click:Connect(function()
  847. for _, Plank in pairs(game.Workspace.PlayerModels:GetChildren()) do
  848. if Plank.Name=="Plank" and Plank:findFirstChild("Owner") then
  849. if Plank.Owner.Value == game.Players.LocalPlayer then
  850. for i,v in pairs(Plank:GetChildren()) do
  851. if v.Name=="WoodSection" then
  852. spawn(function()
  853. for i=1,10 do
  854. wait()
  855. v.CFrame=CFrame.new(Vector3.new(315, -0.296, 85.791))*CFrame.Angles(math.rad(90),0,0)
  856. end
  857. end)
  858. end
  859. end
  860. spawn(function()
  861. for i=1,20 do
  862. wait()
  863. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Plank)
  864. end
  865. end)
  866. end
  867. end
  868. end
  869. end)
  870.  
  871. RemoveTree.Name = "Remove Tree"
  872. RemoveTree.Parent = wood
  873. RemoveTree.BackgroundColor3 = Color3.fromRGB(49, 221, 255)
  874. RemoveTree.BorderColor3 = Color3.fromRGB(59, 255, 0)
  875. RemoveTree.BorderSizePixel = 5
  876. RemoveTree.Position = UDim2.new(0.559703946, 0, 0.0434380434, 0)
  877. RemoveTree.Size = UDim2.new(0, 52, 0, 27)
  878. RemoveTree.Font = Enum.Font.GothamSemibold
  879. RemoveTree.Text = "Remove Tree"
  880. RemoveTree.TextColor3 = Color3.fromRGB(0, 0, 0)
  881. RemoveTree.TextScaled = true
  882. RemoveTree.TextSize = 12.000
  883. RemoveTree.TextWrapped = true
  884. RemoveTree.MouseButton1Click:Connect(function()
  885. for i,v in pairs(game.Workspace:GetDescendants()) do
  886. if v.Name == "WoodSection" and v.Parent:FindFirstChild("CutEvent") then
  887. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(v.Parent)
  888. game.ReplicatedStorage.Interaction.DestroyStructure:FireServer(v.Parent)
  889. end
  890. end
  891. game.Workspace.DescendantAdded:connect(function(Thing)
  892. wait(0.1)
  893. if Thing.Name == "WoodSection" and Thing.Parent:FindFirstChild("CutEvent") then
  894. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Thing.Parent)
  895. game.ReplicatedStorage.Interaction.DestroyStructure:FireServer(Thing.Parent)
  896. end
  897. end)
  898. end)
  899.  
  900. WoodList.Name = "Wood List"
  901. WoodList.Parent = wood
  902. WoodList.BackgroundColor3 = Color3.fromRGB(2, 18, 255)
  903. WoodList.BorderSizePixel = 0
  904. WoodList.Position = UDim2.new(0, 0, 0.226666674, 0)
  905. WoodList.Size = UDim2.new(0, 379, 0, 22)
  906. WoodList.Text = "Wood List"
  907. WoodList.TextColor3 = Color3.fromRGB(0, 0, 0)
  908. WoodList.TextScaled = true
  909. WoodList.TextSize = 14.000
  910. WoodList.TextWrapped = true
  911.  
  912. function Teleport(XP,YP,ZP)
  913. -- Config How Many Blocks It Will Tp You Untill The Final Destination:
  914. local XTpEvery = 15
  915. local YTpEvery = 15
  916. local ZTpEvery = 15
  917. --Time to Tp Every:
  918. local Timer = 0.001
  919. local pos = game:GetService('Players').LocalPlayer.Character.HumanoidRootPart
  920. if pos.Position.X < XP then
  921. for x = pos.Position.X,XP,XTpEvery do
  922. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(x,pos.Position.Y,pos.Position.Z))
  923. local part = Instance.new("Part", workspace)
  924. part.Anchored = true
  925. part.Size = Vector3.new(10,0.1,10)
  926. part.Material = "Glass"
  927. part.BrickColor = BrickColor.Random()
  928. part.Transparency = 0.7
  929. part.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,-3.05,0)
  930. wait(Timer)
  931. part.Destroy(part)
  932. end
  933. else
  934. for x = pos.Position.X,XP,-XTpEvery do
  935. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(x,pos.Position.Y,pos.Position.Z))
  936. local part = Instance.new("Part", workspace)
  937. part.Anchored = true
  938. part.Size = Vector3.new(10,0.1,10)
  939. part.Material = "Glass"
  940. part.BrickColor = BrickColor.Random()
  941. part.Transparency = 0.7
  942. part.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,-3.05,0)
  943. wait(Timer)
  944. part.Destroy(part)
  945. end
  946. end
  947. if pos.Position.Z < ZP then
  948. for z = pos.Position.Z,ZP,ZTpEvery do
  949. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(pos.Position.X,pos.Position.Y,z))
  950. local part = Instance.new("Part", workspace)
  951. part.Anchored = true
  952. part.Size = Vector3.new(10,0.1,10)
  953. part.Material = "Glass"
  954. part.BrickColor = BrickColor.Random()
  955. part.Transparency = 0.7
  956. part.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,-3.05,0)
  957. wait(Timer)
  958. part.Destroy(part)
  959. end
  960. else
  961. for z = pos.Position.Z,ZP,-ZTpEvery do
  962. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(pos.Position.X,pos.Position.Y,z))
  963. local part = Instance.new("Part", workspace)
  964. part.Anchored = true
  965. part.Size = Vector3.new(10,0.1,10)
  966. part.Material = "Glass"
  967. part.BrickColor = BrickColor.Random()
  968. part.Transparency = 0.7
  969. part.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,-3.05,0)
  970. wait(Timer)
  971. part.Destroy(part)
  972. end
  973. end
  974. if pos.Position.Y < YP then
  975. for High = pos.Position.Y,YP,YTpEvery do
  976. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(pos.Position.X ,High ,pos.Position.Z))
  977. local part = Instance.new("Part", workspace)
  978. part.Anchored = true
  979. part.Size = Vector3.new(10,0.1,10)
  980. part.Material = "Glass"
  981. part.BrickColor = BrickColor.Random()
  982. part.Transparency = 0.7
  983. part.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,-3.05,0)
  984. wait(Timer)
  985. part.Destroy(part)
  986. end
  987. else
  988. for High = pos.Position.Y,YP,-YTpEvery do
  989. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(pos.Position.X ,High ,pos.Position.Z))
  990. local part = Instance.new("Part", workspace)
  991. part.Anchored = true
  992. part.Size = Vector3.new(10,0.1,10)
  993. part.Material = "Glass"
  994. part.BrickColor = BrickColor.Random()
  995. part.Transparency = 0.7
  996. part.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,-3.05,0)
  997. wait(Timer)
  998. part.Destroy(part)
  999. end
  1000. end
  1001. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(XP + 5,YP,ZP + 5)
  1002. end
  1003.  
  1004. function GetTree(Wood, PlayerName, Quantitys)
  1005. local Counter = 0
  1006. local HitPoints={
  1007. ['Beesaxe']= 1.4;
  1008. ['AxeAmber']= 3.39;
  1009. ['ManyAxe']= 10.2;
  1010. ['BasicHatchet']= 0.2;
  1011. ['Axe1']= 0.55;
  1012. ['Axe2']= 0.93;
  1013. ['AxeAlphaTesters']= 1.5;
  1014. ['Rukiryaxe']= 1.68;
  1015. ['Axe3']= 1.45;
  1016. ['AxeBetaTesters']= 1.45;
  1017. ['FireAxe']= 0.6;
  1018. ['SilverAxe']= 1.6;
  1019. ['EndTimesAxe']= 1.58;
  1020. ['AxeChicken']= 0.9;
  1021. ['CandyCaneAxe']= 0;
  1022. ['AxeTwitter']= 1.65
  1023. }
  1024. function axe(Val)
  1025. local A_1 = Val.CutEvent
  1026. local A_2 =
  1027. {
  1028. ["tool"] = game.Players.LocalPlayer.Character:FindFirstChild("Tool"),
  1029. ["faceVector"] = Vector3.new(0, 0, -1),
  1030. ["height"] = 0.3,
  1031. ["sectionId"] = 1,
  1032. ["hitPoints"] = HitPoints[game.Players.LocalPlayer.Character:FindFirstChild("Tool").ToolName.Value],
  1033. ["cooldown"] = 0.112,
  1034. ["cuttingClass"] = "Axe"
  1035. }
  1036. local Event = game:GetService("ReplicatedStorage").Interaction.RemoteProxy
  1037. Event:FireServer(A_1, A_2)
  1038. end
  1039. local Ps = nil
  1040. for i, v in pairs(game.Workspace.Properties:GetChildren()) do
  1041. if v.Owner.Value == game.Players[PlayerName] then
  1042. Ps = v.OriginSquare.Position + Vector3.new(0,30,0)
  1043. end
  1044. end
  1045. for i,v in pairs(game.Workspace:GetDescendants()) do
  1046. if v:FindFirstChild("TreeClass") and v.TreeClass.Value == Wood and v.Name == "Model" then
  1047. Teleport(v.WoodSection.Position.X,v.WoodSection.Position.Y,v.WoodSection.Position.Z)
  1048. for i=1,50 do
  1049. wait(0.0001)
  1050. axe(v)
  1051. end
  1052. for i,v in pairs(Workspace.LogModels:GetChildren()) do
  1053. if v:FindFirstChild("Owner") and v.Owner.Value == game.Players.LocalPlayer and v.TreeClass.Value == Wood then
  1054. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(v)
  1055. v:MoveTo(Ps)
  1056. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(v)
  1057. v:MoveTo(Ps)
  1058. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(v)
  1059. v:MoveTo(Ps)
  1060. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(v)
  1061. end
  1062. end
  1063. Counter = Counter + 1
  1064. if Quantitys - Counter == 0 then
  1065. print("Breaked")
  1066. break
  1067. end
  1068. wait(0.2)
  1069. end
  1070. end
  1071. wait(0.2)
  1072. for i, v in pairs(game.Workspace.Properties:GetChildren()) do
  1073. if v.Owner.Value == game.Players[PlayerName] then
  1074. Teleport(v.OriginSquare.Position.X, v.OriginSquare.Position.Y + 3.2, v.OriginSquare.Position.Z)
  1075. end
  1076. end
  1077. end
  1078.  
  1079. Icewood.Name = "Ice wood"
  1080. Icewood.Parent = wood
  1081. Icewood.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1082. Icewood.BorderSizePixel = 0
  1083. Icewood.Position = UDim2.new(0, 0, 0.342222214, 0)
  1084. Icewood.Size = UDim2.new(0, 50, 0, 49)
  1085. Icewood.Image = "rbxassetid://4942298257"
  1086. Icewood.MouseButton1Down:connect(function()
  1087. GetTree("Frost", "LocalPlayer", WoodTextBox.Text)
  1088. end)
  1089.  
  1090. SnowGlowWood.Name = "SnowGlow Wood"
  1091. SnowGlowWood.Parent = wood
  1092. SnowGlowWood.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1093. SnowGlowWood.BorderSizePixel = 0
  1094. SnowGlowWood.Position = UDim2.new(0.131926119, 0, 0.337777764, 0)
  1095. SnowGlowWood.Size = UDim2.new(0, 50, 0, 49)
  1096. SnowGlowWood.Image = "rbxassetid://4942305277"
  1097. SnowGlowWood.MouseButton1Down:connect(function()
  1098. GetTree("SnowGlow", "LocalPlayer", WoodTextBox.Text)
  1099. end)
  1100.  
  1101. Bluewood.Name = "Blue wood"
  1102. Bluewood.Parent = wood
  1103. Bluewood.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1104. Bluewood.BorderSizePixel = 0
  1105. Bluewood.Position = UDim2.new(0.263852239, 0, 0.337777764, 0)
  1106. Bluewood.Size = UDim2.new(0, 50, 0, 49)
  1107. Bluewood.Image = "rbxassetid://4942317406"
  1108. Bluewood.MouseButton1Down:connect(function()
  1109. GetTree("CaveCrawler", "LocalPlayer", WoodTextBox.Text)
  1110. end)
  1111.  
  1112. Cherry.Name = "Cherry"
  1113. Cherry.Parent = wood
  1114. Cherry.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1115. Cherry.BorderSizePixel = 0
  1116. Cherry.Position = UDim2.new(0, 0, 0.551111162, 0)
  1117. Cherry.Size = UDim2.new(0, 50, 0, 49)
  1118. Cherry.Image = "rbxassetid://4942288883"
  1119. Cherry.MouseButton1Down:connect(function()
  1120. GetTree("Cherry", "LocalPlayer", WoodTextBox.Text)
  1121. end)
  1122.  
  1123. pine.Name = "pine"
  1124. pine.Parent = wood
  1125. pine.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1126. pine.BorderSizePixel = 0
  1127. pine.Position = UDim2.new(0.150732994, 0, 0.56296289, 0)
  1128. pine.Size = UDim2.new(0, 34, 0, 49)
  1129. pine.Image = "rbxassetid://4942331841"
  1130. pine.MouseButton1Down:connect(function()
  1131. GetTree("Pine", "LocalPlayer", WoodTextBox.Text)
  1132. end)
  1133.  
  1134. Koa.Name = "Koa"
  1135. Koa.Parent = wood
  1136. Koa.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1137. Koa.BorderSizePixel = 0
  1138. Koa.Position = UDim2.new(0.263852239, 0, 0.558518469, 0)
  1139. Koa.Size = UDim2.new(0, 50, 0, 49)
  1140. Koa.Image = "rbxassetid://4942343634"
  1141. Koa.MouseButton1Down:connect(function()
  1142. GetTree("Koa", "LocalPlayer", WoodTextBox.Text)
  1143. end)
  1144.  
  1145. Amount.Name = "Amount"
  1146. Amount.Parent = wood
  1147. Amount.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1148. Amount.BorderColor3 = Color3.fromRGB(14, 255, 2)
  1149. Amount.BorderSizePixel = 5
  1150. Amount.Position = UDim2.new(0.419814944, 0, 0.413333327, 0)
  1151. Amount.Size = UDim2.new(0, 62, 0, 26)
  1152. Amount.Font = Enum.Font.SciFi
  1153. Amount.Text = "Amount"
  1154. Amount.TextColor3 = Color3.fromRGB(7, 255, 3)
  1155. Amount.TextSize = 14.000
  1156.  
  1157. GreenSwampy.Name = "GreenSwampy"
  1158. GreenSwampy.Parent = wood
  1159. GreenSwampy.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1160. GreenSwampy.BorderSizePixel = 0
  1161. GreenSwampy.Position = UDim2.new(0.0844327211, 0, 0.788148224, 0)
  1162. GreenSwampy.Size = UDim2.new(0, 85, 0, 49)
  1163. GreenSwampy.Image = "rbxassetid://4942395329"
  1164. GreenSwampy.MouseButton1Down:connect(function()
  1165. GetTree("GreenSwampy", "LocalPlayer", WoodTextBox.Text)
  1166. end)
  1167.  
  1168. WoodTextBox.Name = "WoodTextBox"
  1169. WoodTextBox.Parent = wood
  1170. WoodTextBox.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1171. WoodTextBox.BorderColor3 = Color3.fromRGB(59, 255, 0)
  1172. WoodTextBox.BorderSizePixel = 7
  1173. WoodTextBox.Position = UDim2.new(0.438284636, 0, 0.661299765, 0)
  1174. WoodTextBox.Size = UDim2.new(0, 48, 0, 38)
  1175. WoodTextBox.PlaceholderColor3 = Color3.fromRGB(82, 255, 35)
  1176. WoodTextBox.PlaceholderText = "1-10"
  1177. WoodTextBox.Text = ""
  1178. WoodTextBox.TextColor3 = Color3.fromRGB(91, 255, 3)
  1179. WoodTextBox.TextSize = 14.000
  1180.  
  1181. Palm.Name = "Palm"
  1182. Palm.Parent = wood
  1183. Palm.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1184. Palm.BorderSizePixel = 0
  1185. Palm.Position = UDim2.new(0.604221642, 0, 0.337777764, 0)
  1186. Palm.Size = UDim2.new(0, 50, 0, 49)
  1187. Palm.Image = "rbxassetid://4942261861"
  1188. Palm.MouseButton1Down:connect(function()
  1189. GetTree("Palm", "LocalPlayer", WoodTextBox.Text)
  1190. end)
  1191.  
  1192. oak.Name = "oak"
  1193. oak.Parent = wood
  1194. oak.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1195. oak.BorderSizePixel = 0
  1196. oak.Position = UDim2.new(0.736147761, 0, 0.342222214, 0)
  1197. oak.Size = UDim2.new(0, 50, 0, 48)
  1198. oak.Image = "rbxassetid://4942383649"
  1199. oak.MouseButton1Down:connect(function()
  1200. GetTree("Oak", "LocalPlayer", WoodTextBox.Text)
  1201. end)
  1202.  
  1203. Spook.Name = "Spook"
  1204. Spook.Parent = wood
  1205. Spook.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1206. Spook.BorderSizePixel = 0
  1207. Spook.Position = UDim2.new(0.868073881, 0, 0.337777764, 0)
  1208. Spook.Size = UDim2.new(0, 50, 0, 50)
  1209. Spook.Image = "rbxassetid://4942263321"
  1210. Spook.MouseButton1Down:connect(function()
  1211. GetTree("Spooky", "LocalPlayer", WoodTextBox.Text)
  1212. end)
  1213.  
  1214. Gerenic.Name = "Gerenic"
  1215. Gerenic.Parent = wood
  1216. Gerenic.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1217. Gerenic.BorderSizePixel = 0
  1218. Gerenic.Position = UDim2.new(0.868073881, 0, 0.558518469, 0)
  1219. Gerenic.Size = UDim2.new(0, 50, 0, 49)
  1220. Gerenic.Image = "rbxassetid://4942381141"
  1221. Gerenic.MouseButton1Down:connect(function()
  1222. GetTree("Generic", "LocalPlayer", WoodTextBox.Text)
  1223. end)
  1224.  
  1225. Redwood.Name = "Red wood"
  1226. Redwood.Parent = wood
  1227. Redwood.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1228. Redwood.BorderSizePixel = 0
  1229. Redwood.Position = UDim2.new(0.604221642, 0, 0.558518469, 0)
  1230. Redwood.Size = UDim2.new(0, 50, 0, 49)
  1231. Redwood.Image = "rbxassetid://4942346615"
  1232. Redwood.MouseButton1Down:connect(function()
  1233. GetTree("Volcano", "LocalPlayer", WoodTextBox.Text)
  1234. end)
  1235.  
  1236. walnut.Name = "walnut"
  1237. walnut.Parent = wood
  1238. walnut.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1239. walnut.BorderSizePixel = 0
  1240. walnut.Position = UDim2.new(0.736147761, 0, 0.558518469, 0)
  1241. walnut.Size = UDim2.new(0, 50, 0, 49)
  1242. walnut.Image = "rbxassetid://4942375241"
  1243. walnut.MouseButton1Down:connect(function()
  1244. GetTree("Walnut", "LocalPlayer", WoodTextBox.Text)
  1245. end)
  1246.  
  1247. Brich.Name = "Brich"
  1248. Brich.Parent = wood
  1249. Brich.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1250. Brich.BorderSizePixel = 0
  1251. Brich.Position = UDim2.new(0.736147761, 0, 0.774814904, 0)
  1252. Brich.Size = UDim2.new(0, 50, 0, 49)
  1253. Brich.Image = "rbxassetid://4942404829"
  1254. Brich.MouseButton1Down:connect(function()
  1255. GetTree("Birch", "LocalPlayer", WoodTextBox.Text)
  1256. end)
  1257.  
  1258. Sinister.Name = "Sinister"
  1259. Sinister.Parent = wood
  1260. Sinister.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1261. Sinister.BorderSizePixel = 0
  1262. Sinister.Position = UDim2.new(0.604221642, 0, 0.774814904, 0)
  1263. Sinister.Size = UDim2.new(0, 50, 0, 49)
  1264. Sinister.Image = "rbxassetid://4942391447"
  1265. Sinister.MouseButton1Down:connect(function()
  1266. GetTree("SpookyNeon", "LocalPlayer", WoodTextBox.Text)
  1267. end)
  1268.  
  1269. GoldSwampy.Name = "GoldSwampy"
  1270. GoldSwampy.Parent = wood
  1271. GoldSwampy.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1272. GoldSwampy.BorderSizePixel = 0
  1273. GoldSwampy.Position = UDim2.new(0.868073881, 0, 0.774814904, 0)
  1274. GoldSwampy.Size = UDim2.new(0, 50, 0, 49)
  1275. GoldSwampy.Image = "rbxassetid://4942412212"
  1276. GoldSwampy.MouseButton1Down:connect(function()
  1277. GetTree("GoldSwampy", "LocalPlayer", WoodTextBox.Text)
  1278. end)
  1279.  
  1280. ModWood.Name = "Mod Wood"
  1281. ModWood.Parent = wood
  1282. ModWood.BackgroundColor3 = Color3.fromRGB(49, 221, 255)
  1283. ModWood.BorderColor3 = Color3.fromRGB(59, 255, 0)
  1284. ModWood.BorderSizePixel = 5
  1285. ModWood.Position = UDim2.new(0.820917666, 0, 0.0434380434, 0)
  1286. ModWood.Size = UDim2.new(0, 52, 0, 27)
  1287. ModWood.Font = Enum.Font.GothamSemibold
  1288. ModWood.Text = "Mod Wood"
  1289. ModWood.TextColor3 = Color3.fromRGB(0, 0, 0)
  1290. ModWood.TextScaled = true
  1291. ModWood.TextSize = 12.000
  1292. ModWood.TextWrapped = true
  1293. ModWood.MouseButton1Down:Connect(function()
  1294. SawmillC = false
  1295. Mouse = game.Players.LocalPlayer:GetMouse()
  1296. ModWoodFrame.Visible = true
  1297. Mouse.KeyDown:connect(function(key)
  1298. if key:lower() == "n" then
  1299. Treee = Mouse.Target
  1300. end
  1301. end)
  1302. Mouse.KeyDown:connect(function(key)
  1303. if key:lower() == "m" then
  1304. if Mouse.Target.Parent:FindFirstChild("BlockageAlert") then
  1305. Sawmill = Mouse.Target.Parent
  1306. else
  1307. Sawmill=Mouse.Target.Parent.Parent
  1308. end
  1309. if Sawmill:FindFirstChild("BlockageAlert") and Sawmill:FindFirstChild("Owner") then
  1310. SawmillC = true
  1311. else
  1312. SawmillC = false
  1313. SendNotification"Something went wrong while setting the sawmill!"
  1314. end
  1315. if Treee ~= nil then
  1316. Mod(Treee)
  1317. else
  1318. SendNotification("Select tree with 'N'!")
  1319. end
  1320. end
  1321. end)
  1322.  
  1323. function Mod(SelectedPart)
  1324. if SawmillC ~= true then
  1325. SendNotification'Set the sawmill with "M"!'
  1326. return
  1327. end
  1328. if SelectedPart.Parent:FindFirstChild("TreeClass") and SelectedPart.Parent:FindFirstChild("Owner") then
  1329. SendNotification("Tree: "..SelectedPart.Parent.TreeClass.Value)
  1330. Tree = SelectedPart.Parent
  1331. Tree.PrimaryPart = SelectedPart
  1332. game.ReplicatedStorage.Interaction.Verify:FireServer('Item owned by player',Tree)
  1333. Tree:SetPrimaryPartCFrame(Sawmill.Particles.CFrame)
  1334. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Tree)
  1335. end
  1336. end
  1337. end)
  1338.  
  1339. Car.Name = "Car"
  1340. Car.Parent = Main
  1341. Car.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1342. Car.BorderSizePixel = 0
  1343. Car.Position = UDim2.new(0.150224209, 0, 0.150943398, 0)
  1344. Car.Size = UDim2.new(0, 379, 0, 226)
  1345. Car.Visible = false
  1346.  
  1347. SpawnPinkcar.Name = "Spawn Pink car"
  1348. SpawnPinkcar.Parent = Car
  1349. SpawnPinkcar.BackgroundColor3 = Color3.fromRGB(49, 221, 255)
  1350. SpawnPinkcar.BorderColor3 = Color3.fromRGB(59, 255, 0)
  1351. SpawnPinkcar.BorderSizePixel = 7
  1352. SpawnPinkcar.Position = UDim2.new(0.124347806, 0, 0.240173608, 0)
  1353. SpawnPinkcar.Size = UDim2.new(0, 73, 0, 38)
  1354. SpawnPinkcar.Font = Enum.Font.GothamSemibold
  1355. SpawnPinkcar.Text = "Spawn pink car(C)"
  1356. SpawnPinkcar.TextColor3 = Color3.fromRGB(0, 0, 0)
  1357. SpawnPinkcar.TextScaled = true
  1358. SpawnPinkcar.TextSize = 12.000
  1359. SpawnPinkcar.TextWrapped = true
  1360. SpawnPinkcar.MouseButton1Click:connect(function()
  1361. if _G.Executed == false or _G.Executed == nil then
  1362. _G.Executed = true
  1363. Spawned = false
  1364. Spawning = false
  1365. SpawnPad = nil
  1366. Activating = false
  1367. workspace.PlayerModels.ChildAdded:connect(function(Added)
  1368. if Spawned == false and Spawning == false and SpawnPad ~= nil then
  1369. Owner = nil
  1370. CheckTries = 0
  1371. CheckSuccess = false
  1372. repeat
  1373. wait()
  1374. CheckTries = CheckTries + 1
  1375. if Added:FindFirstChild("Owner") and Added:FindFirstChild("Type") and Added.Type.Value == "Vehicle" and Added:FindFirstChild("Settings") and Added.Settings:FindFirstChild("Color") then
  1376. CheckSuccess = true
  1377. Owner = Added.Owner.Value
  1378. end
  1379. until CheckTries == 75 or CheckSuccess == true
  1380. if Owner == game.Players.LocalPlayer or game.ReplicatedStorage.Interaction.ClientIsWhitelisted:InvokeServer(Owner) == true then
  1381. Spawning = true
  1382. Added:WaitForChild("Settings")
  1383. Added.Settings:WaitForChild("Color")
  1384. if tostring(Added.Settings.Color.Value) == tostring(1032) then
  1385. Spawned = true
  1386. Spawning = false
  1387. SpawnPad = nil
  1388. print(Spawned)
  1389. elseif tostring(Added.Settings.Color.Value) ~= tostring(1032) then
  1390. if SpawnPad:FindFirstChild("ButtonRemote_SpawnButton") and SpawnPad:FindFirstChild("Owner") then
  1391. if SpawnPad.Owner.Value == game.Players.LocalPlayer or game.ReplicatedStorage.Interaction.ClientIsWhitelisted:InvokeServer(SpawnPad.Owner.Value) == true then
  1392. Spawning = false
  1393. game.ReplicatedStorage.Interaction.RemoteProxy:FireServer(SpawnPad.ButtonRemote_SpawnButton)
  1394. end
  1395. end
  1396. end
  1397. end
  1398. end
  1399. end)
  1400.  
  1401. mouse = game.Players.LocalPlayer:GetMouse()
  1402. mouse.KeyDown:connect(function(key)
  1403. if key:lower() == "c" then
  1404. if mouse.Target.Parent:FindFirstChild("ButtonRemote_SpawnButton") and Activating == false then
  1405. Activating = true
  1406. Target = mouse.Target.Parent
  1407. SpawnPad = nil
  1408. wait(1)
  1409. SpawnPad = Target
  1410. Spawned = false
  1411. Spawning = false
  1412. Activating = false
  1413. game.ReplicatedStorage.Interaction.RemoteProxy:FireServer(Target.ButtonRemote_SpawnButton)
  1414. else
  1415. SpawnPad = nil
  1416. Spawning = false
  1417. end
  1418. end
  1419. end)
  1420. end
  1421. spawn(function()
  1422. repeat
  1423. wait()
  1424. if Spawned == true then
  1425. Spawned = false
  1426. game:GetService("StarterGui"):SetCore("SendNotification", {
  1427. Title = "Pink Car",
  1428. Text = "Successful Spawned."
  1429. })
  1430. end
  1431. until Spawned == true
  1432. end)
  1433. end)
  1434.  
  1435. function TeleportCar(Pos)
  1436. if game.Players.LocalPlayer.Character then
  1437. Character = game.Players.LocalPlayer.Character
  1438. if Character.Humanoid.SeatPart ~= nil then
  1439. Car = Character.Humanoid.SeatPart.Parent
  1440. spawn(function()
  1441. for i=1,5 do
  1442. wait()
  1443. Car:SetPrimaryPartCFrame(Pos * CFrame.Angles(math.rad(Character.HumanoidRootPart.Orientation.x), math.rad(Character.HumanoidRootPart.Orientation.y), 0))
  1444. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(Car.Main)
  1445. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Car.Main)
  1446. end
  1447. end)
  1448. end
  1449. end
  1450. end
  1451.  
  1452. RotateCar.Name = "Rotate Car"
  1453. RotateCar.Parent = Car
  1454. RotateCar.BackgroundColor3 = Color3.fromRGB(49, 221, 255)
  1455. RotateCar.BorderColor3 = Color3.fromRGB(59, 255, 0)
  1456. RotateCar.BorderSizePixel = 7
  1457. RotateCar.Position = UDim2.new(0.68107599, 0, 0.240173608, 0)
  1458. RotateCar.Size = UDim2.new(0, 73, 0, 38)
  1459. RotateCar.Font = Enum.Font.GothamSemibold
  1460. RotateCar.Text = "Rotate Car (R)"
  1461. RotateCar.TextColor3 = Color3.fromRGB(0, 0, 0)
  1462. RotateCar.TextScaled = true
  1463. RotateCar.TextSize = 12.000
  1464. RotateCar.TextWrapped = true
  1465. RotateCar.MouseButton1Click:connect(function()
  1466. local Turn = game:GetService("Players").LocalPlayer:GetMouse()
  1467. function Turn2(key)
  1468. if (key == "r") then
  1469. function RotateCar()
  1470. if game.Players.LocalPlayer.Character then
  1471. Character = game.Players.LocalPlayer.Character
  1472. if Character.Humanoid.SeatPart ~= nil then
  1473. Car = Character.Humanoid.SeatPart.Parent
  1474. spawn(function()
  1475. local Pos = CFrame.new(Car.Main.Position)
  1476. for i=1,5 do
  1477. wait()
  1478. Car:SetPrimaryPartCFrame(Pos * CFrame.Angles(math.rad(Character.HumanoidRootPart.Orientation.x), math.rad(Character.HumanoidRootPart.Orientation.y), 0))
  1479. game.ReplicatedStorage.Interaction.ClientRequestOwnership:FireServer(Car.Main)
  1480. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Car.Main)
  1481. end
  1482. end)
  1483. end
  1484. end
  1485. end
  1486. RotateCar()
  1487. end
  1488. end
  1489. Turn.KeyDown:connect(Turn2)
  1490. end)
  1491.  
  1492. NoClipCarTree.Name = "NoClipCar(Tree)"
  1493. NoClipCarTree.Parent = Car
  1494. NoClipCarTree.BackgroundColor3 = Color3.fromRGB(49, 221, 255)
  1495. NoClipCarTree.BorderColor3 = Color3.fromRGB(59, 255, 0)
  1496. NoClipCarTree.BorderSizePixel = 7
  1497. NoClipCarTree.Position = UDim2.new(0.404031187, 0, 0.240173608, 0)
  1498. NoClipCarTree.Size = UDim2.new(0, 73, 0, 38)
  1499. NoClipCarTree.Font = Enum.Font.GothamSemibold
  1500. NoClipCarTree.Text = "NoClip Car (Tree)"
  1501. NoClipCarTree.TextColor3 = Color3.fromRGB(0, 0, 0)
  1502. NoClipCarTree.TextScaled = true
  1503. NoClipCarTree.TextSize = 12.000
  1504. NoClipCarTree.TextWrapped = true
  1505. NoClipCarTree.MouseButton1Click:connect(function()
  1506. NoClipCarTree.TextColor3 = Color3.fromRGB(255, 0, 0)
  1507. for i,v in pairs (workspace:GetChildren()) do
  1508. if v.Name == "TreeRegion" then
  1509. for i,n in pairs (v:GetChildren()) do
  1510. for i,x in pairs(n:GetChildren()) do
  1511. if x.Name == "WoodSection" or x.Name == "InnerWood" then
  1512. x.CanCollide = false
  1513. end
  1514. end
  1515. end
  1516. end
  1517. end
  1518. end)
  1519.  
  1520. CarSpeedTextBox.Name = "CarSpeedTextBox"
  1521. CarSpeedTextBox.Parent = Car
  1522. CarSpeedTextBox.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1523. CarSpeedTextBox.BorderColor3 = Color3.fromRGB(59, 255, 0)
  1524. CarSpeedTextBox.BorderSizePixel = 7
  1525. CarSpeedTextBox.Position = UDim2.new(0.554426908, 0, 0.589868784, 0)
  1526. CarSpeedTextBox.Size = UDim2.new(0, 48, 0, 38)
  1527. CarSpeedTextBox.PlaceholderColor3 = Color3.fromRGB(82, 255, 35)
  1528. CarSpeedTextBox.PlaceholderText = "1"
  1529. CarSpeedTextBox.Text = ""
  1530. CarSpeedTextBox.TextColor3 = Color3.fromRGB(91, 255, 3)
  1531. CarSpeedTextBox.TextSize = 14.000
  1532.  
  1533. CarSpeed.Name = "CarSpeed"
  1534. CarSpeed.Parent = Car
  1535. CarSpeed.BackgroundColor3 = Color3.fromRGB(49, 221, 255)
  1536. CarSpeed.BorderColor3 = Color3.fromRGB(59, 255, 0)
  1537. CarSpeed.BorderSizePixel = 7
  1538. CarSpeed.Position = UDim2.new(0.29057467, 0, 0.589868784, 0)
  1539. CarSpeed.Size = UDim2.new(0, 73, 0, 38)
  1540. CarSpeed.Font = Enum.Font.GothamSemibold
  1541. CarSpeed.Text = "Car Speed"
  1542. CarSpeed.TextColor3 = Color3.fromRGB(0, 0, 0)
  1543. CarSpeed.TextScaled = true
  1544. CarSpeed.TextSize = 12.000
  1545. CarSpeed.TextWrapped = true
  1546. CarSpeed.MouseButton1Click:connect(function()
  1547. local speed = CarSpeedTextBox.Text
  1548. for i,v in pairs(game.Workspace.PlayerModels:GetChildren()) do
  1549. if v:FindFirstChild("Seat") and v:FindFirstChild("Configuration") then
  1550. v.Configuration.MaxSpeed.Value = 10
  1551. end
  1552. end
  1553. end)
  1554.  
  1555. HUB.Name = "HUB"
  1556. HUB.Parent = Main
  1557. HUB.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1558. HUB.BorderSizePixel = 0
  1559. HUB.Position = UDim2.new(0.150224209, 0, 0.150943398, 0)
  1560. HUB.Size = UDim2.new(0, 379, 0, 225)
  1561.  
  1562. HUB_2.Name = "HUB "
  1563. HUB_2.Parent = HUB
  1564. HUB_2.BackgroundColor3 = Color3.fromRGB(64, 255, 6)
  1565. HUB_2.BorderSizePixel = 0
  1566. HUB_2.Size = UDim2.new(0, 108, 0, 29)
  1567. HUB_2.Font = Enum.Font.SciFi
  1568. HUB_2.Text = "HUB"
  1569. HUB_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  1570. HUB_2.TextScaled = true
  1571. HUB_2.TextSize = 14.000
  1572. HUB_2.TextWrapped = true
  1573.  
  1574. Design_3.Name = "Design"
  1575. Design_3.Parent = HUB
  1576. Design_3.BackgroundColor3 = Color3.fromRGB(33, 62, 255)
  1577. Design_3.BorderSizePixel = 0
  1578. Design_3.Position = UDim2.new(0.284960419, 0, 0, 0)
  1579. Design_3.Size = UDim2.new(0, 7, 0, 225)
  1580.  
  1581. xDavid673x2696.Name = "xDavid673x#2696"
  1582. xDavid673x2696.Parent = HUB
  1583. xDavid673x2696.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1584. xDavid673x2696.BorderSizePixel = 0
  1585. xDavid673x2696.Position = UDim2.new(0.401055396, 0, 0.200000003, 0)
  1586. xDavid673x2696.Size = UDim2.new(0, 200, 0, 30)
  1587. xDavid673x2696.Font = Enum.Font.GothamSemibold
  1588. xDavid673x2696.Text = "xDavid673x#2696"
  1589. xDavid673x2696.TextColor3 = Color3.fromRGB(14, 255, 126)
  1590. xDavid673x2696.TextScaled = true
  1591. xDavid673x2696.TextSize = 14.000
  1592. xDavid673x2696.TextWrapped = true
  1593.  
  1594. Credits.Name = "Credits"
  1595. Credits.Parent = HUB
  1596. Credits.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1597. Credits.BorderSizePixel = 0
  1598. Credits.Position = UDim2.new(0.503957808, 0, 0.0266666673, 0)
  1599. Credits.Size = UDim2.new(0, 122, 0, 39)
  1600. Credits.Font = Enum.Font.SciFi
  1601. Credits.Text = "Credits"
  1602. Credits.TextColor3 = Color3.fromRGB(64, 255, 6)
  1603. Credits.TextScaled = true
  1604. Credits.TextSize = 14.000
  1605. Credits.TextWrapped = true
  1606.  
  1607. Help.Name = "Help"
  1608. Help.Parent = HUB
  1609. Help.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1610. Help.BorderSizePixel = 0
  1611. Help.Position = UDim2.new(0.503957808, 0, 0.48888886, 0)
  1612. Help.Size = UDim2.new(0, 122, 0, 39)
  1613. Help.Font = Enum.Font.SciFi
  1614. Help.Text = "Help"
  1615. Help.TextColor3 = Color3.fromRGB(64, 255, 6)
  1616. Help.TextScaled = true
  1617. Help.TextSize = 14.000
  1618. Help.TextWrapped = true
  1619.  
  1620. SemeleTV4177.Name = "SemeleTV#4177"
  1621. SemeleTV4177.Parent = HUB
  1622. SemeleTV4177.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1623. SemeleTV4177.BorderSizePixel = 0
  1624. SemeleTV4177.Position = UDim2.new(0.401055396, 0, 0.688888907, 0)
  1625. SemeleTV4177.Size = UDim2.new(0, 200, 0, 30)
  1626. SemeleTV4177.Font = Enum.Font.GothamSemibold
  1627. SemeleTV4177.Text = "SemeleTV#4177"
  1628. SemeleTV4177.TextColor3 = Color3.fromRGB(14, 255, 126)
  1629. SemeleTV4177.TextScaled = true
  1630. SemeleTV4177.TextSize = 14.000
  1631. SemeleTV4177.TextWrapped = true
  1632.  
  1633. xTheAlex143200.Name = "xTheAlex14#3200"
  1634. xTheAlex143200.Parent = HUB
  1635. xTheAlex143200.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1636. xTheAlex143200.BorderSizePixel = 0
  1637. xTheAlex143200.Position = UDim2.new(0.401055396, 0, 0.355555564, 0)
  1638. xTheAlex143200.Size = UDim2.new(0, 200, 0, 30)
  1639. xTheAlex143200.Font = Enum.Font.GothamSemibold
  1640. xTheAlex143200.Text = "xTheAlex14#3200"
  1641. xTheAlex143200.TextColor3 = Color3.fromRGB(14, 255, 126)
  1642. xTheAlex143200.TextScaled = true
  1643. xTheAlex143200.TextSize = 14.000
  1644. xTheAlex143200.TextWrapped = true
  1645.  
  1646. Destroy.Name = "Destroy"
  1647. Destroy.Parent = HUB
  1648. Destroy.BackgroundColor3 = Color3.fromRGB(7, 255, 235)
  1649. Destroy.BorderSizePixel = 0
  1650. Destroy.Position = UDim2.new(0.30343008, 0, 0.928888917, 0)
  1651. Destroy.Size = UDim2.new(0, 263, 0, 16)
  1652. Destroy.Font = Enum.Font.SciFi
  1653. Destroy.Text = "Destroy this GUI"
  1654. Destroy.TextColor3 = Color3.fromRGB(0, 0, 0)
  1655. Destroy.TextScaled = true
  1656. Destroy.TextSize = 14.000
  1657. Destroy.TextWrapped = true
  1658. Destroy.MouseButton1Down:connect(function()
  1659. Hack11:Destroy()
  1660. end)
  1661.  
  1662. Zypher.Name = "Zypher"
  1663. Zypher.Parent = HUB
  1664. Zypher.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1665. Zypher.BorderColor3 = Color3.fromRGB(64, 255, 6)
  1666. Zypher.BorderSizePixel = 5
  1667. Zypher.Position = UDim2.new(0.0464428887, 0, 0.203854889, 0)
  1668. Zypher.Size = UDim2.new(0, 72, 0, 35)
  1669. Zypher.Font = Enum.Font.SourceSansSemibold
  1670. Zypher.Text = "Zypher"
  1671. Zypher.TextColor3 = Color3.fromRGB(64, 255, 6)
  1672. Zypher.TextScaled = true
  1673. Zypher.TextSize = 14.000
  1674. Zypher.TextWrapped = true
  1675. Zypher.MouseButton1Down:connect(function()
  1676. loadstring(game:HttpGet(('https://raw.githubusercontent.com/xTheAlex14/zypher/master/zypherupdatednew'),true))()
  1677. end)
  1678.  
  1679. Shift.Name = "Shift"
  1680. Shift.Parent = HUB
  1681. Shift.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1682. Shift.BorderColor3 = Color3.fromRGB(25, 255, 0)
  1683. Shift.BorderSizePixel = 7
  1684. Shift.Position = UDim2.new(0.0358888358, 0, 0.48888886, 0)
  1685. Shift.Size = UDim2.new(0, 80, 0, 56)
  1686. Shift.Font = Enum.Font.SourceSans
  1687. Shift.Text = "You Can Click V To Open/Close This GUI ."
  1688. Shift.TextColor3 = Color3.fromRGB(255, 162, 0)
  1689. Shift.TextScaled = true
  1690. Shift.TextSize = 14.000
  1691. Shift.TextWrapped = true
  1692.  
  1693. Close.Name = "Close"
  1694. Close.Parent = Main
  1695. Close.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1696. Close.BorderSizePixel = 0
  1697. Close.Position = UDim2.new(0.948430479, 0, 0.0226415098, 0)
  1698. Close.Size = UDim2.new(0, 22, 0, 20)
  1699. Close.Font = Enum.Font.SciFi
  1700. Close.Text = "X"
  1701. Close.TextColor3 = Color3.fromRGB(59, 255, 0)
  1702. Close.TextScaled = true
  1703. Close.TextSize = 14.000
  1704. Close.TextWrapped = true
  1705. Close.MouseButton1Down:connect(function()
  1706. OpenFrame.Visible = true
  1707. Main.Visible = false
  1708. end)
  1709. mouse = game.Players.LocalPlayer:GetMouse()
  1710. mouse.KeyDown:connect(function(key)
  1711. if Main.Visible == true then
  1712. if key:lower() == "v" then
  1713. OpenFrame.Visible = true
  1714. Main.Visible = false
  1715. end
  1716. else
  1717. if key:lower() == "v" then
  1718. Main.Visible = true
  1719. OpenFrame.Visible = false
  1720. end
  1721. end
  1722. end)
  1723.  
  1724. SpeedButton.Name = "Speed Button"
  1725. SpeedButton.Parent = Main
  1726. SpeedButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1727. SpeedButton.BorderColor3 = Color3.fromRGB(59, 255, 0)
  1728. SpeedButton.BorderSizePixel = 5
  1729. SpeedButton.Position = UDim2.new(0.0134529145, 0, 0.0226415098, 0)
  1730. SpeedButton.Size = UDim2.new(0, 48, 0, 28)
  1731. SpeedButton.Font = Enum.Font.SciFi
  1732. SpeedButton.Text = "Speed"
  1733. SpeedButton.TextColor3 = Color3.fromRGB(9, 1, 255)
  1734. SpeedButton.TextScaled = true
  1735. SpeedButton.TextSize = 14.000
  1736. SpeedButton.TextWrapped = true
  1737. SpeedButton.MouseButton1Down:connect(function()
  1738. Car.Visible = false
  1739. Dupe_2.Visible = false
  1740. HUB.Visible = false
  1741. PersonFunction.Visible = false
  1742. Speed.Visible = true
  1743. wood.Visible = false
  1744. end)
  1745.  
  1746. MainFunction.Name = "Main Function"
  1747. MainFunction.Parent = Main
  1748. MainFunction.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1749. MainFunction.BorderColor3 = Color3.fromRGB(59, 255, 0)
  1750. MainFunction.BorderSizePixel = 5
  1751. MainFunction.Position = UDim2.new(0.0134529145, 0, 0.188679248, 0)
  1752. MainFunction.Size = UDim2.new(0, 48, 0, 28)
  1753. MainFunction.Font = Enum.Font.SciFi
  1754. MainFunction.Text = "Main"
  1755. MainFunction.TextColor3 = Color3.fromRGB(9, 1, 255)
  1756. MainFunction.TextScaled = true
  1757. MainFunction.TextSize = 14.000
  1758. MainFunction.TextWrapped = true
  1759. MainFunction.MouseButton1Down:connect(function()
  1760. Car.Visible = false
  1761. Dupe_2.Visible = false
  1762. HUB.Visible = false
  1763. PersonFunction.Visible = true
  1764. Speed.Visible = false
  1765. wood.Visible = false
  1766. end)
  1767.  
  1768. Car_2.Name = "Car"
  1769. Car_2.Parent = Main
  1770. Car_2.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1771. Car_2.BorderColor3 = Color3.fromRGB(59, 255, 0)
  1772. Car_2.BorderSizePixel = 5
  1773. Car_2.Position = UDim2.new(0.0134529145, 0, 0.358490527, 0)
  1774. Car_2.Size = UDim2.new(0, 48, 0, 28)
  1775. Car_2.Font = Enum.Font.SciFi
  1776. Car_2.Text = "Car"
  1777. Car_2.TextColor3 = Color3.fromRGB(9, 1, 255)
  1778. Car_2.TextScaled = true
  1779. Car_2.TextSize = 14.000
  1780. Car_2.TextWrapped = true
  1781. Car_2.MouseButton1Down:connect(function()
  1782. Car.Visible = true
  1783. Dupe_2.Visible = false
  1784. HUB.Visible = false
  1785. PersonFunction.Visible = false
  1786. Speed.Visible = false
  1787. wood.Visible = false
  1788. end)
  1789.  
  1790. wood_2.Name = "wood"
  1791. wood_2.Parent = Main
  1792. wood_2.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1793. wood_2.BorderColor3 = Color3.fromRGB(59, 255, 0)
  1794. wood_2.BorderSizePixel = 5
  1795. wood_2.Position = UDim2.new(0.0134529145, 0, 0.532075465, 0)
  1796. wood_2.Size = UDim2.new(0, 48, 0, 28)
  1797. wood_2.Font = Enum.Font.SciFi
  1798. wood_2.Text = "Bring Wood"
  1799. wood_2.TextColor3 = Color3.fromRGB(9, 1, 255)
  1800. wood_2.TextScaled = true
  1801. wood_2.TextSize = 14.000
  1802. wood_2.TextWrapped = true
  1803. wood_2.MouseButton1Down:connect(function()
  1804. Car.Visible = false
  1805. Dupe_2.Visible = false
  1806. HUB.Visible = false
  1807. PersonFunction.Visible = false
  1808. Speed.Visible = false
  1809. wood.Visible = true
  1810. end)
  1811.  
  1812. HUB_3.Name = "HUB"
  1813. HUB_3.Parent = Main
  1814. HUB_3.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1815. HUB_3.BorderColor3 = Color3.fromRGB(59, 255, 0)
  1816. HUB_3.BorderSizePixel = 5
  1817. HUB_3.Position = UDim2.new(0.0134529145, 0, 0.871698081, 0)
  1818. HUB_3.Size = UDim2.new(0, 48, 0, 28)
  1819. HUB_3.Font = Enum.Font.SciFi
  1820. HUB_3.Text = "HUB"
  1821. HUB_3.TextColor3 = Color3.fromRGB(9, 1, 255)
  1822. HUB_3.TextSize = 24.000
  1823. HUB_3.TextWrapped = true
  1824. HUB_3.MouseButton1Down:connect(function()
  1825. Car.Visible = false
  1826. Dupe_2.Visible = false
  1827. HUB.Visible = true
  1828. PersonFunction.Visible = false
  1829. Speed.Visible = false
  1830. wood.Visible = false
  1831. end)
  1832.  
  1833. Dupe.Name = "Dupe"
  1834. Dupe.Parent = Main
  1835. Dupe.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1836. Dupe.BorderColor3 = Color3.fromRGB(59, 255, 0)
  1837. Dupe.BorderSizePixel = 5
  1838. Dupe.Position = UDim2.new(0.0134529145, 0, 0.705660284, 0)
  1839. Dupe.Size = UDim2.new(0, 48, 0, 28)
  1840. Dupe.Font = Enum.Font.SciFi
  1841. Dupe.Text = "Dupe"
  1842. Dupe.TextColor3 = Color3.fromRGB(9, 1, 255)
  1843. Dupe.TextScaled = true
  1844. Dupe.TextSize = 24.000
  1845. Dupe.TextWrapped = true
  1846. Dupe.MouseButton1Down:connect(function()
  1847. Car.Visible = false
  1848. Dupe_2.Visible = true
  1849. HUB.Visible = false
  1850. PersonFunction.Visible = false
  1851. Speed.Visible = false
  1852. wood.Visible = false
  1853. end)
  1854.  
  1855. Dupe_2.Name = "Dupe"
  1856. Dupe_2.Parent = Main
  1857. Dupe_2.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1858. Dupe_2.BorderSizePixel = 0
  1859. Dupe_2.Position = UDim2.new(0.150224209, 0, 0.150943398, 0)
  1860. Dupe_2.Size = UDim2.new(0, 379, 0, 226)
  1861. Dupe_2.Visible = false
  1862.  
  1863. LoadSlot.Name = "Load Slot"
  1864. LoadSlot.Parent = Dupe_2
  1865. LoadSlot.BackgroundColor3 = Color3.fromRGB(49, 221, 255)
  1866. LoadSlot.BorderColor3 = Color3.fromRGB(59, 255, 0)
  1867. LoadSlot.BorderSizePixel = 7
  1868. LoadSlot.Position = UDim2.new(0.124347806, 0, 0.625129342, 0)
  1869. LoadSlot.Size = UDim2.new(0, 73, 0, 38)
  1870. LoadSlot.Font = Enum.Font.GothamSemibold
  1871. LoadSlot.Text = "Load Slot"
  1872. LoadSlot.TextColor3 = Color3.fromRGB(0, 0, 0)
  1873. LoadSlot.TextScaled = true
  1874. LoadSlot.TextSize = 12.000
  1875. LoadSlot.TextWrapped = true
  1876. LoadSlot.MouseButton1Down:connect(function() --Loads the slot you want
  1877. ScriptLoadOrSave = true
  1878. local CheckSlot = CheckSlotNumber()
  1879. if CheckSlot ~= false then
  1880. if CheckIfSlotAvailable(CheckSlot) == true then
  1881. local LoadSlot = game.ReplicatedStorage.LoadSaveRequests.RequestLoad:InvokeServer(CheckSlot)
  1882. if LoadSlot == false then
  1883. SendNotification("Cooldown Notification", "You aren't abled to load now", 1)
  1884. end
  1885. if LoadSlot == true then
  1886. SendNotification("Reload Notification", "Loaded Your Slot", 2)
  1887. CurrentSlot = CheckSlot
  1888. end
  1889. else
  1890. SendNotification("Slot not Available", "This Slot is not Available, please choose another slot", 2)
  1891. end
  1892. else
  1893. SendNotification("Incorrect Slot", "Enter a Valid number in the upper field", 1)
  1894. end
  1895. ScriptLoadOrSave = false
  1896. end)
  1897.  
  1898. Dupemoney.Name = "Dupe money"
  1899. Dupemoney.Parent = Dupe_2
  1900. Dupemoney.BackgroundColor3 = Color3.fromRGB(49, 221, 255)
  1901. Dupemoney.BorderColor3 = Color3.fromRGB(59, 255, 0)
  1902. Dupemoney.BorderSizePixel = 7
  1903. Dupemoney.Position = UDim2.new(0.68107599, 0, 0.625129342, 0)
  1904. Dupemoney.Size = UDim2.new(0, 73, 0, 38)
  1905. Dupemoney.Font = Enum.Font.GothamSemibold
  1906. Dupemoney.Text = "Dupe Money"
  1907. Dupemoney.TextColor3 = Color3.fromRGB(0, 0, 0)
  1908. Dupemoney.TextScaled = true
  1909. Dupemoney.TextSize = 12.000
  1910. Dupemoney.TextWrapped = true
  1911. Dupemoney.MouseButton1Down:connect(function() --Sends the money and will come back after around 2 mins
  1912. if MoneyCooldown == true then
  1913. SendNotification("Cooldown Notification", "Wait for your Money to come back",2)
  1914. return
  1915. elseif MoneyCooldown == false then
  1916. MoneyCooldown = true
  1917. SendNotification("Money Sent", "Wait about 2 minutes for your Money to come back", 5)
  1918. game.ReplicatedStorage.Transactions.ClientToServer.Donate:InvokeServer(game.Players.LocalPlayer, game.Players.LocalPlayer.leaderstats.Money.Value, 1)
  1919. SendNotification("Money Received", "You received your money that you have sent earlier", 5)
  1920. MoneyCooldown = false
  1921. end
  1922. end)
  1923.  
  1924. SaveSlot.Name = "Save Slot"
  1925. SaveSlot.Parent = Dupe_2
  1926. SaveSlot.BackgroundColor3 = Color3.fromRGB(49, 221, 255)
  1927. SaveSlot.BorderColor3 = Color3.fromRGB(59, 255, 0)
  1928. SaveSlot.BorderSizePixel = 7
  1929. SaveSlot.Position = UDim2.new(0.404031187, 0, 0.625129342, 0)
  1930. SaveSlot.Size = UDim2.new(0, 73, 0, 38)
  1931. SaveSlot.Font = Enum.Font.GothamSemibold
  1932. SaveSlot.Text = "Save Slot"
  1933. SaveSlot.TextColor3 = Color3.fromRGB(0, 0, 0)
  1934. SaveSlot.TextScaled = true
  1935. SaveSlot.TextSize = 12.000
  1936. SaveSlot.TextWrapped = true
  1937. SaveSlot.MouseButton1Down:connect(function() --Saves the slot that you want
  1938. local CheckSlot = CheckSlotNumber()
  1939. if CheckSlot ~= false then
  1940. if CurrentSlot ~= -1 then
  1941. ScriptLoadOrSave = true
  1942. local SaveSlot = game.ReplicatedStorage.LoadSaveRequests.RequestSave:InvokeServer(CheckSlot)
  1943. if SaveSlot == true then
  1944. SendNotification("Save", "Finish saving.", 2)
  1945. wait(.5)
  1946. ScriptLoadOrSave = false
  1947. elseif SaveSlot == false then
  1948. SendNotification("Already Saved", "Wait about 1min to save.", 1)
  1949. wait(.5)
  1950. ScriptLoadOrSave = false
  1951. end
  1952. else
  1953. SendNotification("Error", "Load Your Slot first before you save.", 1)
  1954. end
  1955. else
  1956. SendNotification("Incorrect", "Pls enter a number in the SlotTextbox.", 1)
  1957. end
  1958. end)
  1959.  
  1960. SlotTextbox.Name = "Slot Textbox"
  1961. SlotTextbox.Parent = Dupe_2
  1962. SlotTextbox.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1963. SlotTextbox.BorderColor3 = Color3.fromRGB(59, 255, 0)
  1964. SlotTextbox.BorderSizePixel = 7
  1965. SlotTextbox.Position = UDim2.new(0.404031157, 0, 0.324382067, 0)
  1966. SlotTextbox.Size = UDim2.new(0, 73, 0, 38)
  1967. SlotTextbox.PlaceholderColor3 = Color3.fromRGB(59, 255, 0)
  1968. SlotTextbox.Text = ""
  1969. SlotTextbox.TextColor3 = Color3.fromRGB(59, 255, 0)
  1970. SlotTextbox.TextSize = 14.000
  1971.  
  1972. SlotHere.Name = "Slot Here"
  1973. SlotHere.Parent = Dupe_2
  1974. SlotHere.BackgroundColor3 = Color3.fromRGB(49, 221, 255)
  1975. SlotHere.BorderColor3 = Color3.fromRGB(59, 255, 0)
  1976. SlotHere.BorderSizePixel = 7
  1977. SlotHere.Position = UDim2.new(0.332453817, 0, 0.10619469, 0)
  1978. SlotHere.Size = UDim2.new(0, 127, 0, 21)
  1979. SlotHere.Font = Enum.Font.SciFi
  1980. SlotHere.Text = "Slot Here"
  1981. SlotHere.TextColor3 = Color3.fromRGB(0, 0, 0)
  1982. SlotHere.TextScaled = true
  1983. SlotHere.TextSize = 14.000
  1984. SlotHere.TextWrapped = true
  1985.  
  1986. ModWoodFrame.Name = "Mod Wood Frame"
  1987. ModWoodFrame.Parent = Main
  1988. ModWoodFrame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1989. ModWoodFrame.Position = UDim2.new(-1.27354264, 0, -0.188679248, 0)
  1990. ModWoodFrame.Size = UDim2.new(0, 279, 0, 173)
  1991. ModWoodFrame.Visible = false
  1992.  
  1993. Teaching.Name = "Teaching"
  1994. Teaching.Parent = ModWoodFrame
  1995. Teaching.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1996. Teaching.BorderSizePixel = 0
  1997. Teaching.Size = UDim2.new(0, 205, 0, 24)
  1998. Teaching.Font = Enum.Font.SciFi
  1999. Teaching.Text = "Teaching Mod Wood"
  2000. Teaching.TextColor3 = Color3.fromRGB(38, 255, 0)
  2001. Teaching.TextScaled = true
  2002. Teaching.TextSize = 14.000
  2003. Teaching.TextWrapped = true
  2004.  
  2005. CloseModwood.Name = "Close Mod wood"
  2006. CloseModwood.Parent = ModWoodFrame
  2007. CloseModwood.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  2008. CloseModwood.Position = UDim2.new(0.913978517, 0, 0, 0)
  2009. CloseModwood.Size = UDim2.new(0, 24, 0, 24)
  2010. CloseModwood.Font = Enum.Font.SourceSans
  2011. CloseModwood.Text = "X"
  2012. CloseModwood.TextColor3 = Color3.fromRGB(25, 255, 0)
  2013. CloseModwood.TextSize = 14.000
  2014. CloseModwood.MouseButton1Down:connect(function()
  2015. ModWoodFrame.Visible = false
  2016. end)
  2017.  
  2018. Mod.Name = "Mod"
  2019. Mod.Parent = ModWoodFrame
  2020. Mod.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  2021. Mod.BorderSizePixel = 0
  2022. Mod.Position = UDim2.new(0.0394265242, 0, 0.196531788, 0)
  2023. Mod.Size = UDim2.new(0, 258, 0, 37)
  2024. Mod.Font = Enum.Font.SourceSans
  2025. Mod.Text = "Mod Wood.You can press \"M\" to select sawmill. "
  2026. Mod.TextColor3 = Color3.fromRGB(255, 143, 7)
  2027. Mod.TextScaled = true
  2028. Mod.TextSize = 14.000
  2029. Mod.TextWrapped = true
  2030.  
  2031. Tree.Name = "Tree"
  2032. Tree.Parent = ModWoodFrame
  2033. Tree.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  2034. Tree.BorderSizePixel = 0
  2035. Tree.Position = UDim2.new(0.0394265242, 0, 0.410404623, 0)
  2036. Tree.Size = UDim2.new(0, 258, 0, 37)
  2037. Tree.Font = Enum.Font.SourceSans
  2038. Tree.Text = "You can press \"N\" to select wood. "
  2039. Tree.TextColor3 = Color3.fromRGB(255, 143, 7)
  2040. Tree.TextScaled = true
  2041. Tree.TextSize = 14.000
  2042. Tree.TextWrapped = true
  2043.  
  2044. wood_3.Name = "wood"
  2045. wood_3.Parent = ModWoodFrame
  2046. wood_3.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  2047. wood_3.BorderSizePixel = 0
  2048. wood_3.Position = UDim2.new(0.0394265242, 0, 0.658959448, 0)
  2049. wood_3.Size = UDim2.new(0, 143, 0, 49)
  2050. wood_3.Font = Enum.Font.SourceSans
  2051. wood_3.Text = "And it must a small pieces."
  2052. wood_3.TextColor3 = Color3.fromRGB(255, 143, 7)
  2053. wood_3.TextScaled = true
  2054. wood_3.TextSize = 14.000
  2055. wood_3.TextWrapped = true
  2056.  
  2057. GoldSwampy_2.Name = "GoldSwampy"
  2058. GoldSwampy_2.Parent = ModWoodFrame
  2059. GoldSwampy_2.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  2060. GoldSwampy_2.BorderSizePixel = 0
  2061. GoldSwampy_2.Position = UDim2.new(0.613593638, 0, 0.624277472, 0)
  2062. GoldSwampy_2.Size = UDim2.new(0, 83, 0, 54)
  2063. GoldSwampy_2.Image = "rbxassetid://4942412212"
  2064.  
  2065. VirgoPH_Roundify_12px.Name = "VirgoPH_Roundify_12px"
  2066. VirgoPH_Roundify_12px.Parent = Main
  2067. VirgoPH_Roundify_12px.AnchorPoint = Vector2.new(0.5, 0.5)
  2068. VirgoPH_Roundify_12px.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2069. VirgoPH_Roundify_12px.BackgroundTransparency = 1.000
  2070. VirgoPH_Roundify_12px.Position = UDim2.new(0.86050123, 0, 0.0641115308, 0)
  2071. VirgoPH_Roundify_12px.Size = UDim2.new(0.180342466, 0, 0.13592793, 0)
  2072. VirgoPH_Roundify_12px.Image = "rbxassetid://3570695787"
  2073. VirgoPH_Roundify_12px.ImageColor3 = Color3.fromRGB(12, 255, 182)
  2074. VirgoPH_Roundify_12px.ScaleType = Enum.ScaleType.Slice
  2075. VirgoPH_Roundify_12px.SliceCenter = Rect.new(100, 100, 100, 100)
  2076. VirgoPH_Roundify_12px.SliceScale = 0.120
  2077.  
  2078. Hack.Name = "Hackの呼吸•壱の型"
  2079. Hack.Parent = VirgoPH_Roundify_12px
  2080. Hack.BackgroundColor3 = Color3.fromRGB(12, 255, 182)
  2081. Hack.BorderSizePixel = 0
  2082. Hack.Position = UDim2.new(0.12028829, 0, 0.110205226, 0)
  2083. Hack.Size = UDim2.new(0, 61, 0, 28)
  2084. Hack.Font = Enum.Font.SciFi
  2085. Hack.Text = "Breathe of the Hack"
  2086. Hack.TextColor3 = Color3.fromRGB(0, 0, 0)
  2087. Hack.TextScaled = true
  2088. Hack.TextSize = 14.000
  2089. Hack.TextWrapped = true
Add Comment
Please, Sign In to add comment