Advertisement
Spyroz

Untitled

Apr 14th, 2018
365
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 88.85 KB | None | 0 0
  1. -- TreasureHunt Simulator Gui Created by LuckyMMB @ V3rmillion.net --
  2. -- Discord https://discord.gg/GKzJnUC --
  3. -- Updated 19th Feb 2018 --
  4.  
  5. local Farming1Active = false
  6. local Farming2Active = false
  7. local Autoupgrade = false
  8. local Autorebirth = false
  9. local TPChestsActive = false
  10. local ChestDigFast = false
  11. local DigClicking = false
  12. local afkmode = false
  13.  
  14. local TargetedShovel1 = "Large Shovel"
  15. local TargetedShovel2 = "Vacuum"
  16. local TargetedShovel3 = "Metal Detector"
  17. local TargetedShovel4 = "Golden Spoon"
  18. local TargetedBackpack1 = "XXL Bag"
  19. local TargetedBackpack2 = "Sand Vault"
  20. local TargetedBackpack3 = "Small Canister"
  21.  
  22. local Plrs = game:GetService("Players")
  23. local Run = game:GetService("RunService")
  24. local Rep = game:GetService("ReplicatedStorage")
  25. local MyPlr = Plrs.LocalPlayer
  26. local MyGui = MyPlr.PlayerGui
  27. local MyPack = MyPlr.Backpack
  28. local MyCoins = MyPlr.leaderstats.Coins
  29. local MyRebirths = MyPlr.leaderstats.Rebirths
  30. local RebirthPrice = math.floor((MyRebirths.Value ^ 1.5 + 1) * 500000)
  31. local MySand = MyPlr.leaderstats.Sand
  32. local MyChar = MyPlr.Character
  33. local Events = Rep.Events
  34.  
  35. local DigSiteAboutToCollapse = false
  36.  
  37. local ShovelIds = {
  38. [1] = "Bucket",
  39. [2] = "Spade",
  40. [3] = "Toy Shovel",
  41. [4] = "Small Shovel",
  42. [5] = "Medium Shovel",
  43. [6] = "Large Shovel",
  44. [7] = "Big Scooper",
  45. [8] = "Vacuum",
  46. [9] = "Giant Shovel",
  47. [10] = "Metal Detector",
  48. [11] = "Jack Hammer",
  49. [12] = "Golden Spoon",
  50. [13] = "Dual Scoops",
  51. [14] = "Drill"
  52. }
  53.  
  54. local ShovelPrice = {
  55. [1] = 0,
  56. [2] = 100,
  57. [3] = 250,
  58. [4] = 600,
  59. [5] = 2100,
  60. [6] = 8800,
  61. [7] = 24000,
  62. [8] = 65000,
  63. [9] = 250000,
  64. [10] = 500000,
  65. [11] = 3000000,
  66. [12] = 10000000,
  67. [13] = 220000000,
  68. [14] = 450000000
  69. }
  70.  
  71. local BackpackIds = {
  72. [1] = "Starterpack",
  73. [2] = "Small Bag",
  74. [3] = "Medium Bag",
  75. [4] = "Large Bag",
  76. [5] = "XL Bag",
  77. [6] = "XXL Bag",
  78. [7] = "Sand Safe",
  79. [8] = "Sand Vault",
  80. [9] = "Small Canister",
  81. [10] = "Medium Canister",
  82. [11] = "Large Canister",
  83. [12] = "Duffle Bag",
  84. [13] = "Dual Canister",
  85. [14] = "Giant Canister",
  86. [15] = "Magical Fanny Pack"
  87. }
  88.  
  89. local BackpackPrices = {
  90. [1] = 0,
  91. [2] = 150,
  92. [3] = 375,
  93. [4] = 900,
  94. [5] = 3150,
  95. [6] = 13200,
  96. [7] = 150000,
  97. [8] = 350000,
  98. [9] = 1500000,
  99. [10] = 4000000,
  100. [11] = 8000000,
  101. [12] = 12000000,
  102. [13] = 24000000,
  103. [14] = 48000000,
  104. [15] = 100000000
  105. }
  106.  
  107. function GetTool()
  108. local tool = MyPack:FindFirstChildOfClass("Tool")
  109. return tool
  110. end
  111.  
  112. function GetBackpack()
  113. local pack = MyChar:FindFirstChildOfClass("Model")
  114. if pack then
  115. return pack
  116. end
  117.  
  118. return nil
  119. end
  120.  
  121. local EquipedShovel = GetTool().Name
  122.  
  123. local EquipedBackpack = GetBackpack().Name
  124.  
  125. local SelectedShovel = EquipedShovel
  126.  
  127. local SelectedBackpack = EquipedBackpack
  128.  
  129. function BuyItem(i)
  130. local Owned = Events.CheckIfOwned:InvokeServer(i)
  131. if not Owned then
  132. Events.Checkout:FireServer(i)
  133. end
  134. end
  135.  
  136. function EquipBackpack(s)
  137. Events.EquipBackpack:FireServer(s)
  138. EquipedBackpack = s
  139. end
  140.  
  141. function EquipTool(s)
  142. local get = nil
  143. repeat
  144. get = MyPack:FindFirstChild(s) or MyChar:FindFirstChild(s)
  145. wait()
  146. until get ~= nil
  147. if get.Parent == MyPack then
  148. get.Parent = MyChar
  149. end
  150. return get
  151. end
  152.  
  153. function BuyAndEquip(items)
  154. if items == nil then
  155. if EquipedShovel ~= TargetedShovel then
  156. for i, v in next, ShovelIds do
  157. if v == TargetedShovel then
  158. local Owned = Events.CheckIfOwned:InvokeServer(TargetedShovel)
  159. if not Owned then
  160. if MyCoins.Value >= ShovelPrice[i] then
  161. BuyItem(v)
  162. Events.EquipShovel:FireServer(TargetedShovel)
  163. EquipedShovel = TargetedShovel
  164. EquipTool(v)
  165. break
  166. end
  167. else
  168. Events.EquipShovel:FireServer(TargetedShovel)
  169. EquipedShovel = TargetedShovel
  170. end
  171. end
  172. end
  173. end
  174.  
  175. if EquipedBackpack ~= TargetedBackpack then
  176. for i, v in next, BackpackIds do
  177. if v == TargetedBackpack then
  178. if MyCoins.Value >= BackpackPrices[i] then
  179. BuyItem(v)
  180. EquipBackpack(v)
  181. break
  182. end
  183. end
  184. end
  185. end
  186. else
  187. for i, v in next, ShovelIds do
  188. if v == items then
  189. local Owned = Events.CheckIfOwned:InvokeServer(items)
  190. if not Owned then
  191. if MyCoins.Value >= ShovelPrice[i] then
  192. BuyItem(v)
  193. EquipTool(items)
  194. EquipedShovel = items
  195. if Farming1Active == true then
  196. Farming1Active = false
  197. wait(2)
  198. Farming1Active = true
  199. end
  200. break
  201. end
  202. else
  203. Events.EquipShovel:FireServer(items)
  204. EquipedShovel = items
  205. end
  206. end
  207. end
  208.  
  209. for i, v in next, BackpackIds do
  210. if v == items then
  211. EquipBackpack(items)
  212. if MyCoins.Value >= BackpackPrices[i] then
  213. BuyItem(v)
  214. EquipBackpack(items)
  215. break
  216. end
  217. end
  218. end
  219. end
  220. end
  221.  
  222. function GetPrice(s)
  223. local price = 0
  224.  
  225. for i, v in next, BackpackIds do
  226. if v == s then
  227. return BackpackPrices[i]
  228. end
  229. end
  230.  
  231. for i, v in next, ShovelIds do
  232. if v == s then
  233. return ShovelPrice[i]
  234. end
  235. end
  236.  
  237. return price
  238. end
  239.  
  240. function Upgrade()
  241. if Autoupgrade == true then
  242. local Owned = Events.CheckIfOwned:InvokeServer(TargetedShovel1)
  243. if not Owned then
  244. TargetedShovel = TargetedShovel1
  245. else
  246. local Owned = Events.CheckIfOwned:InvokeServer(TargetedShovel2)
  247. if not Owned then
  248. TargetedShovel = TargetedShovel2
  249. else
  250. local Owned = Events.CheckIfOwned:InvokeServer(TargetedShovel3)
  251. if not Owned then
  252. TargetedShovel = TargetedShovel3
  253. else
  254. local Owned = Events.CheckIfOwned:InvokeServer(TargetedShovel4)
  255. if not Owned then
  256. TargetedShovel = TargetedShovel4
  257. end
  258. end
  259. end
  260. end
  261. if EquipedBackpack == "Starterpack" then
  262. TargetedBackpack = TargetedBackpack1
  263. else
  264. if EquipedBackpack == "XXL Bag" then
  265. TargetedBackpack = TargetedBackpack2
  266. else
  267. if EquipedBackpack == "Sand Vault" then
  268. TargetedBackpack = TargetedBackpack3
  269. end
  270. end
  271. end
  272.  
  273. end
  274. end
  275.  
  276. -- Objects
  277.  
  278. local MainGUI = Instance.new("ScreenGui")
  279. local MainFrame = Instance.new("Frame")
  280. local Close = Instance.new("TextButton")
  281. local WayPoints = Instance.new("TextButton")
  282. local WayPointsFrame = Instance.new("Frame")
  283. local WayPointsList = Instance.new("ScrollingFrame")
  284. local ShowLocation = Instance.new("TextButton")
  285. local CustomTPPoint = Instance.new("TextButton")
  286. local SellHut = Instance.new("TextButton")
  287. local UpgradeHut = Instance.new("TextButton")
  288. local PrivateIsland01 = Instance.new("TextButton")
  289. local PrivateIsland02 = Instance.new("TextButton")
  290. local PrivateIsland03 = Instance.new("TextButton")
  291. local PrivateIsland04 = Instance.new("TextButton")
  292. local PrivateIsland05 = Instance.new("TextButton")
  293. local PrivateIsland06 = Instance.new("TextButton")
  294. local PrivateIsland07 = Instance.new("TextButton")
  295. local PrivateIsland08 = Instance.new("TextButton")
  296. local PrivateIsland09 = Instance.new("TextButton")
  297. local PrivateIsland10 = Instance.new("TextButton")
  298. local PrivateIsland11 = Instance.new("TextButton")
  299. local PrivateIsland12 = Instance.new("TextButton")
  300. local Players = Instance.new("TextButton")
  301. local ContainerScreen = Instance.new("TextButton")
  302. local ContainerScreenFrame = Instance.new("Frame")
  303. local BackPackHeader1 = Instance.new("TextLabel")
  304. local BackPackHeader2 = Instance.new("TextLabel")
  305. local BackPackHeader3 = Instance.new("TextLabel")
  306. local BackPack1 = Instance.new("TextButton")
  307. local BackPack2 = Instance.new("TextButton")
  308. local BackPack3 = Instance.new("TextButton")
  309. local BackPack4 = Instance.new("TextButton")
  310. local BackPack5 = Instance.new("TextButton")
  311. local BackPack6 = Instance.new("TextButton")
  312. local BackPack7 = Instance.new("TextButton")
  313. local BackPack8 = Instance.new("TextButton")
  314. local BackPack9 = Instance.new("TextButton")
  315. local BackPack10 = Instance.new("TextButton")
  316. local BackPack11 = Instance.new("TextButton")
  317. local BackPack12 = Instance.new("TextButton")
  318. local BackPack13 = Instance.new("TextButton")
  319. local BackPack14 = Instance.new("TextButton")
  320. local BackPack15 = Instance.new("TextButton")
  321. local BackPack16 = Instance.new("TextButton")
  322. local BackPackSelect = Instance.new("TextButton")
  323. local ToolScreen = Instance.new("TextButton")
  324. local ToolScreenFrame = Instance.new("Frame")
  325. local ToolHeader1 = Instance.new("TextLabel")
  326. local ToolHeader2 = Instance.new("TextLabel")
  327. local ToolHeader3 = Instance.new("TextLabel")
  328. local Shovel1 = Instance.new("TextButton")
  329. local Shovel2 = Instance.new("TextButton")
  330. local Shovel3 = Instance.new("TextButton")
  331. local Shovel4 = Instance.new("TextButton")
  332. local Shovel5 = Instance.new("TextButton")
  333. local Shovel6 = Instance.new("TextButton")
  334. local Shovel7 = Instance.new("TextButton")
  335. local Shovel8 = Instance.new("TextButton")
  336. local Shovel9 = Instance.new("TextButton")
  337. local Shovel10 = Instance.new("TextButton")
  338. local Shovel11 = Instance.new("TextButton")
  339. local Shovel12 = Instance.new("TextButton")
  340. local Shovel13 = Instance.new("TextButton")
  341. local Shovel14 = Instance.new("TextButton")
  342. local Shovel15 = Instance.new("TextButton")
  343. local ShovelSelect = Instance.new("TextButton")
  344. local MineSand = Instance.new("TextButton")
  345. local AutoMineFrame = Instance.new("Frame")
  346. local AutoMine1Frame = Instance.new("Frame")
  347. local AutoMine1Text = Instance.new("TextLabel")
  348. local AutoMine1 = Instance.new("TextButton")
  349. local AutoMine2Frame = Instance.new("Frame")
  350. local AutoMine2Text = Instance.new("TextLabel")
  351. local AutoMine2 = Instance.new("TextButton")
  352. local Auto1Upgradeoption = Instance.new("TextButton")
  353. local Auto2Upgradeoption = Instance.new("TextButton")
  354. local AutoMine1Toggle = Instance.new("TextButton")
  355. local AutoMine2Toggle = Instance.new("TextButton")
  356. local chests = Instance.new("TextButton")
  357. local chestsFrame = Instance.new("Frame")
  358. local tpchests = Instance.new("TextButton")
  359. local ChestDigFaster = Instance.new("TextButton")
  360. local PlayerFrame = Instance.new("Frame")
  361. local PlayerList = Instance.new("Frame")
  362. local PlayerListBox = Instance.new("Frame")
  363. local PlyrSel = Instance.new("TextLabel")
  364. local Player1 = Instance.new("TextButton")
  365. local Player2 = Instance.new("TextButton")
  366. local Player3 = Instance.new("TextButton")
  367. local Player4 = Instance.new("TextButton")
  368. local Player5 = Instance.new("TextButton")
  369. local Player6 = Instance.new("TextButton")
  370. local Player7 = Instance.new("TextButton")
  371. local Player8 = Instance.new("TextButton")
  372. local Player9 = Instance.new("TextButton")
  373. local Player10 = Instance.new("TextButton")
  374. local Player11 = Instance.new("TextButton")
  375. local Player12 = Instance.new("TextButton")
  376. local Player13 = Instance.new("TextButton")
  377. local Player14 = Instance.new("TextButton")
  378. local TpPlayer = Instance.new("TextButton")
  379. local InfoScreen = Instance.new("TextButton")
  380. local InfoFrame = Instance.new("Frame")
  381. local InfoText1 = Instance.new("TextLabel")
  382. local AntiAfkMode = Instance.new("TextButton")
  383. local ReJoinServer = Instance.new("TextButton")
  384. local AutoRebirthoption = Instance.new("TextButton")
  385.  
  386. local LP = game:GetService("Players").LocalPlayer
  387.  
  388. -- Properties
  389.  
  390. MainGUI.Name = "MainGUI"
  391. MainGUI.Parent = game.CoreGui
  392. local MainCORE = game.CoreGui["MainGUI"]
  393.  
  394. MainFrame.Name = "MainFrame"
  395. MainFrame.Parent = MainGUI
  396. MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  397. MainFrame.BackgroundTransparency = 0.5
  398. MainFrame.BorderSizePixel = 0
  399. MainFrame.Position = UDim2.new(0.5, -400, 0, -32)
  400. MainFrame.Size = UDim2.new(0, 645, 0, 30)
  401.  
  402. Close.Name = "Close"
  403. Close.Parent = MainFrame
  404. Close.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  405. Close.BorderColor3 = Color3.new(0, 1, 0)
  406. Close.Position = UDim2.new(0, 5, 0, 5)
  407. Close.Size = UDim2.new(0, 20, 0, 20)
  408. Close.Font = Enum.Font.Fantasy
  409. Close.FontSize = Enum.FontSize.Size18
  410. Close.Text = "X"
  411. Close.TextColor3 = Color3.new(1, 0, 0)
  412. Close.TextSize = 17
  413. Close.TextScaled = true
  414. Close.TextWrapped = true
  415.  
  416. WayPoints.Name = "WayPoints"
  417. WayPoints.Parent = MainFrame
  418. WayPoints.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  419. WayPoints.BorderColor3 = Color3.new(0, 1, 0)
  420. WayPoints.Position = UDim2.new(0, 30, 0, 5)
  421. WayPoints.Size = UDim2.new(0, 80, 0, 20)
  422. WayPoints.BackgroundTransparency = 0
  423. WayPoints.Font = Enum.Font.Fantasy
  424. WayPoints.FontSize = Enum.FontSize.Size18
  425. WayPoints.TextColor3 = Color3.new(1, 1, 1)
  426. WayPoints.Text = "WayPoints"
  427. WayPoints.TextSize = 17
  428. WayPoints.TextWrapped = true
  429.  
  430. Players.Name = "Players"
  431. Players.Parent = MainFrame
  432. Players.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  433. Players.BorderColor3 = Color3.new(0, 1, 0)
  434. Players.Position = UDim2.new(0, 115, 0, 5)
  435. Players.Size = UDim2.new(0, 55, 0, 20)
  436. Players.BackgroundTransparency = 0
  437. Players.Font = Enum.Font.Fantasy
  438. Players.FontSize = Enum.FontSize.Size18
  439. Players.TextColor3 = Color3.new(1, 1, 1)
  440. Players.Text = "Players"
  441. Players.TextSize = 17
  442. Players.TextWrapped = true
  443.  
  444. ContainerScreen.Name = "ContainerScreen"
  445. ContainerScreen.Parent = MainFrame
  446. ContainerScreen.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  447. ContainerScreen.BorderColor3 = Color3.new(0, 1, 0)
  448. ContainerScreen.Position = UDim2.new(0, 175, 0, 5)
  449. ContainerScreen.Size = UDim2.new(0, 75, 0, 20)
  450. ContainerScreen.BackgroundTransparency = 0
  451. ContainerScreen.TextColor3 = Color3.new(1, 1, 1)
  452. ContainerScreen.Font = Enum.Font.Fantasy
  453. ContainerScreen.FontSize = Enum.FontSize.Size18
  454. ContainerScreen.Text = "Backpacks"
  455. ContainerScreen.TextSize = 16
  456. ContainerScreen.TextWrapped = true
  457.  
  458. ToolScreen.Name = "ToolScreen"
  459. ToolScreen.Parent = MainFrame
  460. ToolScreen.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  461. ToolScreen.BorderColor3 = Color3.new(0, 1, 0)
  462. ToolScreen.Position = UDim2.new(0, 255, 0, 5)
  463. ToolScreen.Size = UDim2.new(0, 60, 0, 20)
  464. ToolScreen.BackgroundTransparency = 0
  465. ToolScreen.TextColor3 = Color3.new(1, 1, 1)
  466. ToolScreen.Font = Enum.Font.Fantasy
  467. ToolScreen.FontSize = Enum.FontSize.Size18
  468. ToolScreen.Text = "Shovels"
  469. ToolScreen.TextSize = 16
  470. ToolScreen.TextWrapped = true
  471.  
  472. MineSand.Name = "MineSand"
  473. MineSand.Parent = MainFrame
  474. MineSand.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  475. MineSand.BorderColor3 = Color3.new(0, 1, 0)
  476. MineSand.Position = UDim2.new(0, 320, 0, 5)
  477. MineSand.Size = UDim2.new(0, 45, 0, 20)
  478. MineSand.BackgroundTransparency = 0
  479. MineSand.TextColor3 = Color3.new(1, 1, 1)
  480. MineSand.Font = Enum.Font.Fantasy
  481. MineSand.FontSize = Enum.FontSize.Size18
  482. MineSand.Text = "Mine"
  483. MineSand.TextSize = 16
  484. MineSand.TextWrapped = true
  485.  
  486. AutoMineFrame.Name = "AutoMineFrame"
  487. AutoMineFrame.Parent = MainFrame
  488. AutoMineFrame.BackgroundColor3 = Color3.new(0.3, 0.3, 0.3)
  489. AutoMineFrame.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  490. AutoMineFrame.BackgroundTransparency = 0
  491. AutoMineFrame.Position = UDim2.new(0, 265, 0, 33)
  492. AutoMineFrame.Size = UDim2.new(0, 155, 0, 30)
  493. AutoMineFrame.Visible = false
  494.  
  495. AutoMine1.Name = "AutoMine1"
  496. AutoMine1.Parent = AutoMineFrame
  497. AutoMine1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  498. AutoMine1.BorderColor3 = Color3.new(0, 1, 0)
  499. AutoMine1.Position = UDim2.new(0, 5, 0, 5)
  500. AutoMine1.Size = UDim2.new(0, 70, 0, 20)
  501. AutoMine1.BackgroundTransparency = 0
  502. AutoMine1.TextColor3 = Color3.new(1, 1, 1)
  503. AutoMine1.Font = Enum.Font.Fantasy
  504. AutoMine1.FontSize = Enum.FontSize.Size18
  505. AutoMine1.Text = "Method 1"
  506. AutoMine1.TextSize = 16
  507. AutoMine1.TextWrapped = true
  508.  
  509. AutoMine2.Name = "AutoMine2"
  510. AutoMine2.Parent = AutoMineFrame
  511. AutoMine2.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  512. AutoMine2.BorderColor3 = Color3.new(0, 1, 0)
  513. AutoMine2.Position = UDim2.new(0, 80, 0, 5)
  514. AutoMine2.Size = UDim2.new(0, 70, 0, 20)
  515. AutoMine2.BackgroundTransparency = 0
  516. AutoMine2.TextColor3 = Color3.new(1, 1, 1)
  517. AutoMine2.Font = Enum.Font.Fantasy
  518. AutoMine2.FontSize = Enum.FontSize.Size18
  519. AutoMine2.Text = "Method 2"
  520. AutoMine2.TextSize = 16
  521. AutoMine2.TextWrapped = true
  522.  
  523. AutoMine1Frame.Name = "AutoMine1Frame"
  524. AutoMine1Frame.Parent = MainFrame
  525. AutoMine1Frame.BackgroundColor3 = Color3.new(0.3, 0.3, 0.3)
  526. AutoMine1Frame.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  527. AutoMine1Frame.BackgroundTransparency = 0
  528. AutoMine1Frame.Position = UDim2.new(0, 291, 0, 33)
  529. AutoMine1Frame.Size = UDim2.new(0, 105, 0, 85)
  530. AutoMine1Frame.Visible = false
  531.  
  532. AutoMine1Text.Name = "AutoMine1Text"
  533. AutoMine1Text.Parent = AutoMine1Frame
  534. AutoMine1Text.BackgroundColor3 = Color3.new(0, 0, 0)
  535. AutoMine1Text.BorderColor3 = Color3.new(0, 0, 0)
  536. AutoMine1Text.BackgroundTransparency = 1
  537. AutoMine1Text.Position = UDim2.new(0, 5, 0, 5)
  538. AutoMine1Text.Size = UDim2.new(0, 95, 0, 20)
  539. AutoMine1Text.TextColor3 = Color3.new(1, 1, 1)
  540. AutoMine1Text.Font = Enum.Font.Fantasy
  541. AutoMine1Text.FontSize = Enum.FontSize.Size18
  542. AutoMine1Text.Text = "Method 1"
  543. AutoMine1Text.TextSize = 17
  544. AutoMine1Text.TextWrapped = true
  545.  
  546. Auto1Upgradeoption.Name = "Auto1Upgradeoption"
  547. Auto1Upgradeoption.Parent = AutoMine1Frame
  548. Auto1Upgradeoption.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  549. Auto1Upgradeoption.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  550. Auto1Upgradeoption.Position = UDim2.new(0, 5, 0, 30)
  551. Auto1Upgradeoption.Size = UDim2.new(0, 95, 0, 20)
  552. Auto1Upgradeoption.TextColor3 = Color3.new(1, 1, 1)
  553. Auto1Upgradeoption.Font = Enum.Font.Fantasy
  554. Auto1Upgradeoption.FontSize = Enum.FontSize.Size18
  555. Auto1Upgradeoption.Text = "AutoUpgrade"
  556. Auto1Upgradeoption.TextSize = 16
  557. Auto1Upgradeoption.TextWrapped = true
  558.  
  559. AutoMine1Toggle.Name = "AutoMine1Toggle"
  560. AutoMine1Toggle.Parent = AutoMine1Frame
  561. AutoMine1Toggle.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  562. AutoMine1Toggle.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  563. AutoMine1Toggle.Position = UDim2.new(0, 18, 0, 55)
  564. AutoMine1Toggle.Size = UDim2.new(0, 69, 0, 25)
  565. AutoMine1Toggle.Font = Enum.Font.Fantasy
  566. AutoMine1Toggle.FontSize = Enum.FontSize.Size18
  567. AutoMine1Toggle.Text = "Start"
  568. AutoMine1Toggle.TextColor3 = Color3.new(1, 1, 1)
  569. AutoMine1Toggle.TextWrapped = true
  570. AutoMine1Toggle.TextSize = 17
  571.  
  572. AutoMine2Frame.Name = "AutoMine2Frame"
  573. AutoMine2Frame.Parent = MainFrame
  574. AutoMine2Frame.BackgroundColor3 = Color3.new(0.3, 0.3, 0.3)
  575. AutoMine2Frame.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  576. AutoMine2Frame.BackgroundTransparency = 0
  577. AutoMine2Frame.Position = UDim2.new(0, 291, 0, 33)
  578. AutoMine2Frame.Size = UDim2.new(0, 105, 0, 85)
  579. AutoMine2Frame.Visible = false
  580.  
  581. AutoMine2Text.Name = "AutoMine2Text"
  582. AutoMine2Text.Parent = AutoMine2Frame
  583. AutoMine2Text.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  584. AutoMine2Text.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  585. AutoMine2Text.BackgroundTransparency = 1
  586. AutoMine2Text.Position = UDim2.new(0, 5, 0, 5)
  587. AutoMine2Text.Size = UDim2.new(0, 95, 0, 20)
  588. AutoMine2Text.TextColor3 = Color3.new(1, 1, 1)
  589. AutoMine2Text.Font = Enum.Font.Fantasy
  590. AutoMine2Text.FontSize = Enum.FontSize.Size18
  591. AutoMine2Text.Text = "Method 2"
  592. AutoMine2Text.TextSize = 16
  593. AutoMine2Text.TextWrapped = true
  594.  
  595. Auto2Upgradeoption.Name = "Auto2Upgradeoption"
  596. Auto2Upgradeoption.Parent = AutoMine2Frame
  597. Auto2Upgradeoption.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  598. Auto2Upgradeoption.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  599. Auto2Upgradeoption.Position = UDim2.new(0, 5, 0, 30)
  600. Auto2Upgradeoption.Size = UDim2.new(0, 95, 0, 20)
  601. Auto2Upgradeoption.TextColor3 = Color3.new(1, 1, 1)
  602. Auto2Upgradeoption.Font = Enum.Font.Fantasy
  603. Auto2Upgradeoption.FontSize = Enum.FontSize.Size18
  604. Auto2Upgradeoption.Text = "AutoUpgrade"
  605. Auto2Upgradeoption.TextSize = 16
  606. Auto2Upgradeoption.TextWrapped = true
  607.  
  608. AutoMine2Toggle.Name = "AutoMine2Toggle"
  609. AutoMine2Toggle.Parent = AutoMine2Frame
  610. AutoMine2Toggle.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  611. AutoMine2Toggle.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  612. AutoMine2Toggle.Position = UDim2.new(0, 18, 0, 55)
  613. AutoMine2Toggle.Size = UDim2.new(0, 69, 0, 25)
  614. AutoMine2Toggle.Font = Enum.Font.Fantasy
  615. AutoMine2Toggle.FontSize = Enum.FontSize.Size18
  616. AutoMine2Toggle.Text = "Start Mining"
  617. AutoMine2Toggle.TextColor3 = Color3.new(1, 1, 1)
  618. AutoMine2Toggle.TextWrapped = true
  619. AutoMine2Toggle.TextSize = 17
  620.  
  621. chests.Name = "chests"
  622. chests.Parent = MainFrame
  623. chests.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  624. chests.BorderColor3 = Color3.new(0, 1, 0)
  625. chests.Position = UDim2.new(0, 370, 0, 5)
  626. chests.Size = UDim2.new(0, 50, 0, 20)
  627. chests.BackgroundTransparency = 0
  628. chests.TextColor3 = Color3.new(1, 1, 1)
  629. chests.Font = Enum.Font.Fantasy
  630. chests.FontSize = Enum.FontSize.Size18
  631. chests.Text = "Chests"
  632. chests.TextSize = 16
  633. chests.TextWrapped = true
  634.  
  635. AutoRebirthoption.Name = "AutoRebirthoption"
  636. AutoRebirthoption.Parent = MainFrame
  637. AutoRebirthoption.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  638. AutoRebirthoption.BorderColor3 = Color3.new(0, 1, 0)
  639. AutoRebirthoption.Position = UDim2.new(0, 425, 0, 5)
  640. AutoRebirthoption.Size = UDim2.new(0, 85, 0, 20)
  641. AutoRebirthoption.BackgroundTransparency = 0
  642. AutoRebirthoption.TextColor3 = Color3.new(1, 1, 1)
  643. AutoRebirthoption.Font = Enum.Font.Fantasy
  644. AutoRebirthoption.FontSize = Enum.FontSize.Size18
  645. AutoRebirthoption.Text = "AutoRebirth"
  646. AutoRebirthoption.TextSize = 16
  647. AutoRebirthoption.TextWrapped = true
  648.  
  649. chestsFrame.Name = "chestsFrame"
  650. chestsFrame.Parent = MainFrame
  651. chestsFrame.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  652. chestsFrame.BorderColor3 = Color3.new(0, 0, 0)
  653. chestsFrame.BackgroundTransparency = 0.5
  654. chestsFrame.Position = UDim2.new(0, 341, 0, 33)
  655. chestsFrame.Size = UDim2.new(0, 225, 0, 30)
  656. chestsFrame.Visible = false
  657.  
  658. tpchests.Name = "tpchests"
  659. tpchests.Parent = chestsFrame
  660. tpchests.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  661. tpchests.BorderColor3 = Color3.new(0, 1, 0)
  662. tpchests.Position = UDim2.new(0, 5, 0, 5)
  663. tpchests.Size = UDim2.new(0, 70, 0, 20)
  664. tpchests.BackgroundTransparency = 0
  665. tpchests.TextColor3 = Color3.new(1, 1, 1)
  666. tpchests.Font = Enum.Font.Fantasy
  667. tpchests.FontSize = Enum.FontSize.Size18
  668. tpchests.Text = "TP Chests"
  669. tpchests.TextSize = 16
  670. tpchests.TextWrapped = true
  671.  
  672. ChestDigFaster.Name = "ChestDigFaster"
  673. ChestDigFaster.Parent = chestsFrame
  674. ChestDigFaster.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  675. ChestDigFaster.BorderColor3 = Color3.new(0, 1, 0)
  676. ChestDigFaster.Position = UDim2.new(0, 80, 0, 5)
  677. ChestDigFaster.Size = UDim2.new(0, 140, 0, 20)
  678. ChestDigFaster.BackgroundTransparency = 0
  679. ChestDigFaster.TextColor3 = Color3.new(1, 1, 1)
  680. ChestDigFaster.Font = Enum.Font.Fantasy
  681. ChestDigFaster.FontSize = Enum.FontSize.Size18
  682. ChestDigFaster.Text = "TP Chests/Dig Fast"
  683. ChestDigFaster.TextSize = 16
  684. ChestDigFaster.TextWrapped = true
  685.  
  686. AntiAfkMode.Name = "AntiAfkMode"
  687. AntiAfkMode.Parent = MainFrame
  688. AntiAfkMode.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  689. AntiAfkMode.BorderColor3 = Color3.new(0, 1, 0)
  690. AntiAfkMode.Position = UDim2.new(0, 515, 0, 5)
  691. AntiAfkMode.Size = UDim2.new(0, 30, 0, 20)
  692. AntiAfkMode.BackgroundTransparency = 0
  693. AntiAfkMode.TextColor3 = Color3.new(1, 1, 1)
  694. AntiAfkMode.Font = Enum.Font.Fantasy
  695. AntiAfkMode.FontSize = Enum.FontSize.Size18
  696. AntiAfkMode.Text = "Afk"
  697. AntiAfkMode.TextSize = 16
  698. AntiAfkMode.TextWrapped = true
  699.  
  700. ReJoinServer.Name = "ReJoinServer"
  701. ReJoinServer.Parent = MainFrame
  702. ReJoinServer.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  703. ReJoinServer.BorderColor3 = Color3.new(0, 1, 0)
  704. ReJoinServer.Position = UDim2.new(0, 550, 0, 5)
  705. ReJoinServer.Size = UDim2.new(0, 50, 0, 20)
  706. ReJoinServer.BackgroundTransparency = 0
  707. ReJoinServer.TextColor3 = Color3.new(1, 1, 1)
  708. ReJoinServer.Font = Enum.Font.Fantasy
  709. ReJoinServer.FontSize = Enum.FontSize.Size18
  710. ReJoinServer.Text = "ReJoin"
  711. ReJoinServer.TextSize = 16
  712. ReJoinServer.TextWrapped = true
  713.  
  714. InfoScreen.Name = "InfoScreen"
  715. InfoScreen.Parent = MainFrame
  716. InfoScreen.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  717. InfoScreen.BorderColor3 = Color3.new(0, 1, 0)
  718. InfoScreen.Position = UDim2.new(0, 605, 0, 5)
  719. InfoScreen.Size = UDim2.new(0, 35, 0, 20)
  720. InfoScreen.BackgroundTransparency = 0
  721. InfoScreen.Font = Enum.Font.Fantasy
  722. InfoScreen.FontSize = Enum.FontSize.Size18
  723. InfoScreen.TextColor3 = Color3.new(1, 1, 1)
  724. InfoScreen.Text = "Info"
  725. InfoScreen.TextSize = 17
  726. InfoScreen.TextWrapped = true
  727.  
  728. WayPointsFrame.Name = "WayPointsFrame"
  729. WayPointsFrame.Parent = MainFrame
  730. WayPointsFrame.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  731. WayPointsFrame.BorderColor3 = Color3.new(0, 0, 0)
  732. WayPointsFrame.BackgroundTransparency = 0.5
  733. WayPointsFrame.Position = UDim2.new(0, -14, 0, 33)
  734. WayPointsFrame.Size = UDim2.new(0, 170, 0, 250)
  735. WayPointsFrame.Visible = false
  736.  
  737. WayPointsList.Name = "WayPointsList"
  738. WayPointsList.Parent = WayPointsFrame
  739. WayPointsList.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  740. WayPointsList.BorderColor3 = Color3.new(0, 0, 0)
  741. WayPointsList.BackgroundTransparency = 0
  742. WayPointsList.Size = UDim2.new(0, 170, 0, 250)
  743. WayPointsList.CanvasSize = UDim2.new(0, 0, 1.7, 0)
  744.  
  745. ShowLocation.Name = "ShowLocation"
  746. ShowLocation.Parent = WayPointsList
  747. ShowLocation.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  748. ShowLocation.TextColor3 = Color3.new(1, 1, 1)
  749. ShowLocation.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  750. ShowLocation.Position = UDim2.new(0, 5, 0, 5)
  751. ShowLocation.Size = UDim2.new(0, 147, 0, 40)
  752. ShowLocation.Font = Enum.Font.Fantasy
  753. ShowLocation.FontSize = Enum.FontSize.Size14
  754. ShowLocation.Text = "Show Current Coords\nSet Custom Location"
  755. ShowLocation.TextWrapped = true
  756. ShowLocation.TextSize = 15
  757.  
  758. CustomTPPoint.Name = "CustomTPPoint"
  759. CustomTPPoint.Parent = WayPointsList
  760. CustomTPPoint.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  761. CustomTPPoint.TextColor3 = Color3.new(1, 1, 1)
  762. CustomTPPoint.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  763. CustomTPPoint.Position = UDim2.new(0, 5, 0, 50)
  764. CustomTPPoint.Size = UDim2.new(0, 147, 0, 20)
  765. CustomTPPoint.Font = Enum.Font.Fantasy
  766. CustomTPPoint.FontSize = Enum.FontSize.Size14
  767. CustomTPPoint.Text = "TP to Custom Location"
  768. CustomTPPoint.TextWrapped = true
  769. CustomTPPoint.TextSize = 15
  770.  
  771. PrivateIsland01.Name = "PrivateIsland01"
  772. PrivateIsland01.Parent = WayPointsList
  773. PrivateIsland01.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  774. PrivateIsland01.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  775. PrivateIsland01.Position = UDim2.new(0, 5, 0, 75)
  776. PrivateIsland01.Size = UDim2.new(0, 147, 0, 20)
  777. PrivateIsland01.TextColor3 = Color3.new(1, 1, 1)
  778. PrivateIsland01.Font = Enum.Font.Fantasy
  779. PrivateIsland01.FontSize = Enum.FontSize.Size18
  780. PrivateIsland01.Text = "Private Island 01"
  781. PrivateIsland01.TextSize = 16
  782.  
  783. PrivateIsland02.Name = "PrivateIsland02"
  784. PrivateIsland02.Parent = WayPointsList
  785. PrivateIsland02.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  786. PrivateIsland02.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  787. PrivateIsland02.Position = UDim2.new(0, 5, 0, 100)
  788. PrivateIsland02.Size = UDim2.new(0, 147, 0, 20)
  789. PrivateIsland02.TextColor3 = Color3.new(1, 1, 1)
  790. PrivateIsland02.Font = Enum.Font.Fantasy
  791. PrivateIsland02.FontSize = Enum.FontSize.Size18
  792. PrivateIsland02.Text = "Private Island 02"
  793. PrivateIsland02.TextSize = 16
  794.  
  795. PrivateIsland03.Name = "PrivateIsland03"
  796. PrivateIsland03.Parent = WayPointsList
  797. PrivateIsland03.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  798. PrivateIsland03.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  799. PrivateIsland03.Position = UDim2.new(0, 5, 0, 125)
  800. PrivateIsland03.Size = UDim2.new(0, 147, 0, 20)
  801. PrivateIsland03.TextColor3 = Color3.new(1, 1, 1)
  802. PrivateIsland03.Font = Enum.Font.Fantasy
  803. PrivateIsland03.FontSize = Enum.FontSize.Size18
  804. PrivateIsland03.Text = "Private Island 03"
  805. PrivateIsland03.TextSize = 16
  806.  
  807. PrivateIsland04.Name = "PrivateIsland04"
  808. PrivateIsland04.Parent = WayPointsList
  809. PrivateIsland04.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  810. PrivateIsland04.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  811. PrivateIsland04.Position = UDim2.new(0, 5, 0, 150)
  812. PrivateIsland04.Size = UDim2.new(0, 147, 0, 20)
  813. PrivateIsland04.TextColor3 = Color3.new(1, 1, 1)
  814. PrivateIsland04.Font = Enum.Font.Fantasy
  815. PrivateIsland04.FontSize = Enum.FontSize.Size18
  816. PrivateIsland04.Text = "Private Island 04"
  817. PrivateIsland04.TextSize = 16
  818.  
  819. PrivateIsland05.Name = "PrivateIsland05"
  820. PrivateIsland05.Parent = WayPointsList
  821. PrivateIsland05.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  822. PrivateIsland05.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  823. PrivateIsland05.Position = UDim2.new(0, 5, 0, 175)
  824. PrivateIsland05.Size = UDim2.new(0, 147, 0, 20)
  825. PrivateIsland05.TextColor3 = Color3.new(1, 1, 1)
  826. PrivateIsland05.Font = Enum.Font.Fantasy
  827. PrivateIsland05.FontSize = Enum.FontSize.Size18
  828. PrivateIsland05.Text = "Private Island 05"
  829. PrivateIsland05.TextSize = 16
  830.  
  831. PrivateIsland06.Name = "PrivateIsland06"
  832. PrivateIsland06.Parent = WayPointsList
  833. PrivateIsland06.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  834. PrivateIsland06.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  835. PrivateIsland06.Position = UDim2.new(0, 5, 0, 200)
  836. PrivateIsland06.Size = UDim2.new(0, 147, 0, 20)
  837. PrivateIsland06.TextColor3 = Color3.new(1, 1, 1)
  838. PrivateIsland06.Font = Enum.Font.Fantasy
  839. PrivateIsland06.FontSize = Enum.FontSize.Size18
  840. PrivateIsland06.Text = "Private Island 06"
  841. PrivateIsland06.TextSize = 16
  842.  
  843. PrivateIsland07.Name = "PrivateIsland07"
  844. PrivateIsland07.Parent = WayPointsList
  845. PrivateIsland07.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  846. PrivateIsland07.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  847. PrivateIsland07.Position = UDim2.new(0, 5, 0, 225)
  848. PrivateIsland07.Size = UDim2.new(0, 147, 0, 20)
  849. PrivateIsland07.TextColor3 = Color3.new(1, 1, 1)
  850. PrivateIsland07.Font = Enum.Font.Fantasy
  851. PrivateIsland07.FontSize = Enum.FontSize.Size18
  852. PrivateIsland07.Text = "Private Island 07"
  853. PrivateIsland07.TextSize = 16
  854.  
  855. PrivateIsland08.Name = "PrivateIsland08"
  856. PrivateIsland08.Parent = WayPointsList
  857. PrivateIsland08.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  858. PrivateIsland08.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  859. PrivateIsland08.Position = UDim2.new(0, 5, 0, 250)
  860. PrivateIsland08.Size = UDim2.new(0, 147, 0, 20)
  861. PrivateIsland08.TextColor3 = Color3.new(1, 1, 1)
  862. PrivateIsland08.Font = Enum.Font.Fantasy
  863. PrivateIsland08.FontSize = Enum.FontSize.Size18
  864. PrivateIsland08.Text = "Private Island 08"
  865. PrivateIsland08.TextSize = 16
  866.  
  867. PrivateIsland09.Name = "PrivateIsland09"
  868. PrivateIsland09.Parent = WayPointsList
  869. PrivateIsland09.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  870. PrivateIsland09.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  871. PrivateIsland09.Position = UDim2.new(0, 5, 0, 275)
  872. PrivateIsland09.Size = UDim2.new(0, 147, 0, 20)
  873. PrivateIsland09.TextColor3 = Color3.new(1, 1, 1)
  874. PrivateIsland09.Font = Enum.Font.Fantasy
  875. PrivateIsland09.FontSize = Enum.FontSize.Size18
  876. PrivateIsland09.Text = "Private Island 09"
  877. PrivateIsland09.TextSize = 16
  878.  
  879. PrivateIsland10.Name = "PrivateIsland10"
  880. PrivateIsland10.Parent = WayPointsList
  881. PrivateIsland10.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  882. PrivateIsland10.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  883. PrivateIsland10.Position = UDim2.new(0, 5, 0, 300)
  884. PrivateIsland10.Size = UDim2.new(0, 147, 0, 20)
  885. PrivateIsland10.TextColor3 = Color3.new(1, 1, 1)
  886. PrivateIsland10.Font = Enum.Font.Fantasy
  887. PrivateIsland10.FontSize = Enum.FontSize.Size18
  888. PrivateIsland10.Text = "Private Island 10"
  889. PrivateIsland10.TextSize = 16
  890.  
  891. PrivateIsland11.Name = "PrivateIsland11"
  892. PrivateIsland11.Parent = WayPointsList
  893. PrivateIsland11.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  894. PrivateIsland11.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  895. PrivateIsland11.Position = UDim2.new(0, 5, 0, 325)
  896. PrivateIsland11.Size = UDim2.new(0, 147, 0, 20)
  897. PrivateIsland11.TextColor3 = Color3.new(1, 1, 1)
  898. PrivateIsland11.Font = Enum.Font.Fantasy
  899. PrivateIsland11.FontSize = Enum.FontSize.Size18
  900. PrivateIsland11.Text = "Private Island 11"
  901. PrivateIsland11.TextSize = 16
  902.  
  903. PrivateIsland12.Name = "PrivateIsland12"
  904. PrivateIsland12.Parent = WayPointsList
  905. PrivateIsland12.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  906. PrivateIsland12.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  907. PrivateIsland12.Position = UDim2.new(0, 5, 0, 350)
  908. PrivateIsland12.Size = UDim2.new(0, 147, 0, 20)
  909. PrivateIsland12.TextColor3 = Color3.new(1, 1, 1)
  910. PrivateIsland12.Font = Enum.Font.Fantasy
  911. PrivateIsland12.FontSize = Enum.FontSize.Size18
  912. PrivateIsland12.Text = "Private Island 12"
  913. PrivateIsland12.TextSize = 16
  914.  
  915. SellHut.Name = "SellHut"
  916. SellHut.Parent = WayPointsList
  917. SellHut.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  918. SellHut.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  919. SellHut.Position = UDim2.new(0, 5, 0, 375)
  920. SellHut.Size = UDim2.new(0, 147, 0, 20)
  921. SellHut.TextColor3 = Color3.new(1, 1, 1)
  922. SellHut.Font = Enum.Font.Fantasy
  923. SellHut.FontSize = Enum.FontSize.Size18
  924. SellHut.Text = "Sell Hut"
  925. SellHut.TextSize = 16
  926.  
  927. UpgradeHut.Name = "UpgradeHut"
  928. UpgradeHut.Parent = WayPointsList
  929. UpgradeHut.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  930. UpgradeHut.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  931. UpgradeHut.Position = UDim2.new(0, 5, 0, 400)
  932. UpgradeHut.Size = UDim2.new(0, 147, 0, 20)
  933. UpgradeHut.TextColor3 = Color3.new(1, 1, 1)
  934. UpgradeHut.Font = Enum.Font.Fantasy
  935. UpgradeHut.FontSize = Enum.FontSize.Size18
  936. UpgradeHut.Text = "Upgrade Hut"
  937. UpgradeHut.TextSize = 16
  938.  
  939. PlayerFrame.Name = "PlayerFrame"
  940. PlayerFrame.Parent = MainFrame
  941. PlayerFrame.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  942. PlayerFrame.BackgroundTransparency = 0.5
  943. PlayerFrame.BorderColor3 = Color3.new(0, 0, 0)
  944. PlayerFrame.Position = UDim2.new(0, -20, 0, 33)
  945. PlayerFrame.Size = UDim2.new(0, 336, 0, 240)
  946. PlayerFrame.Visible = false
  947.  
  948. PlyrSel.Name = "PlyrSel"
  949. PlyrSel.Parent = PlayerFrame
  950. PlyrSel.BackgroundColor3 = Color3.new(1, 1, 1)
  951. PlyrSel.BackgroundTransparency = 0.15
  952. PlyrSel.BorderColor3 = Color3.new(0, 0, 0)
  953. PlyrSel.Position = UDim2.new(0, 88, 0, 5)
  954. PlyrSel.Size = UDim2.new(0, 160, 0, 20)
  955. PlyrSel.Font = Enum.Font.SourceSans
  956. PlyrSel.FontSize = Enum.FontSize.Size18
  957. PlyrSel.Text = "SELECT A PLAYER"
  958. PlyrSel.TextColor3 = Color3.new(0, 0, 0)
  959. PlyrSel.TextScaled = true
  960. PlyrSel.TextSize = 17
  961. PlyrSel.TextWrapped = true
  962.  
  963. Player1.Name = "Player1"
  964. Player1.Parent = PlayerFrame
  965. Player1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  966. Player1.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  967. Player1.Position = UDim2.new(0, 5, 0, 30)
  968. Player1.Size = UDim2.new(0, 160, 0, 20)
  969. Player1.Font = Enum.Font.Fantasy
  970. Player1.FontSize = Enum.FontSize.Size18
  971. Player1.Text = ""
  972. Player1.TextColor3 = Color3.new(1, 1, 1)
  973. Player1.TextSize = 15
  974. Player1.TextWrapped = true
  975.  
  976. Player2.Name = "Player2"
  977. Player2.Parent = PlayerFrame
  978. Player2.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  979. Player2.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  980. Player2.Position = UDim2.new(0, 171, 0, 30)
  981. Player2.Size = UDim2.new(0, 160, 0, 20)
  982. Player2.Font = Enum.Font.Fantasy
  983. Player2.FontSize = Enum.FontSize.Size18
  984. Player2.Text = ""
  985. Player2.TextColor3 = Color3.new(1, 1, 1)
  986. Player2.TextSize = 15
  987. Player2.TextWrapped = true
  988.  
  989. Player3.Name = "Player3"
  990. Player3.Parent = PlayerFrame
  991. Player3.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  992. Player3.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  993. Player3.Position = UDim2.new(0, 5, 0, 55)
  994. Player3.Size = UDim2.new(0, 160, 0, 20)
  995. Player3.Font = Enum.Font.Fantasy
  996. Player3.FontSize = Enum.FontSize.Size18
  997. Player3.Text = ""
  998. Player3.TextColor3 = Color3.new(1, 1, 1)
  999. Player3.TextSize = 15
  1000. Player3.TextWrapped = true
  1001.  
  1002. Player4.Name = "Player4"
  1003. Player4.Parent = PlayerFrame
  1004. Player4.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1005. Player4.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1006. Player4.Position = UDim2.new(0, 171, 0, 55)
  1007. Player4.Size = UDim2.new(0, 160, 0, 20)
  1008. Player4.Font = Enum.Font.Fantasy
  1009. Player4.FontSize = Enum.FontSize.Size18
  1010. Player4.Text = ""
  1011. Player4.TextColor3 = Color3.new(1, 1, 1)
  1012. Player4.TextSize = 15
  1013. Player4.TextWrapped = true
  1014.  
  1015. Player5.Name = "Player5"
  1016. Player5.Parent = PlayerFrame
  1017. Player5.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1018. Player5.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1019. Player5.Position = UDim2.new(0, 5, 0, 80)
  1020. Player5.Size = UDim2.new(0, 160, 0, 20)
  1021. Player5.Font = Enum.Font.Fantasy
  1022. Player5.FontSize = Enum.FontSize.Size18
  1023. Player5.Text = ""
  1024. Player5.TextColor3 = Color3.new(1, 1, 1)
  1025. Player5.TextSize = 15
  1026. Player5.TextWrapped = true
  1027.  
  1028. Player6.Name = "Player6"
  1029. Player6.Parent = PlayerFrame
  1030. Player6.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1031. Player6.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1032. Player6.Position = UDim2.new(0, 171, 0, 80)
  1033. Player6.Size = UDim2.new(0, 160, 0, 20)
  1034. Player6.Font = Enum.Font.Fantasy
  1035. Player6.FontSize = Enum.FontSize.Size18
  1036. Player6.Text = ""
  1037. Player6.TextColor3 = Color3.new(1, 1, 1)
  1038. Player6.TextSize = 15
  1039. Player6.TextWrapped = true
  1040.  
  1041. Player7.Name = "Player7"
  1042. Player7.Parent = PlayerFrame
  1043. Player7.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1044. Player7.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1045. Player7.Position = UDim2.new(0, 5, 0, 105)
  1046. Player7.Size = UDim2.new(0, 160, 0, 20)
  1047. Player7.Font = Enum.Font.Fantasy
  1048. Player7.FontSize = Enum.FontSize.Size18
  1049. Player7.Text = ""
  1050. Player7.TextColor3 = Color3.new(1, 1, 1)
  1051. Player7.TextSize = 15
  1052. Player7.TextWrapped = true
  1053.  
  1054. Player8.Name = "Player8"
  1055. Player8.Parent = PlayerFrame
  1056. Player8.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1057. Player8.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1058. Player8.Position = UDim2.new(0, 171, 0, 105)
  1059. Player8.Size = UDim2.new(0, 160, 0, 20)
  1060. Player8.Font = Enum.Font.Fantasy
  1061. Player8.FontSize = Enum.FontSize.Size18
  1062. Player8.Text = ""
  1063. Player8.TextColor3 = Color3.new(1, 1, 1)
  1064. Player8.TextSize = 15
  1065. Player8.TextWrapped = true
  1066.  
  1067. Player9.Name = "Player9"
  1068. Player9.Parent = PlayerFrame
  1069. Player9.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1070. Player9.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1071. Player9.Position = UDim2.new(0, 5, 0, 130)
  1072. Player9.Size = UDim2.new(0, 160, 0, 20)
  1073. Player9.Font = Enum.Font.Fantasy
  1074. Player9.FontSize = Enum.FontSize.Size18
  1075. Player9.Text = ""
  1076. Player9.TextColor3 = Color3.new(1, 1, 1)
  1077. Player9.TextSize = 15
  1078. Player9.TextWrapped = true
  1079.  
  1080. Player10.Name = "Player10"
  1081. Player10.Parent = PlayerFrame
  1082. Player10.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1083. Player10.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1084. Player10.Position = UDim2.new(0, 171, 0, 130)
  1085. Player10.Size = UDim2.new(0, 160, 0, 20)
  1086. Player10.Font = Enum.Font.Fantasy
  1087. Player10.FontSize = Enum.FontSize.Size18
  1088. Player10.Text = ""
  1089. Player10.TextColor3 = Color3.new(1, 1, 1)
  1090. Player10.TextSize = 15
  1091. Player10.TextWrapped = true
  1092.  
  1093. Player11.Name = "Player11"
  1094. Player11.Parent = PlayerFrame
  1095. Player11.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1096. Player11.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1097. Player11.Position = UDim2.new(0, 5, 0, 155)
  1098. Player11.Size = UDim2.new(0, 160, 0, 20)
  1099. Player11.Font = Enum.Font.Fantasy
  1100. Player11.FontSize = Enum.FontSize.Size18
  1101. Player11.Text = ""
  1102. Player11.TextColor3 = Color3.new(1, 1, 1)
  1103. Player11.TextSize = 15
  1104. Player11.TextWrapped = true
  1105.  
  1106. Player12.Name = "Player12"
  1107. Player12.Parent = PlayerFrame
  1108. Player12.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1109. Player12.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1110. Player12.Position = UDim2.new(0, 171, 0, 155)
  1111. Player12.Size = UDim2.new(0, 160, 0, 20)
  1112. Player12.Font = Enum.Font.Fantasy
  1113. Player12.FontSize = Enum.FontSize.Size18
  1114. Player12.Text = ""
  1115. Player12.TextColor3 = Color3.new(1, 1, 1)
  1116. Player12.TextSize = 15
  1117. Player12.TextWrapped = true
  1118.  
  1119. Player13.Name = "Player13"
  1120. Player13.Parent = PlayerFrame
  1121. Player13.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1122. Player13.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1123. Player13.Position = UDim2.new(0, 5, 0, 180)
  1124. Player13.Size = UDim2.new(0, 160, 0, 20)
  1125. Player13.Font = Enum.Font.Fantasy
  1126. Player13.FontSize = Enum.FontSize.Size18
  1127. Player13.Text = ""
  1128. Player13.TextColor3 = Color3.new(1, 1, 1)
  1129. Player13.TextSize = 15
  1130. Player13.TextWrapped = true
  1131.  
  1132. Player14.Name = "Player14"
  1133. Player14.Parent = PlayerFrame
  1134. Player14.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1135. Player14.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1136. Player14.Position = UDim2.new(0, 171, 0, 180)
  1137. Player14.Size = UDim2.new(0, 160, 0, 20)
  1138. Player14.Font = Enum.Font.Fantasy
  1139. Player14.FontSize = Enum.FontSize.Size18
  1140. Player14.Text = ""
  1141. Player14.TextColor3 = Color3.new(1, 1, 1)
  1142. Player14.TextSize = 15
  1143. Player14.TextWrapped = true
  1144.  
  1145. TpPlayer.Name = "TpPlayer"
  1146. TpPlayer.Parent = PlayerFrame
  1147. TpPlayer.BackgroundColor3 = Color3.new(0.18, 0.18, 0.18)
  1148. TpPlayer.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1149. TpPlayer.Position = UDim2.new(0, 88, 0, 205)
  1150. TpPlayer.Size = UDim2.new(0, 160, 0, 30)
  1151. TpPlayer.Font = Enum.Font.Fantasy
  1152. TpPlayer.FontSize = Enum.FontSize.Size18
  1153. TpPlayer.Text = "Tp to Player"
  1154. TpPlayer.TextColor3 = Color3.new(1, 1, 1)
  1155. TpPlayer.TextWrapped = true
  1156. TpPlayer.TextSize = 17
  1157.  
  1158. ContainerScreenFrame.Name = "ContainerScreenFrame"
  1159. ContainerScreenFrame.Parent = MainFrame
  1160. ContainerScreenFrame.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1161. ContainerScreenFrame.BorderColor3 = Color3.new(0, 0, 0)
  1162. ContainerScreenFrame.BackgroundTransparency = 0.5
  1163. ContainerScreenFrame.Position = UDim2.new(0, 108, 0, 33)
  1164. ContainerScreenFrame.Size = UDim2.new(0, 230, 0, 471)
  1165. ContainerScreenFrame.Visible = false
  1166.  
  1167. BackPackHeader1.Name = "BackPackHeader1"
  1168. BackPackHeader1.Parent = ContainerScreenFrame
  1169. BackPackHeader1.BackgroundColor3 = Color3.new(1, 0, 0)
  1170. BackPackHeader1.BackgroundTransparency = 0.15
  1171. BackPackHeader1.BorderColor3 = Color3.new(1, 1, 1)
  1172. BackPackHeader1.Position = UDim2.new(0, 5, 0, 5)
  1173. BackPackHeader1.Size = UDim2.new(0, 55, 0, 20)
  1174. BackPackHeader1.Font = Enum.Font.SourceSans
  1175. BackPackHeader1.Text = "Max"
  1176. BackPackHeader1.TextColor3 = Color3.new(0, 0, 0)
  1177. BackPackHeader1.TextSize = 17
  1178. BackPackHeader1.TextWrapped = true
  1179. BackPackHeader1.TextYAlignment = Enum.TextYAlignment.Top
  1180.  
  1181. BackPackHeader2.Name = "BackPackHeader2"
  1182. BackPackHeader2.Parent = ContainerScreenFrame
  1183. BackPackHeader2.BackgroundColor3 = Color3.new(1, 1, 1)
  1184. BackPackHeader2.BackgroundTransparency = 0.15
  1185. BackPackHeader2.BorderColor3 = Color3.new(1, 1, 1)
  1186. BackPackHeader2.Position = UDim2.new(0, 60, 0, 5)
  1187. BackPackHeader2.Size = UDim2.new(0, 110, 0, 20)
  1188. BackPackHeader2.Font = Enum.Font.SourceSans
  1189. BackPackHeader2.Text = "Name"
  1190. BackPackHeader2.TextColor3 = Color3.new(0, 0, 0)
  1191. BackPackHeader2.TextSize = 17
  1192. BackPackHeader2.TextWrapped = true
  1193. BackPackHeader2.TextYAlignment = Enum.TextYAlignment.Top
  1194.  
  1195. BackPackHeader3.Name = "BackPackHeader3"
  1196. BackPackHeader3.Parent = ContainerScreenFrame
  1197. BackPackHeader3.BackgroundColor3 = Color3.new(1, 0, 0)
  1198. BackPackHeader3.BackgroundTransparency = 0.15
  1199. BackPackHeader3.BorderColor3 = Color3.new(1, 1, 1)
  1200. BackPackHeader3.Position = UDim2.new(0, 170, 0, 5)
  1201. BackPackHeader3.Size = UDim2.new(0, 55, 0, 20)
  1202. BackPackHeader3.Font = Enum.Font.SourceSans
  1203. BackPackHeader3.Text = "Price"
  1204. BackPackHeader3.TextColor3 = Color3.new(0, 0, 0)
  1205. BackPackHeader3.TextSize = 17
  1206. BackPackHeader3.TextWrapped = true
  1207. BackPackHeader3.TextYAlignment = Enum.TextYAlignment.Top
  1208.  
  1209. BackPack1.Name = "BackPack1"
  1210. BackPack1.Parent = ContainerScreenFrame
  1211. BackPack1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1212. BackPack1.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1213. BackPack1.Position = UDim2.new(0, 5, 0, 30)
  1214. BackPack1.Size = UDim2.new(0, 220, 0, 20)
  1215. BackPack1.TextColor3 = Color3.new(1, 1, 1)
  1216. BackPack1.Font = Enum.Font.Fantasy
  1217. BackPack1.FontSize = Enum.FontSize.Size18
  1218. BackPack1.TextSize = 15
  1219. BackPack1.TextXAlignment = Enum.TextXAlignment.Left
  1220. BackPack1.Text = " 10 - Starterpack - 0"
  1221.  
  1222. BackPack2.Name = "BackPack2"
  1223. BackPack2.Parent = ContainerScreenFrame
  1224. BackPack2.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1225. BackPack2.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1226. BackPack2.Position = UDim2.new(0, 5, 0, 55)
  1227. BackPack2.Size = UDim2.new(0, 220, 0, 20)
  1228. BackPack2.TextColor3 = Color3.new(1, 1, 1)
  1229. BackPack2.Font = Enum.Font.Fantasy
  1230. BackPack2.FontSize = Enum.FontSize.Size18
  1231. BackPack2.TextSize = 15
  1232. BackPack2.TextXAlignment = Enum.TextXAlignment.Left
  1233. BackPack2.Text = " 25 - Small Bag - 150"
  1234.  
  1235. BackPack3.Name = "BackPack3"
  1236. BackPack3.Parent = ContainerScreenFrame
  1237. BackPack3.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1238. BackPack3.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1239. BackPack3.Position = UDim2.new(0, 5, 0, 80)
  1240. BackPack3.Size = UDim2.new(0, 220, 0, 20)
  1241. BackPack3.TextColor3 = Color3.new(1, 1, 1)
  1242. BackPack3.Font = Enum.Font.Fantasy
  1243. BackPack3.FontSize = Enum.FontSize.Size18
  1244. BackPack3.TextSize = 15
  1245. BackPack3.TextXAlignment = Enum.TextXAlignment.Left
  1246. BackPack3.Text = " 40 - Medium Bag - 375"
  1247.  
  1248. BackPack4.Name = "BackPack4"
  1249. BackPack4.Parent = ContainerScreenFrame
  1250. BackPack4.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1251. BackPack4.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1252. BackPack4.Position = UDim2.new(0, 5, 0, 105)
  1253. BackPack4.Size = UDim2.new(0, 220, 0, 20)
  1254. BackPack4.TextColor3 = Color3.new(1, 1, 1)
  1255. BackPack4.Font = Enum.Font.Fantasy
  1256. BackPack4.FontSize = Enum.FontSize.Size18
  1257. BackPack4.TextSize = 15
  1258. BackPack4.TextXAlignment = Enum.TextXAlignment.Left
  1259. BackPack4.Text = " 140 - Large Bag - 900"
  1260.  
  1261. BackPack5.Name = "BackPack5"
  1262. BackPack5.Parent = ContainerScreenFrame
  1263. BackPack5.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1264. BackPack5.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1265. BackPack5.Position = UDim2.new(0, 5, 0, 130)
  1266. BackPack5.Size = UDim2.new(0, 220, 0, 20)
  1267. BackPack5.TextColor3 = Color3.new(1, 1, 1)
  1268. BackPack5.Font = Enum.Font.Fantasy
  1269. BackPack5.FontSize = Enum.FontSize.Size18
  1270. BackPack5.TextSize = 15
  1271. BackPack5.TextXAlignment = Enum.TextXAlignment.Left
  1272. BackPack5.Text = " 250 - XL Bag - 3150"
  1273.  
  1274. BackPack6.Name = "BackPack6"
  1275. BackPack6.Parent = ContainerScreenFrame
  1276. BackPack6.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1277. BackPack6.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1278. BackPack6.Position = UDim2.new(0, 5, 0, 155)
  1279. BackPack6.Size = UDim2.new(0, 220, 0, 20)
  1280. BackPack6.TextColor3 = Color3.new(1, 1, 1)
  1281. BackPack6.Font = Enum.Font.Fantasy
  1282. BackPack6.FontSize = Enum.FontSize.Size18
  1283. BackPack6.TextSize = 15
  1284. BackPack6.TextXAlignment = Enum.TextXAlignment.Left
  1285. BackPack6.Text = " 480 - XXL Bag - 13.2K"
  1286.  
  1287. BackPack7.Name = "BackPack7"
  1288. BackPack7.Parent = ContainerScreenFrame
  1289. BackPack7.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1290. BackPack7.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1291. BackPack7.Position = UDim2.new(0, 5, 0, 180)
  1292. BackPack7.Size = UDim2.new(0, 220, 0, 20)
  1293. BackPack7.TextColor3 = Color3.new(1, 1, 1)
  1294. BackPack7.Font = Enum.Font.Fantasy
  1295. BackPack7.FontSize = Enum.FontSize.Size18
  1296. BackPack7.TextSize = 15
  1297. BackPack7.TextXAlignment = Enum.TextXAlignment.Left
  1298. BackPack7.Text = " 2500 - Sand Safe - 150K"
  1299.  
  1300. BackPack8.Name = "BackPack8"
  1301. BackPack8.Parent = ContainerScreenFrame
  1302. BackPack8.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1303. BackPack8.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1304. BackPack8.Position = UDim2.new(0, 5, 0, 205)
  1305. BackPack8.Size = UDim2.new(0, 220, 0, 20)
  1306. BackPack8.TextColor3 = Color3.new(1, 1, 1)
  1307. BackPack8.Font = Enum.Font.Fantasy
  1308. BackPack8.FontSize = Enum.FontSize.Size18
  1309. BackPack8.TextSize = 15
  1310. BackPack8.TextXAlignment = Enum.TextXAlignment.Left
  1311. BackPack8.Text = " 5000 - Sand Vault - 350K"
  1312.  
  1313. BackPack9.Name = "BackPack9"
  1314. BackPack9.Parent = ContainerScreenFrame
  1315. BackPack9.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1316. BackPack9.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1317. BackPack9.Position = UDim2.new(0, 5, 0, 230)
  1318. BackPack9.Size = UDim2.new(0, 220, 0, 20)
  1319. BackPack9.TextColor3 = Color3.new(1, 1, 1)
  1320. BackPack9.Font = Enum.Font.Fantasy
  1321. BackPack9.FontSize = Enum.FontSize.Size18
  1322. BackPack9.TextSize = 15
  1323. BackPack9.TextXAlignment = Enum.TextXAlignment.Left
  1324. BackPack9.Text = " 10000 - Small Canister - 1.5Mil"
  1325.  
  1326. BackPack10.Name = "BackPack10"
  1327. BackPack10.Parent = ContainerScreenFrame
  1328. BackPack10.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1329. BackPack10.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1330. BackPack10.Position = UDim2.new(0, 5, 0, 255)
  1331. BackPack10.Size = UDim2.new(0, 220, 0, 20)
  1332. BackPack10.TextColor3 = Color3.new(1, 1, 1)
  1333. BackPack10.Font = Enum.Font.Fantasy
  1334. BackPack10.FontSize = Enum.FontSize.Size18
  1335. BackPack10.TextSize = 15
  1336. BackPack10.TextXAlignment = Enum.TextXAlignment.Left
  1337. BackPack10.Text = " 15000 - Medium Canister - 4Mil"
  1338.  
  1339. BackPack11.Name = "BackPack11"
  1340. BackPack11.Parent = ContainerScreenFrame
  1341. BackPack11.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1342. BackPack11.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1343. BackPack11.Position = UDim2.new(0, 5, 0, 280)
  1344. BackPack11.Size = UDim2.new(0, 220, 0, 20)
  1345. BackPack11.TextColor3 = Color3.new(1, 1, 1)
  1346. BackPack11.Font = Enum.Font.Fantasy
  1347. BackPack11.FontSize = Enum.FontSize.Size18
  1348. BackPack11.TextSize = 15
  1349. BackPack11.TextXAlignment = Enum.TextXAlignment.Left
  1350. BackPack11.Text = " 25000 - Large Canister - 8Mil"
  1351.  
  1352. BackPack12.Name = "BackPack12"
  1353. BackPack12.Parent = ContainerScreenFrame
  1354. BackPack12.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1355. BackPack12.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1356. BackPack12.Position = UDim2.new(0, 5, 0, 305)
  1357. BackPack12.Size = UDim2.new(0, 220, 0, 20)
  1358. BackPack12.TextColor3 = Color3.new(1, 1, 1)
  1359. BackPack12.Font = Enum.Font.Fantasy
  1360. BackPack12.FontSize = Enum.FontSize.Size18
  1361. BackPack12.TextSize = 15
  1362. BackPack12.TextXAlignment = Enum.TextXAlignment.Left
  1363. BackPack12.Text = " 35000 - Duffle Bag - 12Mil"
  1364.  
  1365. BackPack13.Name = "BackPack13"
  1366. BackPack13.Parent = ContainerScreenFrame
  1367. BackPack13.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1368. BackPack13.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1369. BackPack13.Position = UDim2.new(0, 5, 0, 330)
  1370. BackPack13.Size = UDim2.new(0, 220, 0, 20)
  1371. BackPack13.TextColor3 = Color3.new(1, 1, 1)
  1372. BackPack13.Font = Enum.Font.Fantasy
  1373. BackPack13.FontSize = Enum.FontSize.Size18
  1374. BackPack13.TextSize = 15
  1375. BackPack13.TextXAlignment = Enum.TextXAlignment.Left
  1376. BackPack13.Text = " 50000 - Dual Canister - 24Mil"
  1377.  
  1378. BackPack14.Name = "BackPack14"
  1379. BackPack14.Parent = ContainerScreenFrame
  1380. BackPack14.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1381. BackPack14.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1382. BackPack14.Position = UDim2.new(0, 5, 0, 355)
  1383. BackPack14.Size = UDim2.new(0, 220, 0, 20)
  1384. BackPack14.TextColor3 = Color3.new(1, 1, 1)
  1385. BackPack14.Font = Enum.Font.Fantasy
  1386. BackPack14.FontSize = Enum.FontSize.Size18
  1387. BackPack14.TextSize = 15
  1388. BackPack14.TextXAlignment = Enum.TextXAlignment.Left
  1389. BackPack14.Text = " 75000 - Giant Canister - 48Mil"
  1390.  
  1391. BackPack15.Name = "BackPack15"
  1392. BackPack15.Parent = ContainerScreenFrame
  1393. BackPack15.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1394. BackPack15.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1395. BackPack15.Position = UDim2.new(0, 5, 0, 380)
  1396. BackPack15.Size = UDim2.new(0, 220, 0, 20)
  1397. BackPack15.TextColor3 = Color3.new(1, 1, 1)
  1398. BackPack15.Font = Enum.Font.Fantasy
  1399. BackPack15.FontSize = Enum.FontSize.Size18
  1400. BackPack15.TextSize = 15
  1401. BackPack15.TextXAlignment = Enum.TextXAlignment.Left
  1402. BackPack15.Text = " 100K - Magical Fanny Pack - 100M"
  1403.  
  1404. BackPack16.Name = "BackPack16"
  1405. BackPack16.Parent = ContainerScreenFrame
  1406. BackPack16.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1407. BackPack16.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1408. BackPack16.Position = UDim2.new(0, 5, 0, 405)
  1409. BackPack16.Size = UDim2.new(0, 220, 0, 20)
  1410. BackPack16.TextColor3 = Color3.new(1, 1, 1)
  1411. BackPack16.Font = Enum.Font.Fantasy
  1412. BackPack16.FontSize = Enum.FontSize.Size18
  1413. BackPack16.TextSize = 15
  1414. BackPack16.TextXAlignment = Enum.TextXAlignment.Left
  1415. BackPack16.Text = " inf - Infinite Backpack - n/a"
  1416.  
  1417. BackPackSelect.Name = "BackPackSelect"
  1418. BackPackSelect.Parent = ContainerScreenFrame
  1419. BackPackSelect.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1420. BackPackSelect.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1421. BackPackSelect.Position = UDim2.new(0, 5, 0, 430)
  1422. BackPackSelect.Size = UDim2.new(0, 220, 0, 36)
  1423. BackPackSelect.Font = Enum.Font.Fantasy
  1424. BackPackSelect.FontSize = Enum.FontSize.Size18
  1425. BackPackSelect.TextWrapped = true
  1426. BackPackSelect.Text = "Buy BackPack\n[if not owned] and Equip"
  1427. BackPackSelect.TextColor3 = Color3.new(1, 1, 1)
  1428. BackPackSelect.TextSize = 15
  1429.  
  1430. ToolScreenFrame.Name = "ToolScreenFrame"
  1431. ToolScreenFrame.Parent = MainFrame
  1432. ToolScreenFrame.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1433. ToolScreenFrame.BorderColor3 = Color3.new(0, 0, 0)
  1434. ToolScreenFrame.BackgroundTransparency = 0.5
  1435. ToolScreenFrame.Position = UDim2.new(0, 183, 0, 33)
  1436. ToolScreenFrame.Size = UDim2.new(0, 230, 0, 446)
  1437. ToolScreenFrame.Visible = false
  1438.  
  1439. ToolHeader1.Name = "ToolHeader1"
  1440. ToolHeader1.Parent = ToolScreenFrame
  1441. ToolHeader1.BackgroundColor3 = Color3.new(1, 0, 0)
  1442. ToolHeader1.BackgroundTransparency = 0.15
  1443. ToolHeader1.BorderColor3 = Color3.new(1, 1, 1)
  1444. ToolHeader1.Position = UDim2.new(0, 5, 0, 5)
  1445. ToolHeader1.Size = UDim2.new(0, 55, 0, 20)
  1446. ToolHeader1.Font = Enum.Font.SourceSans
  1447. ToolHeader1.FontSize = Enum.FontSize.Size18
  1448. ToolHeader1.Text = "Sand"
  1449. ToolHeader1.TextColor3 = Color3.new(0, 0, 0)
  1450. ToolHeader1.TextSize = 16
  1451. ToolHeader1.TextWrapped = true
  1452. ToolHeader1.TextYAlignment = Enum.TextYAlignment.Top
  1453.  
  1454. ToolHeader2.Name = "ToolHeader2"
  1455. ToolHeader2.Parent = ToolScreenFrame
  1456. ToolHeader2.BackgroundColor3 = Color3.new(1, 1, 1)
  1457. ToolHeader2.BackgroundTransparency = 0.15
  1458. ToolHeader2.BorderColor3 = Color3.new(1, 1, 1)
  1459. ToolHeader2.Position = UDim2.new(0, 60, 0, 5)
  1460. ToolHeader2.Size = UDim2.new(0, 110, 0, 20)
  1461. ToolHeader2.Font = Enum.Font.SourceSans
  1462. ToolHeader2.FontSize = Enum.FontSize.Size18
  1463. ToolHeader2.Text = "Name"
  1464. ToolHeader2.TextColor3 = Color3.new(0, 0, 0)
  1465. ToolHeader2.TextSize = 16
  1466. ToolHeader2.TextWrapped = true
  1467. ToolHeader2.TextYAlignment = Enum.TextYAlignment.Top
  1468.  
  1469. ToolHeader3.Name = "ToolHeader3"
  1470. ToolHeader3.Parent = ToolScreenFrame
  1471. ToolHeader3.BackgroundColor3 = Color3.new(1, 0, 0)
  1472. ToolHeader3.BackgroundTransparency = 0.15
  1473. ToolHeader3.BorderColor3 = Color3.new(1, 1, 1)
  1474. ToolHeader3.Position = UDim2.new(0, 170, 0, 5)
  1475. ToolHeader3.Size = UDim2.new(0, 55, 0, 20)
  1476. ToolHeader3.Font = Enum.Font.SourceSans
  1477. ToolHeader3.FontSize = Enum.FontSize.Size18
  1478. ToolHeader3.Text = "Price"
  1479. ToolHeader3.TextColor3 = Color3.new(0, 0, 0)
  1480. ToolHeader3.TextSize = 16
  1481. ToolHeader3.TextWrapped = true
  1482. ToolHeader3.TextYAlignment = Enum.TextYAlignment.Top
  1483.  
  1484. Shovel1.Name = "Shovel1"
  1485. Shovel1.Parent = ToolScreenFrame
  1486. Shovel1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1487. Shovel1.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1488. Shovel1.Position = UDim2.new(0, 5, 0, 30)
  1489. Shovel1.Size = UDim2.new(0, 220, 0, 20)
  1490. Shovel1.TextColor3 = Color3.new(1, 1, 1)
  1491. Shovel1.Font = Enum.Font.Fantasy
  1492. Shovel1.FontSize = Enum.FontSize.Size18
  1493. Shovel1.TextSize = 15
  1494. Shovel1.TextXAlignment = Enum.TextXAlignment.Left
  1495. Shovel1.Text = " 0.5/sec - Bucket - 0"
  1496.  
  1497. Shovel2.Name = "Shovel2"
  1498. Shovel2.Parent = ToolScreenFrame
  1499. Shovel2.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1500. Shovel2.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1501. Shovel2.Position = UDim2.new(0, 5, 0, 55)
  1502. Shovel2.Size = UDim2.new(0, 220, 0, 20)
  1503. Shovel2.TextColor3 = Color3.new(1, 1, 1)
  1504. Shovel2.Font = Enum.Font.Fantasy
  1505. Shovel2.FontSize = Enum.FontSize.Size18
  1506. Shovel2.TextSize = 15
  1507. Shovel2.TextXAlignment = Enum.TextXAlignment.Left
  1508. Shovel2.Text = " 1/sec - Spade - 100"
  1509.  
  1510. Shovel3.Name = "Shovel3"
  1511. Shovel3.Parent = ToolScreenFrame
  1512. Shovel3.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1513. Shovel3.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1514. Shovel3.Position = UDim2.new(0, 5, 0, 80)
  1515. Shovel3.Size = UDim2.new(0, 220, 0, 20)
  1516. Shovel3.TextColor3 = Color3.new(1, 1, 1)
  1517. Shovel3.Font = Enum.Font.Fantasy
  1518. Shovel3.FontSize = Enum.FontSize.Size18
  1519. Shovel3.TextSize = 15
  1520. Shovel3.TextXAlignment = Enum.TextXAlignment.Left
  1521. Shovel3.Text = " 1.5/sec - Toy Shovel - 250"
  1522.  
  1523. Shovel4.Name = "Shovel4"
  1524. Shovel4.Parent = ToolScreenFrame
  1525. Shovel4.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1526. Shovel4.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1527. Shovel4.Position = UDim2.new(0, 5, 0, 105)
  1528. Shovel4.Size = UDim2.new(0, 220, 0, 20)
  1529. Shovel4.TextColor3 = Color3.new(1, 1, 1)
  1530. Shovel4.Font = Enum.Font.Fantasy
  1531. Shovel4.FontSize = Enum.FontSize.Size18
  1532. Shovel4.TextSize = 15
  1533. Shovel4.TextXAlignment = Enum.TextXAlignment.Left
  1534. Shovel4.Text = " 2.66/sec - Small Shovel - 600"
  1535.  
  1536. Shovel5.Name = "Shovel5"
  1537. Shovel5.Parent = ToolScreenFrame
  1538. Shovel5.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1539. Shovel5.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1540. Shovel5.Position = UDim2.new(0, 5, 0, 130)
  1541. Shovel5.Size = UDim2.new(0, 220, 0, 20)
  1542. Shovel5.TextColor3 = Color3.new(1, 1, 1)
  1543. Shovel5.Font = Enum.Font.Fantasy
  1544. Shovel5.FontSize = Enum.FontSize.Size18
  1545. Shovel5.TextSize = 15
  1546. Shovel5.TextXAlignment = Enum.TextXAlignment.Left
  1547. Shovel5.Text = " 3.33/sec - Medium Shovel - 2.1K"
  1548.  
  1549. Shovel6.Name = "Shovel6"
  1550. Shovel6.Parent = ToolScreenFrame
  1551. Shovel6.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1552. Shovel6.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1553. Shovel6.Position = UDim2.new(0, 5, 0, 155)
  1554. Shovel6.Size = UDim2.new(0, 220, 0, 20)
  1555. Shovel6.TextColor3 = Color3.new(1, 1, 1)
  1556. Shovel6.Font = Enum.Font.Fantasy
  1557. Shovel6.FontSize = Enum.FontSize.Size18
  1558. Shovel6.TextSize = 15
  1559. Shovel6.TextXAlignment = Enum.TextXAlignment.Left
  1560. Shovel6.Text = " 4.66/sec - Large Shovel - 8.8K"
  1561.  
  1562. Shovel7.Name = "Shovel7"
  1563. Shovel7.Parent = ToolScreenFrame
  1564. Shovel7.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1565. Shovel7.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1566. Shovel7.Position = UDim2.new(0, 5, 0, 180)
  1567. Shovel7.Size = UDim2.new(0, 220, 0, 20)
  1568. Shovel7.TextColor3 = Color3.new(1, 1, 1)
  1569. Shovel7.Font = Enum.Font.Fantasy
  1570. Shovel7.FontSize = Enum.FontSize.Size18
  1571. Shovel7.TextSize = 15
  1572. Shovel7.TextXAlignment = Enum.TextXAlignment.Left
  1573. Shovel7.Text = " 10/sec - Big Scooper - 24K"
  1574.  
  1575. Shovel8.Name = "Shovel8"
  1576. Shovel8.Parent = ToolScreenFrame
  1577. Shovel8.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1578. Shovel8.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1579. Shovel8.Position = UDim2.new(0, 5, 0, 205)
  1580. Shovel8.Size = UDim2.new(0, 220, 0, 20)
  1581. Shovel8.TextColor3 = Color3.new(1, 1, 1)
  1582. Shovel8.Font = Enum.Font.Fantasy
  1583. Shovel8.FontSize = Enum.FontSize.Size18
  1584. Shovel8.TextSize = 15
  1585. Shovel8.TextXAlignment = Enum.TextXAlignment.Left
  1586. Shovel8.Text = " 20/sec - Vacuum - 65K"
  1587.  
  1588. Shovel9.Name = "Shovel9"
  1589. Shovel9.Parent = ToolScreenFrame
  1590. Shovel9.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1591. Shovel9.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1592. Shovel9.Position = UDim2.new(0, 5, 0, 230)
  1593. Shovel9.Size = UDim2.new(0, 220, 0, 20)
  1594. Shovel9.TextColor3 = Color3.new(1, 1, 1)
  1595. Shovel9.Font = Enum.Font.Fantasy
  1596. Shovel9.FontSize = Enum.FontSize.Size18
  1597. Shovel9.TextSize = 15
  1598. Shovel9.TextXAlignment = Enum.TextXAlignment.Left
  1599. Shovel9.Text = " 150/sec - Giant Shovel - 250K"
  1600.  
  1601. Shovel10.Name = "Shovel10"
  1602. Shovel10.Parent = ToolScreenFrame
  1603. Shovel10.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1604. Shovel10.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1605. Shovel10.Position = UDim2.new(0, 5, 0, 255)
  1606. Shovel10.Size = UDim2.new(0, 220, 0, 20)
  1607. Shovel10.TextColor3 = Color3.new(1, 1, 1)
  1608. Shovel10.Font = Enum.Font.Fantasy
  1609. Shovel10.FontSize = Enum.FontSize.Size18
  1610. Shovel10.TextSize = 15
  1611. Shovel10.TextXAlignment = Enum.TextXAlignment.Left
  1612. Shovel10.Text = " 200/sec - Metal Detector - 500K"
  1613.  
  1614. Shovel11.Name = "Shovel11"
  1615. Shovel11.Parent = ToolScreenFrame
  1616. Shovel11.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1617. Shovel11.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1618. Shovel11.Position = UDim2.new(0, 5, 0, 280)
  1619. Shovel11.Size = UDim2.new(0, 220, 0, 20)
  1620. Shovel11.TextColor3 = Color3.new(1, 1, 1)
  1621. Shovel11.Font = Enum.Font.Fantasy
  1622. Shovel11.FontSize = Enum.FontSize.Size18
  1623. Shovel11.TextSize = 15
  1624. Shovel11.TextXAlignment = Enum.TextXAlignment.Left
  1625. Shovel11.Text = " 500/sec - Jack Hammer - 3Mil"
  1626.  
  1627. Shovel12.Name = "Shovel12"
  1628. Shovel12.Parent = ToolScreenFrame
  1629. Shovel12.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1630. Shovel12.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1631. Shovel12.Position = UDim2.new(0, 5, 0, 305)
  1632. Shovel12.Size = UDim2.new(0, 220, 0, 20)
  1633. Shovel12.TextColor3 = Color3.new(1, 1, 1)
  1634. Shovel12.Font = Enum.Font.Fantasy
  1635. Shovel12.FontSize = Enum.FontSize.Size18
  1636. Shovel12.TextSize = 15
  1637. Shovel12.TextXAlignment = Enum.TextXAlignment.Left
  1638. Shovel12.Text = " 2K/sec - Golden Spoon - 10Mil"
  1639.  
  1640. Shovel13.Name = "Shovel13"
  1641. Shovel13.Parent = ToolScreenFrame
  1642. Shovel13.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1643. Shovel13.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1644. Shovel13.Position = UDim2.new(0, 5, 0, 330)
  1645. Shovel13.Size = UDim2.new(0, 220, 0, 20)
  1646. Shovel13.TextColor3 = Color3.new(1, 1, 1)
  1647. Shovel13.Font = Enum.Font.Fantasy
  1648. Shovel13.FontSize = Enum.FontSize.Size18
  1649. Shovel13.TextSize = 15
  1650. Shovel13.TextXAlignment = Enum.TextXAlignment.Left
  1651. Shovel13.Text = " 3K/sec - Dual Scoops - 22Mil"
  1652.  
  1653. Shovel14.Name = "Shovel14"
  1654. Shovel14.Parent = ToolScreenFrame
  1655. Shovel14.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1656. Shovel14.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1657. Shovel14.Position = UDim2.new(0, 5, 0, 355)
  1658. Shovel14.Size = UDim2.new(0, 220, 0, 20)
  1659. Shovel14.TextColor3 = Color3.new(1, 1, 1)
  1660. Shovel14.Font = Enum.Font.Fantasy
  1661. Shovel14.FontSize = Enum.FontSize.Size18
  1662. Shovel14.TextSize = 15
  1663. Shovel14.TextXAlignment = Enum.TextXAlignment.Left
  1664. Shovel14.Text = " 4K/sec - Drill - 45Mil"
  1665.  
  1666. Shovel15.Name = "Shovel15"
  1667. Shovel15.Parent = ToolScreenFrame
  1668. Shovel15.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  1669. Shovel15.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1670. Shovel15.Position = UDim2.new(0, 5, 0, 380)
  1671. Shovel15.Size = UDim2.new(0, 220, 0, 20)
  1672. Shovel15.TextColor3 = Color3.new(1, 1, 1)
  1673. Shovel15.Font = Enum.Font.Fantasy
  1674. Shovel15.FontSize = Enum.FontSize.Size18
  1675. Shovel15.TextSize = 15
  1676. Shovel15.TextXAlignment = Enum.TextXAlignment.Left
  1677. Shovel15.Text = " 2K/sec - Nuke - 100Mil"
  1678.  
  1679. ShovelSelect.Name = "ShovelSelect"
  1680. ShovelSelect.Parent = ToolScreenFrame
  1681. ShovelSelect.BackgroundColor3 = Color3.new(0, 0.5, 0)
  1682. ShovelSelect.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  1683. ShovelSelect.Position = UDim2.new(0, 5, 0, 405)
  1684. ShovelSelect.Size = UDim2.new(0, 220, 0, 36)
  1685. ShovelSelect.Font = Enum.Font.Fantasy
  1686. ShovelSelect.FontSize = Enum.FontSize.Size18
  1687. ShovelSelect.TextWrapped = true
  1688. ShovelSelect.Text = "Buy Shovel\n[if not owned] and Equip"
  1689. ShovelSelect.TextColor3 = Color3.new(1, 1, 1)
  1690. ShovelSelect.TextSize = 15
  1691.  
  1692. InfoFrame.Name = "InfoFrame"
  1693. InfoFrame.Parent = MainFrame
  1694. InfoFrame.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  1695. InfoFrame.BorderColor3 = Color3.new(0, 0, 0)
  1696. InfoFrame.BackgroundTransparency = 0.5
  1697. InfoFrame.Position = UDim2.new(0, 480, 0, 33)
  1698. InfoFrame.Size = UDim2.new(0, 200, 0, 170)
  1699. InfoFrame.Visible = false
  1700.  
  1701. InfoText1.Name = "InfoText1"
  1702. InfoText1.Parent = InfoFrame
  1703. InfoText1.BackgroundColor3 = Color3.new(0, 0, 0)
  1704. InfoText1.BorderColor3 = Color3.new(0, 0, 0)
  1705. InfoText1.BackgroundTransparency = 1
  1706. InfoText1.Position = UDim2.new(0, 5, 0, 5)
  1707. InfoText1.Size = UDim2.new(0, 190, 0, 155)
  1708. InfoText1.TextColor3 = Color3.new(1, 1, 1)
  1709. InfoText1.Font = Enum.Font.Fantasy
  1710. InfoText1.FontSize = Enum.FontSize.Size18
  1711. InfoText1.Text = "This Gui was created by LuckyMMB@V3rmillion.net\nDiscord https://discord.gg/GKzJnUC\n\n Credits to Yvu @ V3rmillion.net for the Chest TP script, Taiga Aisaka for mining method 1 and Racist Dolphin#5199 [discord] for mining method 2 which I revamped a bit."
  1712. InfoText1.TextSize = 14
  1713. InfoText1.TextWrapped = true
  1714. InfoText1.TextYAlignment = Enum.TextYAlignment.Top
  1715.  
  1716. function notify(msg)
  1717. game.StarterGui:SetCore('SendNotification', {
  1718. Title = 'Treasure Hunt Simulator';
  1719. Text = msg;
  1720. Duration = 5;
  1721. })
  1722. end
  1723.  
  1724. --- Close ---
  1725.  
  1726. Close.MouseButton1Down:connect(function()
  1727. MainGUI:Destroy()
  1728. end)
  1729.  
  1730. --- Menus ---
  1731.  
  1732. local Menus = {
  1733. [WayPoints] = WayPointsFrame;
  1734. [Players] = PlayerFrame;
  1735. [ContainerScreen] = ContainerScreenFrame;
  1736. [ToolScreen] = ToolScreenFrame;
  1737. [MineSand] = AutoMineFrame;
  1738. [AutoMine1] = AutoMine1Frame;
  1739. [AutoMine2] = AutoMine2Frame;
  1740. [chests] = chestsFrame;
  1741. [InfoScreen] = InfoFrame;
  1742. }
  1743. for button,frame in pairs(Menus) do
  1744. button.MouseButton1Click:connect(function()
  1745. if frame.Visible then
  1746. frame.Visible = false
  1747. return
  1748. end
  1749. for k,v in pairs(Menus) do
  1750. v.Visible = v == frame
  1751. end
  1752. end)
  1753. end
  1754.  
  1755. --- WayPoints ---
  1756.  
  1757. local WayPoints = {
  1758. ["Private Island 01"] = CFrame.new(328, 20, 275),
  1759. ["Private Island 02"] = CFrame.new(215, 20, 275),
  1760. ["Private Island 03"] = CFrame.new(-8, 20, 275),
  1761. ["Private Island 04"] = CFrame.new(-120, 20, 275),
  1762. ["Private Island 05"] = CFrame.new(-232, 20, 275),
  1763. ["Private Island 06"] = CFrame.new(-340, 20, 275),
  1764. ["Private Island 07"] = CFrame.new(-340, 20, 384),
  1765. ["Private Island 08"] = CFrame.new(-232, 20, 384),
  1766. ["Private Island 09"] = CFrame.new(-120, 20, 384),
  1767. ["Private Island 10"] = CFrame.new(-8, 20, 384),
  1768. ["Private Island 11"] = CFrame.new(215, 20, 384),
  1769. ["Private Island 12"] = CFrame.new(328, 20, 384),
  1770. ["Sell Hut"] = CFrame.new(-33, 21, -12),
  1771. ["Upgrade Hut"] = CFrame.new(-31, 21, 28)
  1772. }
  1773.  
  1774. PrivateIsland01.MouseButton1Down:connect(function()
  1775. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1776. uTorso.CFrame = WayPoints["Private Island 01"]
  1777. notify'Teleported to the Private Island 01'
  1778. end)
  1779.  
  1780. PrivateIsland02.MouseButton1Down:connect(function()
  1781. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1782. uTorso.CFrame = WayPoints["Private Island 02"]
  1783. notify'Teleported to the Private Island 02'
  1784. end)
  1785.  
  1786. PrivateIsland03.MouseButton1Down:connect(function()
  1787. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1788. uTorso.CFrame = WayPoints["Private Island 03"]
  1789. notify'Teleported to the Private Island 03'
  1790. end)
  1791.  
  1792. PrivateIsland04.MouseButton1Down:connect(function()
  1793. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1794. uTorso.CFrame = WayPoints["Private Island 04"]
  1795. notify'Teleported to the Private Island 04'
  1796. end)
  1797.  
  1798. PrivateIsland05.MouseButton1Down:connect(function()
  1799. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1800. uTorso.CFrame = WayPoints["Private Island 05"]
  1801. notify'Teleported to the Private Island 05'
  1802. end)
  1803.  
  1804. PrivateIsland06.MouseButton1Down:connect(function()
  1805. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1806. uTorso.CFrame = WayPoints["Private Island 06"]
  1807. notify'Teleported to the Private Island 06'
  1808. end)
  1809.  
  1810. PrivateIsland07.MouseButton1Down:connect(function()
  1811. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1812. uTorso.CFrame = WayPoints["Private Island 07"]
  1813. notify'Teleported to the Private Island 07'
  1814. end)
  1815.  
  1816. PrivateIsland08.MouseButton1Down:connect(function()
  1817. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1818. uTorso.CFrame = WayPoints["Private Island 08"]
  1819. notify'Teleported to the Private Island 08'
  1820. end)
  1821.  
  1822. PrivateIsland09.MouseButton1Down:connect(function()
  1823. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1824. uTorso.CFrame = WayPoints["Private Island 09"]
  1825. notify'Teleported to the Private Island 09'
  1826. end)
  1827.  
  1828. PrivateIsland10.MouseButton1Down:connect(function()
  1829. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1830. uTorso.CFrame = WayPoints["Private Island 10"]
  1831. notify'Teleported to the Private Island 10'
  1832. end)
  1833.  
  1834. PrivateIsland11.MouseButton1Down:connect(function()
  1835. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1836. uTorso.CFrame = WayPoints["Private Island 11"]
  1837. notify'Teleported to the Private Island 11'
  1838. end)
  1839.  
  1840. PrivateIsland12.MouseButton1Down:connect(function()
  1841. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1842. uTorso.CFrame = WayPoints["Private Island 12"]
  1843. notify'Teleported to the Private Island 12'
  1844. end)
  1845.  
  1846. SellHut.MouseButton1Down:connect(function()
  1847. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1848. uTorso.CFrame = WayPoints["Sell Hut"]
  1849. notify'Teleported to the Sell Hut'
  1850. end)
  1851.  
  1852. UpgradeHut.MouseButton1Down:connect(function()
  1853. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1854. uTorso.CFrame = WayPoints["Upgrade Hut"]
  1855. notify'Teleported to the Upgrade Hut'
  1856. end)
  1857.  
  1858. --- Show Current Location
  1859.  
  1860. ShowLocation.MouseButton1Down:connect(function()
  1861.  
  1862. function round(num, numDecimalPlaces)
  1863. local mult = 10^(numDecimalPlaces or 0)
  1864. return math.floor(num * mult + 0.5) / mult
  1865. end
  1866.  
  1867. LocationX = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.x, 1)
  1868. LocationY = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.y, 1)
  1869. LocationZ = round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.z, 1)
  1870. ShowLocation.Text = "Current/Set Location\n"..LocationX..", "..LocationY..", "..LocationZ
  1871. CustomTPPoint.Text = "TP to "..LocationX..", "..LocationY..", "..LocationZ
  1872. CustomLocationSet = true
  1873. end)
  1874.  
  1875. --- TP to custom location ---
  1876.  
  1877. CustomTPPoint.MouseButton1Down:connect(function()
  1878. if CustomLocationSet == true then
  1879. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  1880. uTorso.CFrame = CFrame.new(LocationX, LocationY, LocationZ)
  1881. end
  1882. end)
  1883.  
  1884. --- Player Teleport ---
  1885.  
  1886. local buttons = {
  1887. Player1,
  1888. Player2,
  1889. Player3,
  1890. Player4,
  1891. Player5,
  1892. Player6,
  1893. Player7,
  1894. Player8,
  1895. Player9,
  1896. Player10,
  1897. Player11,
  1898. Player12
  1899. }
  1900. for i, v in pairs(game.Players:GetChildren()) do
  1901. buttons[i].Text = v.Name
  1902. buttons[i].Visible = true
  1903. end
  1904. game.Players.PlayerRemoving:connect(function()
  1905. for i, v in pairs(game.Players:GetChildren()) do
  1906. buttons[i].Text = v.Name
  1907. buttons[i].Visible = true
  1908. end
  1909. end)
  1910. game.Players.PlayerAdded:connect(function()
  1911. for i, v in pairs(game.Players:GetChildren()) do
  1912. buttons[i].Text = v.Name
  1913. buttons[i].Visible = true
  1914. end
  1915. end)
  1916.  
  1917. Player1.MouseButton1Down:connect(function()
  1918. PlyrSel.Text = Player1.Text
  1919. end)
  1920. Player2.MouseButton1Down:connect(function()
  1921. PlyrSel.Text = Player2.Text
  1922. end)
  1923. Player3.MouseButton1Down:connect(function()
  1924. PlyrSel.Text = Player3.Text
  1925. end)
  1926. Player4.MouseButton1Down:connect(function()
  1927. PlyrSel.Text = Player4.Text
  1928. end)
  1929. Player5.MouseButton1Down:connect(function()
  1930. PlyrSel.Text = Player5.Text
  1931. end)
  1932. Player6.MouseButton1Down:connect(function()
  1933. PlyrSel.Text = Player6.Text
  1934. end)
  1935. Player7.MouseButton1Down:connect(function()
  1936. PlyrSel.Text = Player7.Text
  1937. end)
  1938. Player8.MouseButton1Down:connect(function()
  1939. PlyrSel.Text = Player8.Text
  1940. end)
  1941. Player9.MouseButton1Down:connect(function()
  1942. PlyrSel.Text = Player9.Text
  1943. end)
  1944. Player10.MouseButton1Down:connect(function()
  1945. PlyrSel.Text = Player10.Text
  1946. end)
  1947. Player11.MouseButton1Down:connect(function()
  1948. PlyrSel.Text = Player11.Text
  1949. end)
  1950. Player12.MouseButton1Down:connect(function()
  1951. PlyrSel.Text = Player12.Text
  1952. end)
  1953.  
  1954. TpPlayer.MouseButton1Down:connect(function()
  1955. if PlyrSel.Text == "SELECT A PLAYER" then
  1956. warn("No Player Selected")
  1957. else
  1958. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace[PlyrSel.Text].HumanoidRootPart.CFrame
  1959. end
  1960. end)
  1961.  
  1962. --- Backpack Buy and Select ---
  1963.  
  1964. BackPack1.MouseButton1Down:connect(function()
  1965. SelectedBackpack = "Starterpack"
  1966. BackPackSelect.Text = "Buy " .. SelectedBackpack .. " for " .. tostring(GetPrice(SelectedBackpack)) .. "\n[if not owned] and Equip"
  1967. end)
  1968.  
  1969. BackPack2.MouseButton1Down:connect(function()
  1970. SelectedBackpack = "Small Bag"
  1971. BackPackSelect.Text = "Buy " .. SelectedBackpack .. " for " .. tostring(GetPrice(SelectedBackpack)) .. "\n[if not owned] and Equip"
  1972. end)
  1973.  
  1974. BackPack3.MouseButton1Down:connect(function()
  1975. SelectedBackpack = "Medium Bag"
  1976. BackPackSelect.Text = "Buy " .. SelectedBackpack .. " for " .. tostring(GetPrice(SelectedBackpack)) .. "\n[if not owned] and Equip"
  1977. end)
  1978.  
  1979. BackPack4.MouseButton1Down:connect(function()
  1980. SelectedBackpack = "Large Bag"
  1981. BackPackSelect.Text = "Buy " .. SelectedBackpack .. " for " .. tostring(GetPrice(SelectedBackpack)) .. "\n[if not owned] and Equip"
  1982. end)
  1983.  
  1984. BackPack5.MouseButton1Down:connect(function()
  1985. SelectedBackpack = "XL Bag"
  1986. BackPackSelect.Text = "Buy " .. SelectedBackpack .. " for " .. tostring(GetPrice(SelectedBackpack)) .. "\n[if not owned] and Equip"
  1987. end)
  1988.  
  1989. BackPack6.MouseButton1Down:connect(function()
  1990. SelectedBackpack = "XXL Bag"
  1991. BackPackSelect.Text = "Buy " .. SelectedBackpack .. " for " .. tostring(GetPrice(SelectedBackpack)) .. "\n[if not owned] and Equip"
  1992. end)
  1993.  
  1994. BackPack7.MouseButton1Down:connect(function()
  1995. SelectedBackpack = "Sand Safe"
  1996. BackPackSelect.Text = "Buy " .. SelectedBackpack .. " for " .. tostring(GetPrice(SelectedBackpack)) .. "\n[if not owned] and Equip"
  1997. end)
  1998.  
  1999. BackPack8.MouseButton1Down:connect(function()
  2000. SelectedBackpack = "Sand Vault"
  2001. BackPackSelect.Text = "Buy " .. SelectedBackpack .. " for " .. tostring(GetPrice(SelectedBackpack)) .. "\n[if not owned] and Equip"
  2002. end)
  2003.  
  2004. BackPack9.MouseButton1Down:connect(function()
  2005. SelectedBackpack = "Small Canister"
  2006. BackPackSelect.Text = "Buy " .. SelectedBackpack .. " for " .. tostring(GetPrice(SelectedBackpack)) .. "\n[if not owned] and Equip"
  2007. end)
  2008.  
  2009. BackPack10.MouseButton1Down:connect(function()
  2010. SelectedBackpack = "Medium Canister"
  2011. BackPackSelect.Text = "Buy " .. SelectedBackpack .. " for " .. tostring(GetPrice(SelectedBackpack)) .. "\n[if not owned] and Equip"
  2012. end)
  2013.  
  2014. BackPack11.MouseButton1Down:connect(function()
  2015. SelectedBackpack = "Large Canister"
  2016. BackPackSelect.Text = "Buy " .. SelectedBackpack .. " for " .. tostring(GetPrice(SelectedBackpack)) .. "\n[if not owned] and Equip"
  2017. end)
  2018.  
  2019. BackPack12.MouseButton1Down:connect(function()
  2020. SelectedBackpack = "Duffle Bag"
  2021. BackPackSelect.Text = "Buy " .. SelectedBackpack .. " for " .. tostring(GetPrice(SelectedBackpack)) .. "\n[if not owned] and Equip"
  2022. end)
  2023.  
  2024. BackPack13.MouseButton1Down:connect(function()
  2025. SelectedBackpack = "Dual Canister"
  2026. BackPackSelect.Text = "Buy " .. SelectedBackpack .. " for " .. tostring(GetPrice(SelectedBackpack)) .. "\n[if not owned] and Equip"
  2027. end)
  2028.  
  2029. BackPack14.MouseButton1Down:connect(function()
  2030. SelectedBackpack = "Giant Canister"
  2031. BackPackSelect.Text = "Buy " .. SelectedBackpack .. " for " .. tostring(GetPrice(SelectedBackpack)) .. "\n[if not owned] and Equip"
  2032. end)
  2033.  
  2034. BackPack15.MouseButton1Down:connect(function()
  2035. SelectedBackpack = "Magical Fanny Pack"
  2036. BackPackSelect.Text = "Buy " .. SelectedBackpack .. " for " .. tostring(GetPrice(SelectedBackpack)) .. "\n[if not owned] and Equip"
  2037. end)
  2038.  
  2039. BackPack16.MouseButton1Down:connect(function()
  2040. SelectedBackpack = "Infinite"
  2041. BackPackSelect.Text = "Equip Infinite Backpack if owned"
  2042. end)
  2043.  
  2044. BackPackSelect.MouseButton1Click:connect(function()
  2045. BuyAndEquip(SelectedBackpack)
  2046. end)
  2047.  
  2048. Shovel1.MouseButton1Down:connect(function()
  2049. SelectedShovel = "Bucket"
  2050. ShovelSelect.Text = "Buy " .. SelectedShovel .. " for " .. tostring(GetPrice(SelectedShovel)) .. "\n[if not owned] and Equip"
  2051. end)
  2052.  
  2053. Shovel2.MouseButton1Down:connect(function()
  2054. SelectedShovel = "Spade"
  2055. ShovelSelect.Text = "Buy " .. SelectedShovel .. " for " .. tostring(GetPrice(SelectedShovel)) .. "\n[if not owned] and Equip"
  2056. end)
  2057.  
  2058. Shovel3.MouseButton1Down:connect(function()
  2059. SelectedShovel = "Toy Shovel"
  2060. ShovelSelect.Text = "Buy " .. SelectedShovel .. " for " .. tostring(GetPrice(SelectedShovel)) .. "\n[if not owned] and Equip"
  2061. end)
  2062.  
  2063. Shovel4.MouseButton1Down:connect(function()
  2064. SelectedShovel = "Small Shovel"
  2065. ShovelSelect.Text = "Buy " .. SelectedShovel .. " for " .. tostring(GetPrice(SelectedShovel)) .. "\n[if not owned] and Equip"
  2066. end)
  2067.  
  2068. Shovel5.MouseButton1Down:connect(function()
  2069. SelectedShovel = "Medium Shovel"
  2070. ShovelSelect.Text = "Buy " .. SelectedShovel .. " for " .. tostring(GetPrice(SelectedShovel)) .. "\n[if not owned] and Equip"
  2071. end)
  2072.  
  2073. Shovel6.MouseButton1Down:connect(function()
  2074. SelectedShovel = "Large Shovel"
  2075. ShovelSelect.Text = "Buy " .. SelectedShovel .. " for " .. tostring(GetPrice(SelectedShovel)) .. "\n[if not owned] and Equip"
  2076. end)
  2077.  
  2078. Shovel7.MouseButton1Down:connect(function()
  2079. SelectedShovel = "Big Scooper"
  2080. ShovelSelect.Text = "Buy " .. SelectedShovel .. " for " .. tostring(GetPrice(SelectedShovel)) .. "\n[if not owned] and Equip"
  2081. end)
  2082.  
  2083. Shovel8.MouseButton1Down:connect(function()
  2084. SelectedShovel = "Vacuum"
  2085. ShovelSelect.Text = "Buy " .. SelectedShovel .. " for " .. tostring(GetPrice(SelectedShovel)) .. "\n[if not owned] and Equip"
  2086. end)
  2087.  
  2088. Shovel9.MouseButton1Down:connect(function()
  2089. SelectedShovel = "Giant Shovel"
  2090. ShovelSelect.Text = "Buy " .. SelectedShovel .. " for " .. tostring(GetPrice(SelectedShovel)) .. "\n[if not owned] and Equip"
  2091. end)
  2092.  
  2093. Shovel10.MouseButton1Down:connect(function()
  2094. SelectedShovel = "Metal Detector"
  2095. ShovelSelect.Text = "Buy " .. SelectedShovel .. " for " .. tostring(GetPrice(SelectedShovel)) .. "\n[if not owned] and Equip"
  2096. end)
  2097.  
  2098. Shovel11.MouseButton1Down:connect(function()
  2099. SelectedShovel = "Jack Hammer"
  2100. ShovelSelect.Text = "Buy " .. SelectedShovel .. " for " .. tostring(GetPrice(SelectedShovel)) .. "\n[if not owned] and Equip"
  2101. end)
  2102.  
  2103. Shovel12.MouseButton1Down:connect(function()
  2104. SelectedShovel = "Golden Spoon"
  2105. ShovelSelect.Text = "Buy " .. SelectedShovel .. " for " .. tostring(GetPrice(SelectedShovel)) .. "\n[if not owned] and Equip"
  2106. end)
  2107.  
  2108. Shovel13.MouseButton1Down:connect(function()
  2109. SelectedShovel = "Dual Scoops"
  2110. ShovelSelect.Text = "Buy " .. SelectedShovel .. " for " .. tostring(GetPrice(SelectedShovel)) .. "\n[if not owned] and Equip"
  2111. end)
  2112.  
  2113. Shovel14.MouseButton1Down:connect(function()
  2114. SelectedShovel = "Drill"
  2115. ShovelSelect.Text = "Buy " .. SelectedShovel .. " for " .. tostring(GetPrice(SelectedShovel)) .. "\n[if not owned] and Equip"
  2116. end)
  2117.  
  2118. Shovel15.MouseButton1Down:connect(function()
  2119. SelectedShovel = "Nuke"
  2120. ShovelSelect.Text = "Buy " .. SelectedShovel .. " for " .. tostring(GetPrice(SelectedShovel)) .. "\n[if not owned] and Equip"
  2121. end)
  2122.  
  2123. ShovelSelect.MouseButton1Click:connect(function()
  2124. BuyAndEquip(SelectedShovel)
  2125. if Farming1Active == true then
  2126. Farming1Active = false
  2127. wait(1)
  2128. Farming1Active = true
  2129. end
  2130. end)
  2131.  
  2132. --- Common Mining Functions ---
  2133.  
  2134. function BackpackFull()
  2135. local FindBackpack = GetBackpack()
  2136. if FindBackpack then
  2137. local GUI = FindBackpack.Counter.SurfaceGui.TextLabel
  2138. local CurSand, MaxSand = string.match(GUI.Text, "(%d+)/(%d+)")
  2139.  
  2140. if FindBackpack.Name == "Infinite" then
  2141. CurSand = MyPlr.leaderstats.Sand.Value
  2142. MaxSand = 999999999
  2143. end
  2144.  
  2145. MaxSand = tonumber(MaxSand)
  2146. if tonumber(CurSand) >= MaxSand then
  2147. print("BACKPACK FULL")
  2148. return true
  2149. else
  2150. return false
  2151. end
  2152. end
  2153. return false
  2154. end
  2155.  
  2156. function Rebirth()
  2157. print("REBIRTH COST: " .. tostring(RebirthPrice))
  2158. if MyCoins.Value >= RebirthPrice then
  2159. local tool = MyChar:FindFirstChild(EquipedShovel)
  2160. if tool then
  2161. tool.Parent = MyPack
  2162. end
  2163. Events.Rebirth:FireServer()
  2164. repeat
  2165. wait()
  2166. until MyPack:FindFirstChild("Bucket")
  2167. EquipedShovel = "Bucket"
  2168. EquipedBackpack = "Starterpack"
  2169. print("REBIRTHED")
  2170. end
  2171. end
  2172.  
  2173. function GetBestSandBlock()
  2174. local best = { }
  2175. local bestblock = workspace.SandBlocks:GetChildren()[math.random(1, #workspace.SandBlocks:GetChildren())]
  2176.  
  2177. local b = workspace.SandBlocks:GetChildren()
  2178. for i, v in pairs(b) do
  2179. local h = v:FindFirstChild("Health")
  2180. if h and v.Material == Enum.Material.Sand then
  2181. if h.Value > 50 then
  2182. table.insert(best, v)
  2183. end
  2184. end
  2185. end
  2186.  
  2187. for i, v in next, best do
  2188. if bestblock == nil then
  2189. bestblock = v
  2190. else
  2191. if bestblock.Health.Value < v.Health.Value then
  2192. bestblock = v
  2193. end
  2194. end
  2195. end
  2196.  
  2197. return bestblock
  2198. end
  2199.  
  2200. function MineSandBlock(Block, Tool)
  2201. local FindHealth = Block:FindFirstChild("Health")
  2202. if Farming2Active == true and Block.Material == Enum.Material.Plastic then
  2203. Tool.RemoteClick:FireServer(Block)
  2204. return
  2205. end
  2206.  
  2207. if Farming2Active == true and FindHealth then
  2208. local MyTor = MyChar:FindFirstChild("HumanoidRootPart")
  2209. if not MyTor then return end
  2210. Tool.Parent = MyChar
  2211. if BackpackFull() then
  2212. MyTor.CFrame = CFrame.new(Vector3.new(-33.463, 20.608, -13.357))
  2213. return
  2214. end
  2215. MyTor.CFrame = Block.CFrame
  2216. Tool.RemoteClick:FireServer(Block)
  2217. else
  2218. return
  2219. end
  2220. end
  2221.  
  2222. --- Sand Mining 1 ---
  2223.  
  2224. AutoMine1Toggle.MouseButton1Click:connect(function()
  2225. if Farming1Active == patched then notify'AutoMine is patched and not enabled' return end
  2226. if Farming1Active == false then
  2227. Farming1Active = true
  2228. AutoMine1Toggle.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2229. MineSand.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2230. AutoMine1Toggle.Text = "Stop"
  2231. AutoMine1.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2232. notify'Sand Farming Started'
  2233. wait(1)
  2234. while Farming1Active == true do
  2235. RebirthPrice = math.floor((MyRebirths.Value ^ 1.5 + 1) * 500000)
  2236. MyChar = MyPlr.Character
  2237. local tool = EquipTool(EquipedShovel)
  2238. if tool ~= nil then
  2239. repeat wait(1) until workspace[MyPlr.Name]:FindFirstChild(EquipedShovel)
  2240. local function GetBlocks()
  2241. while Farming1Active == true do
  2242. if workspace[MyPlr.Name]:FindFirstChild(EquipedShovel) then
  2243. local uTorso = workspace:WaitForChild(game.Players.LocalPlayer.Name).HumanoidRootPart
  2244. uTorso.CFrame = CFrame.new(8.5, 20.5, 52.8)
  2245. for i,block in pairs(workspace.SandBlocks:GetChildren()) do
  2246. workspace[MyPlr.Name][EquipedShovel].RemoteClick:FireServer(block)
  2247. wait(0.00001)
  2248. if BackpackFull() then
  2249. uTorso.CFrame = CFrame.new(Vector3.new(-33, 20.6, -11.1))
  2250. return
  2251. end
  2252. if Autorebirth == true then
  2253. Rebirth()
  2254. end
  2255. if Autoupgrade == true then
  2256. Upgrade()
  2257. if EquipedShovel ~= TargetedShovel or EquipedBackpack ~= TargetedBackpack then
  2258. BuyAndEquip()
  2259. end
  2260. end
  2261. end
  2262. end
  2263. end
  2264. end
  2265. while wait(2) do
  2266. GetBlocks()
  2267. end
  2268. end
  2269. end
  2270. else
  2271. Farming1Active = false
  2272. notify'Sand Farming Ended'
  2273. AutoMine1Toggle.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  2274. MineSand.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  2275. AutoMine1.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  2276. AutoMine1Toggle.Text = "Start"
  2277. local MyTor = MyChar:FindFirstChild("HumanoidRootPart")
  2278. if MyTor then
  2279. MyTor.CFrame = CFrame.new(Vector3.new(-33.463, 20.608, -13.357))
  2280. end
  2281. end
  2282. end)
  2283.  
  2284. --- Auto Mine 2 ---
  2285.  
  2286. AutoMine2Toggle.MouseButton1Click:connect(function()
  2287. if Farming2Active == patched then notify'AutoMine is patched and not enabled' return end
  2288. if Farming2Active == false then
  2289. Farming2Active = true
  2290. AutoMine2Toggle.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2291. MineSand.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2292. AutoMine2.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2293. AutoMine2Toggle.Text = "Stop"
  2294. notify'Sand Farming 2 Started'
  2295. wait(1)
  2296.  
  2297. local succ, out = coroutine.resume(coroutine.create(function()
  2298. while true do
  2299. RebirthPrice = math.floor((MyRebirths.Value ^ 1.5 + 1) * 500000)
  2300. MyChar = MyPlr.Character
  2301. if Farming2Active == true and not workspace.Settings.Closed.Value then
  2302. if Autorebirth == true then
  2303. Rebirth()
  2304. end
  2305. if Autoupgrade == true then
  2306. Upgrade()
  2307. if EquipedShovel ~= TargetedShovel or EquipedBackpack ~= TargetedBackpack then
  2308. BuyAndEquip()
  2309. end
  2310. end
  2311. local tool = EquipTool(EquipedShovel)
  2312. if tool ~= nil then
  2313. local sandblock = GetBestSandBlock()
  2314. MineSandBlock(sandblock, tool)
  2315. end
  2316. end
  2317. wait(0.25)
  2318. end
  2319. end))
  2320. if not succ then
  2321. error(out)
  2322. end
  2323.  
  2324. workspace.SandBlocks.ChildAdded:connect(function(Obj)
  2325. if workspace.Settings.Closed.Value then return end
  2326.  
  2327. local tool = EquipTool(EquipedShovel)
  2328. if Obj.Material == Enum.Material.Plastic then
  2329. MineSandBlock(Obj, tool)
  2330. end
  2331. end)
  2332. else
  2333. Farming2Active = false
  2334. notify'Sand Farming 2 Ended'
  2335. AutoMine2Toggle.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  2336. MineSand.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  2337. AutoMine2.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  2338. AutoMine2Toggle.Text = "Start"
  2339. local MyTor = MyChar:FindFirstChild("HumanoidRootPart")
  2340. if MyTor then
  2341. MyTor.CFrame = CFrame.new(Vector3.new(-33.463, 20.608, -13.357))
  2342. end
  2343. end
  2344. end)
  2345.  
  2346. --- TP Chests ---
  2347.  
  2348. tpchests.MouseButton1Click:connect(function()
  2349. if TPChestsActive == false then
  2350. TPChestsActive = true
  2351. tpchests.Text = "Stop TP Chests"
  2352. tpchests.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2353. chests.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2354. notify'TP Chests to you Started'
  2355. wait(1)
  2356. while TPChestsActive == true do
  2357. wait(.1)
  2358. for _,v in pairs(game.Workspace.SandBlocks:GetChildren()) do
  2359. if v:FindFirstChild("BasicChest") or v:FindFirstChild("EpicChest") or v:FindFirstChild("RareChest") or v:FindFirstChild("MythicChest") or v:FindFirstChild("LegendaryChest") then
  2360. v.CanCollide = false
  2361. v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(math.random(0,0),0,math.random(0,0))
  2362. end
  2363. end
  2364. end
  2365. else
  2366. TPChestsActive = false
  2367. notify'TP Chests Ended'
  2368. tpchests.Text = "TP Chests"
  2369. tpchests.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  2370. chests.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  2371. end
  2372. end)
  2373.  
  2374. --- Chest Dig Faster ---
  2375.  
  2376. ChestDigFaster.MouseButton1Click:connect(function()
  2377. local Mouse = game.Players.LocalPlayer:GetMouse()
  2378. local RS = game:GetService("RunService").RenderStepped
  2379. _G.digSpeed = 0
  2380. local ClicksPerLoop = 5
  2381. if ChestDigFast == false then
  2382. ChestDigFast = true
  2383. ChestDigFaster.Text = "Stop Chests/DigFast"
  2384. ChestDigFaster.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2385. chests.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2386. notify'TP Chests to you and dig fast Started'
  2387. wait(1)
  2388. while ChestDigFast == true do
  2389. wait(.1)
  2390. for _,v in pairs(game.Workspace.SandBlocks:GetChildren()) do
  2391. if v:FindFirstChild("BasicChest") or v:FindFirstChild("EpicChest") or v:FindFirstChild("RareChest") or v:FindFirstChild("MythicChest") or v:FindFirstChild("LegendaryChest") then
  2392. v.CanCollide = false
  2393. v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(math.random(0,0),0,math.random(0,0))
  2394. end
  2395. end
  2396.  
  2397. function FindTool()
  2398. local found = false
  2399. local tool = nil
  2400. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  2401. if v.ClassName=="Tool" then
  2402. found = true
  2403. tool = v
  2404. end
  2405. end
  2406. if found then
  2407. return true, tool
  2408. end
  2409. end
  2410.  
  2411. function Dig()
  2412. local pass, tool = FindTool()
  2413. while DigClicking and pass do
  2414. RS:wait(_G.digSpeed)
  2415. if Mouse.Target:FindFirstChild("Sand") then return end
  2416. if not Mouse.Target:FindFirstChild("Rock") then
  2417. for i=1,ClicksPerLoop do
  2418. tool.RemoteClick:FireServer(Mouse.Target)
  2419. end
  2420. end
  2421. end
  2422. end
  2423.  
  2424. Mouse.Button1Down:Connect(function()
  2425. if ChestDigFast == true then
  2426. DigClicking = true
  2427. Dig()
  2428. end
  2429. end)
  2430.  
  2431. Mouse.Button1Up:Connect(function()
  2432. DigClicking = false
  2433. end)
  2434. end
  2435. else
  2436. DigClicking = false
  2437. ChestDigFast = false
  2438. notify'TP Chests Ended'
  2439. ChestDigFaster.Text = "TP Chests/Dig Fast"
  2440. ChestDigFaster.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  2441. chests.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  2442. end
  2443. end)
  2444.  
  2445. --- Auto Rebirth ---
  2446.  
  2447. AutoRebirthoption.MouseButton1Click:connect(function()
  2448. if Autorebirth == false then
  2449. Autorebirth = true
  2450. AutoRebirthoption.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2451. else
  2452. Autorebirth = false
  2453. AutoRebirthoption.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  2454. end
  2455. end)
  2456.  
  2457. --- Afk Mode ---
  2458.  
  2459. AntiAfkMode.MouseButton1Click:connect(function()
  2460. if afkmode == false then
  2461. afkmode = true
  2462. AntiAfkMode.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2463. while afkmode == true do
  2464. pcall(function()
  2465. if afkmode == true then
  2466. keypress(0x44)
  2467. wait(0.2)
  2468. keyrelease(0x44)
  2469. keypress(0x41)
  2470. wait(0.2)
  2471. keyrelease(0x41)
  2472. keypress(0x44)
  2473. wait(0.2)
  2474. keyrelease(0x44)
  2475. keypress(0x41)
  2476. wait(0.2)
  2477. keyrelease(0x41)
  2478. wait(300)
  2479. end
  2480. end)
  2481. end
  2482. else
  2483. afkmode = false
  2484. AntiAfkMode.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  2485. end
  2486. end)
  2487.  
  2488. --- Auto Upgrade ---
  2489.  
  2490. Auto1Upgradeoption.MouseButton1Click:connect(function()
  2491. if Autoupgrade == false then
  2492. Autoupgrade = true
  2493. Auto1Upgradeoption.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2494. Auto2Upgradeoption.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2495. else
  2496. Autoupgrade = false
  2497. Auto1Upgradeoption.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  2498. Auto2Upgradeoption.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  2499. end
  2500. end)
  2501.  
  2502. Auto2Upgradeoption.MouseButton1Click:connect(function()
  2503. if Autoupgrade == false then
  2504. Autoupgrade = true
  2505. Auto1Upgradeoption.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2506. Auto2Upgradeoption.BackgroundColor3 = Color3.new(0, 0.5, 0)
  2507. else
  2508. Autoupgrade = false
  2509. Auto1Upgradeoption.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  2510. Auto2Upgradeoption.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  2511. end
  2512. end)
  2513.  
  2514. --- ReJoin Server ---
  2515.  
  2516. ReJoinServer.MouseButton1Down:connect(function()
  2517. local placeId = 1345139196
  2518. game:GetService("TeleportService"):Teleport(placeId)
  2519. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement