Facebook
From oyunhacker.com, 3 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 606
  1. FarmStart = false
  2. FarmArea = "none"
  3. WalkNumber = "1"
  4. JumpNumber = "1"
  5.  
  6. local petTable = {}
  7. local Try = 0
  8. local Amount = 0
  9.  
  10. function PetTable()
  11.  local Stats = workspace["__REMOTES"]["Core"]["Get Other Stats"]:InvokeServer()
  12.  local Times = #Stats[game.Players.LocalPlayer.Name]["Save"]["Pets"]
  13.  local Name = game:GetService("Players").LocalPlayer.Name
  14.  petTable = {}
  15.  Try = 0
  16.  Amount = 0
  17.     for i=1,Times do
  18.         if(Stats[Name]["Save"]["Pets"][Times].e == true) then
  19.    Amount = Amount + 1
  20.    petTable[Amount] = {
  21.     ["ID"] = tonumber(Stats[Name]["Save"]["Pets"][Times].id),
  22.     ["LEVEL"] = tonumber(Stats[Name]["Save"]["Pets"][Times].l),
  23.    }
  24.         end
  25.         Times = Times - 1
  26.     end
  27. end
  28.  
  29. local MainGUI = Instance.new("ScreenGui")
  30. local TopFrame = Instance.new("Frame")
  31. local PSHeader = Instance.new("TextLabel")
  32. local ClosePS = Instance.new("TextButton")
  33. local StatsFrame = Instance.new("Frame")
  34. local FarmCoins = Instance.new("TextButton")
  35. local FarmFrame = Instance.new("Frame")
  36. local PowerTextInfo1 = Instance.new("TextLabel")
  37. local PowerText1 = Instance.new("TextLabel")
  38. local FarmPower = Instance.new("TextBox")
  39. local StartFarming = Instance.new("TextButton")
  40. local StartFarmingEarth = Instance.new("TextButton")
  41. local StartFarmingMoon = Instance.new("TextButton")
  42. local WalkSpeed = Instance.new("TextButton")
  43. local JumpPower = Instance.new("TextButton")
  44. local BuyScreen = Instance.new("TextButton")
  45. local BuyScreenFrame = Instance.new("Frame")
  46. local BuyPetTitle1 = Instance.new("TextLabel")
  47. local BuyPetTitle2 = Instance.new("TextLabel")
  48. local BuyPetTitle3 = Instance.new("TextLabel")
  49. local BuyPetAmount1 = Instance.new("TextLabel")
  50. local BuyPetAmount2 = Instance.new("TextBox")
  51. local BuyPetAmount3 = Instance.new("TextBox")
  52. local BuyPetTier1 = Instance.new("TextLabel")
  53. local BuyPetTier2 = Instance.new("TextBox")
  54. local BuyPetGo = Instance.new("TextButton")
  55. local BuyHatTitle1 = Instance.new("TextLabel")
  56. local BuyHatTitle2 = Instance.new("TextLabel")
  57. local BuyHatAmount1 = Instance.new("TextLabel")
  58. local BuyHatAmount2 = Instance.new("TextBox")
  59. local BuyHatTier1 = Instance.new("TextLabel")
  60. local BuyHatTier2 = Instance.new("TextBox")
  61. local BuyHatGo = Instance.new("TextButton")
  62. local Locations = Instance.new("TextButton")
  63. local Locations2 = Instance.new("TextButton")
  64. local MainFrame = Instance.new("Frame")
  65. local Stats = Instance.new("TextButton")
  66. local Spawn = Instance.new("TextButton")
  67. local Shop = Instance.new("TextButton")
  68. local Area2 = Instance.new("TextButton")
  69. local Area3 = Instance.new("TextButton")
  70. local Area4 = Instance.new("TextButton")
  71. local Area5 = Instance.new("TextButton")
  72. local Area6 = Instance.new("TextButton")
  73. local Area7 = Instance.new("TextButton")
  74. local Area8 = Instance.new("TextButton")
  75. local Area9 = Instance.new("TextButton")
  76. local Area10 = Instance.new("TextButton")
  77. local Area11 = Instance.new("TextButton")
  78. local Area12 = Instance.new("TextButton")
  79. local Rocket = Instance.new("TextButton")
  80. local CandyLand = Instance.new("TextButton")
  81. local CyborgLand = Instance.new("TextButton")
  82. local AreaDivider = Instance.new("TextLabel")
  83. local AllHealthLabel = Instance.new("TextLabel")
  84. local AllHealthMinLabel = Instance.new("TextLabel")
  85. local AllHealthMaxLabel = Instance.new("TextLabel")
  86. local AllHealthMin = Instance.new("TextBox")
  87. local AllHealthMax = Instance.new("TextBox")
  88. local EarthHealthLabel = Instance.new("TextLabel")
  89. local EarthHealthMinLabel = Instance.new("TextLabel")
  90. local EarthHealthMaxLabel = Instance.new("TextLabel")
  91. local EarthHealthMin = Instance.new("TextBox")
  92. local EarthHealthMax = Instance.new("TextBox")
  93. local MoonHealthLabel = Instance.new("TextLabel")
  94. local MoonHealthMinLabel = Instance.new("TextLabel")
  95. local MoonHealthMaxLabel = Instance.new("TextLabel")
  96. local MoonHealthMin = Instance.new("TextBox")
  97. local MoonHealthMax = Instance.new("TextBox")
  98. local TeleportScreen = Instance.new("TextButton")
  99.  
  100. MainGUI.Name = "MainGUI"
  101. MainGUI.Parent = game.CoreGui
  102. local MainCORE = game.CoreGui["MainGUI"]
  103.  
  104. TopFrame.Name = "TopFrame"
  105. TopFrame.Parent = MainGUI
  106. TopFrame.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5)
  107. TopFrame.BackgroundTransparency = 0
  108. TopFrame.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  109. TopFrame.Active = true
  110. TopFrame.Selectable = true
  111. TopFrame.Draggable = true
  112. TopFrame.Visible = true
  113. TopFrame.Position = UDim2.new(1, -145, 0.5, -100)
  114. TopFrame.Size = UDim2.new(0, 140, 0, 30)
  115.  
  116. PSHeader.Name = "PSHeader"
  117. PSHeader.Parent = TopFrame
  118. PSHeader.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5)
  119. PSHeader.BackgroundTransparency = 1
  120. PSHeader.BorderSizePixel = 0
  121. PSHeader.BorderColor3 = Color3.new(0, 0, 0)
  122. PSHeader.Position = UDim2.new(0, 5, 0, 5)
  123. PSHeader.Size = UDim2.new(0, 105, 0, 20)
  124. PSHeader.Font = Enum.Font.Fantasy
  125. PSHeader.Text = "Pet Simulator"
  126. PSHeader.TextColor3 = Color3.new(0, 0, 0)
  127. PSHeader.TextScaled = true
  128. PSHeader.TextSize = 17
  129.  
  130. ClosePS.Name = "ClosePS"
  131. ClosePS.Parent = TopFrame
  132. ClosePS.BackgroundColor3 = Color3.new(0.4, 0.4, 0.4)
  133. ClosePS.BorderColor3 = Color3.new(0, 0, 0)
  134. ClosePS.Position = UDim2.new(0, 115, 0, 5)
  135. ClosePS.Size = UDim2.new(0, 20, 0, 20)
  136. ClosePS.Font = Enum.Font.Fantasy
  137. ClosePS.Text = "X"
  138. ClosePS.TextColor3 = Color3.new(1, 0, 0)
  139. ClosePS.TextScaled = true
  140. ClosePS.TextSize = 17
  141.  
  142. MainFrame.Name = "MainFrame"
  143. MainFrame.Parent = TopFrame
  144. MainFrame.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5)
  145. MainFrame.BackgroundTransparency = 0
  146. MainFrame.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  147. MainFrame.Position = UDim2.new(0, 0, 0, 30)
  148. MainFrame.Size = UDim2.new(0, 140, 0, 433)
  149. MainFrame.Visible = true
  150.  
  151. BuyScreen.Name = "BuyScreen"
  152. BuyScreen.Parent = MainFrame
  153. BuyScreen.BackgroundColor3 = Color3.new(0, 0, 0)
  154. BuyScreen.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  155. BuyScreen.Position = UDim2.new(0, 5, 0, 5)
  156. BuyScreen.Size = UDim2.new(0, 60, 0, 25)
  157. BuyScreen.Font = Enum.Font.Fantasy
  158. BuyScreen.TextColor3 = Color3.new(1, 1, 1)
  159. BuyScreen.Text = "SHOP"
  160. BuyScreen.TextSize = 17
  161. BuyScreen.TextWrapped = true
  162.  
  163. FarmCoins.Name = "FarmCoins"
  164. FarmCoins.Parent = MainFrame
  165. FarmCoins.BackgroundColor3 = Color3.new(0, 0, 0)
  166. FarmCoins.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  167. FarmCoins.Position = UDim2.new(0, 75, 0, 5)
  168. FarmCoins.Size = UDim2.new(0, 60, 0, 25)
  169. FarmCoins.Font = Enum.Font.Fantasy
  170. FarmCoins.TextColor3 = Color3.new(1, 1, 1)
  171. FarmCoins.Text = "FARM"
  172. FarmCoins.TextSize = 17
  173. FarmCoins.TextWrapped = true
  174.  
  175. WalkSpeed.Name = "WalkSpeed"
  176. WalkSpeed.Parent = MainFrame
  177. WalkSpeed.BackgroundColor3 = Color3.new(0, 0, 0)
  178. WalkSpeed.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  179. WalkSpeed.Position = UDim2.new(0, 5, 0, 40)
  180. WalkSpeed.Size = UDim2.new(0, 60, 0, 25)
  181. WalkSpeed.Font = Enum.Font.Fantasy
  182. WalkSpeed.TextColor3 = Color3.new(1, 1, 1)
  183. WalkSpeed.Text = "Walk:1"
  184. WalkSpeed.TextSize = 17
  185. WalkSpeed.TextWrapped = true
  186.  
  187. JumpPower.Name = "JumpPower"
  188. JumpPower.Parent = MainFrame
  189. JumpPower.BackgroundColor3 = Color3.new(0, 0, 0)
  190. JumpPower.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  191. JumpPower.Position = UDim2.new(0, 75, 0, 40)
  192. JumpPower.Size = UDim2.new(0, 60, 0, 25)
  193. JumpPower.Font = Enum.Font.Fantasy
  194. JumpPower.TextColor3 = Color3.new(1, 1, 1)
  195. JumpPower.Text = "Jump:1"
  196. JumpPower.TextSize = 17
  197. JumpPower.TextWrapped = true
  198.  
  199. TeleportScreen.Name = "TeleportScreen"
  200. TeleportScreen.Parent = MainFrame
  201. TeleportScreen.BackgroundColor3 = Color3.new(0, 0, 0)
  202. TeleportScreen.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  203. TeleportScreen.Position = UDim2.new(0, 5, 0, 75)
  204. TeleportScreen.Size = UDim2.new(0, 130, 0, 20)
  205. TeleportScreen.Font = Enum.Font.Fantasy
  206. TeleportScreen.TextColor3 = Color3.new(1, 1, 1)
  207. TeleportScreen.Text = "GAME TELEPORT"
  208. TeleportScreen.TextSize = 17
  209. TeleportScreen.TextWrapped = true
  210.  
  211. Spawn.Name = "Spawn"
  212. Spawn.Parent = MainFrame
  213. Spawn.BackgroundColor3 = Color3.new(0, 0, 0)
  214. Spawn.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  215. Spawn.Position = UDim2.new(0, 5, 0, 100)
  216. Spawn.Size = UDim2.new(0, 130, 0, 20)
  217. Spawn.Font = Enum.Font.Fantasy
  218. Spawn.TextColor3 = Color3.new(1, 1, 1)
  219. Spawn.Text = "Spawn Area"
  220. Spawn.TextSize = 17
  221. Spawn.TextWrapped = true
  222.  
  223. Shop.Name = "Shop"
  224. Shop.Parent = MainFrame
  225. Shop.BackgroundColor3 = Color3.new(0, 0, 0)
  226. Shop.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  227. Shop.Position = UDim2.new(0, 5, 0, 125)
  228. Shop.Size = UDim2.new(0, 130, 0, 20)
  229. Shop.Font = Enum.Font.Fantasy
  230. Shop.TextColor3 = Color3.new(1, 1, 1)
  231. Shop.Text = "Egg Shop"
  232. Shop.TextSize = 17
  233. Shop.TextWrapped = true
  234.  
  235. Area2.Name = "Area2"
  236. Area2.Parent = MainFrame
  237. Area2.BackgroundColor3 = Color3.new(0, 0, 0)
  238. Area2.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  239. Area2.Position = UDim2.new(0, 5, 0, 150)
  240. Area2.Size = UDim2.new(0, 130, 0, 20)
  241. Area2.Font = Enum.Font.Fantasy
  242. Area2.TextColor3 = Color3.new(1, 1, 1)
  243. Area2.Text = "25K Area"
  244. Area2.TextSize = 17
  245. Area2.TextWrapped = true
  246.  
  247. Area3.Name = "Area3"
  248. Area3.Parent = MainFrame
  249. Area3.BackgroundColor3 = Color3.new(0, 0, 0)
  250. Area3.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  251. Area3.Position = UDim2.new(0, 5, 0, 175)
  252. Area3.Size = UDim2.new(0, 130, 0, 20)
  253. Area3.Font = Enum.Font.Fantasy
  254. Area3.TextColor3 = Color3.new(1, 1, 1)
  255. Area3.Text = "400K Area"
  256. Area3.TextSize = 17
  257. Area3.TextWrapped = true
  258.  
  259. Area4.Name = "Area4"
  260. Area4.Parent = MainFrame
  261. Area4.BackgroundColor3 = Color3.new(0, 0, 0)
  262. Area4.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  263. Area4.Position = UDim2.new(0, 5, 0, 200)
  264. Area4.Size = UDim2.new(0, 130, 0, 20)
  265. Area4.Font = Enum.Font.Fantasy
  266. Area4.TextColor3 = Color3.new(1, 1, 1)
  267. Area4.Text = "2.5M Area"
  268. Area4.TextSize = 17
  269. Area4.TextWrapped = true
  270.  
  271. Area5.Name = "Area5"
  272. Area5.Parent = MainFrame
  273. Area5.BackgroundColor3 = Color3.new(0, 0, 0)
  274. Area5.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  275. Area5.Position = UDim2.new(0, 5, 0, 225)
  276. Area5.Size = UDim2.new(0, 130, 0, 20)
  277. Area5.Font = Enum.Font.Fantasy
  278. Area5.TextColor3 = Color3.new(1, 1, 1)
  279. Area5.Text = "20M Area"
  280. Area5.TextSize = 17
  281. Area5.TextWrapped = true
  282.  
  283. Area6.Name = "Area6"
  284. Area6.Parent = MainFrame
  285. Area6.BackgroundColor3 = Color3.new(0, 0, 0)
  286. Area6.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  287. Area6.Position = UDim2.new(0, 5, 0, 250)
  288. Area6.Size = UDim2.new(0, 130, 0, 20)
  289. Area6.Font = Enum.Font.Fantasy
  290. Area6.TextColor3 = Color3.new(1, 1, 1)
  291. Area6.Text = "500M Area"
  292. Area6.TextSize = 17
  293. Area6.TextWrapped = true
  294.  
  295. Rocket.Name = "Rocket"
  296. Rocket.Parent = MainFrame
  297. Rocket.BackgroundColor3 = Color3.new(0, 0, 0)
  298. Rocket.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  299. Rocket.Position = UDim2.new(0, 5, 0, 275)
  300. Rocket.Size = UDim2.new(0, 130, 0, 20)
  301. Rocket.Font = Enum.Font.Fantasy
  302. Rocket.TextColor3 = Color3.new(1, 1, 1)
  303. Rocket.Text = "Rocket Area"
  304. Rocket.TextSize = 17
  305. Rocket.TextWrapped = true
  306.  
  307. AreaDivider.Name = "AreaDivider"
  308. AreaDivider.Parent = MainFrame
  309. AreaDivider.BackgroundColor3 = Color3.new(0, 0, 0)
  310. AreaDivider.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  311. AreaDivider.Position = UDim2.new(0, 0, 0, 300)
  312. AreaDivider.Size = UDim2.new(0, 140, 0, 3)
  313. AreaDivider.Font = Enum.Font.Fantasy
  314. AreaDivider.Text = ""
  315. AreaDivider.TextSize = 17
  316.  
  317. Area9.Name = "Area9"
  318. Area9.Parent = MainFrame
  319. Area9.BackgroundColor3 = Color3.new(0, 0, 0)
  320. Area9.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  321. Area9.Position = UDim2.new(0, 5, 0, 308)
  322. Area9.Size = UDim2.new(0, 130, 0, 20)
  323. Area9.Font = Enum.Font.Fantasy
  324. Area9.TextColor3 = Color3.new(1, 1, 1)
  325. Area9.Text = "Moon Spawn Point"
  326. Area9.TextSize = 17
  327. Area9.TextWrapped = true
  328.  
  329. Area8.Name = "Area8"
  330. Area8.Parent = MainFrame
  331. Area8.BackgroundColor3 = Color3.new(0, 0, 0)
  332. Area8.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  333. Area8.Position = UDim2.new(0, 5, 0, 333)
  334. Area8.Size = UDim2.new(0, 130, 0, 20)
  335. Area8.Font = Enum.Font.Fantasy
  336. Area8.TextColor3 = Color3.new(1, 1, 1)
  337. Area8.Text = "Moon Egg Shop"
  338. Area8.TextSize = 17
  339. Area8.TextWrapped = true
  340.  
  341. Area10.Name = "Area10"
  342. Area10.Parent = MainFrame
  343. Area10.BackgroundColor3 = Color3.new(0, 0, 0)
  344. Area10.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  345. Area10.Position = UDim2.new(0, 5, 0, 358)
  346. Area10.Size = UDim2.new(0, 130, 0, 20)
  347. Area10.Font = Enum.Font.Fantasy
  348. Area10.TextColor3 = Color3.new(1, 1, 1)
  349. Area10.Text = "Moon Area 2"
  350. Area10.TextSize = 17
  351. Area10.TextWrapped = true
  352.  
  353. CandyLand.Name = "CandyLand"
  354. CandyLand.Parent = MainFrame
  355. CandyLand.BackgroundColor3 = Color3.new(0, 0, 0)
  356. CandyLand.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  357. CandyLand.Position = UDim2.new(0, 5, 0, 383)
  358. CandyLand.Size = UDim2.new(0, 130, 0, 20)
  359. CandyLand.Font = Enum.Font.Fantasy
  360. CandyLand.TextColor3 = Color3.new(1, 1, 1)
  361. CandyLand.Text = "Candy Land"
  362. CandyLand.TextSize = 17
  363. CandyLand.TextWrapped = true
  364.  
  365. CyborgLand.Name = "CyborgLand"
  366. CyborgLand.Parent = MainFrame
  367. CyborgLand.BackgroundColor3 = Color3.new(0, 0, 0)
  368. CyborgLand.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  369. CyborgLand.Position = UDim2.new(0, 5, 0, 408)
  370. CyborgLand.Size = UDim2.new(0, 130, 0, 20)
  371. CyborgLand.Font = Enum.Font.Fantasy
  372. CyborgLand.TextColor3 = Color3.new(1, 1, 1)
  373. CyborgLand.Text = "Cyborg Land"
  374. CyborgLand.TextSize = 17
  375. CyborgLand.TextWrapped = true
  376.  
  377. BuyScreenFrame.Name = "BuyScreenFrame"
  378. BuyScreenFrame.Parent = TopFrame
  379. BuyScreenFrame.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5)
  380. BuyScreenFrame.BackgroundTransparency = 0
  381. BuyScreenFrame.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  382. BuyScreenFrame.Position = UDim2.new(0, 0, 0, 30)
  383. BuyScreenFrame.Size = UDim2.new(0, 140, 0, 350)
  384. BuyScreenFrame.Visible = false
  385.  
  386. Locations.Name = "Locations"
  387. Locations.Parent = BuyScreenFrame
  388. Locations.BackgroundColor3 = Color3.new(0, 0, 0)
  389. Locations.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  390. Locations.Position = UDim2.new(0, 5, 0, 5)
  391. Locations.Size = UDim2.new(0, 130, 0, 25)
  392. Locations.Font = Enum.Font.Fantasy
  393. Locations.TextColor3 = Color3.new(1, 1, 1)
  394. Locations.Text = "LOCATIONS"
  395. Locations.TextSize = 17
  396. Locations.TextWrapped = true
  397.  
  398. BuyPetTitle1.Name = "BuyPetTitle1"
  399. BuyPetTitle1.Parent = BuyScreenFrame
  400. BuyPetTitle1.BackgroundColor3 = Color3.new(0, 0, 0)
  401. BuyPetTitle1.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  402. BuyPetTitle1.Position = UDim2.new(0, 5, 0, 50)
  403. BuyPetTitle1.Size = UDim2.new(0, 130, 0, 55)
  404. BuyPetTitle1.Font = Enum.Font.Fantasy
  405. BuyPetTitle1.TextColor3 = Color3.new(1, 1, 1)
  406. BuyPetTitle1.Text = "You must have the money to buy what you want"
  407. BuyPetTitle1.TextSize = 17
  408. BuyPetTitle1.TextWrapped = true
  409.  
  410. BuyPetTitle2.Name = "BuyPetTitle2"
  411. BuyPetTitle2.Parent = BuyScreenFrame
  412. BuyPetTitle2.BackgroundTransparency = 1
  413. BuyPetTitle2.BorderSizePixel = 0
  414. BuyPetTitle2.Position = UDim2.new(0, 5, 0, 110)
  415. BuyPetTitle2.Size = UDim2.new(0, 130, 0, 20)
  416. BuyPetTitle2.Font = Enum.Font.Fantasy
  417. BuyPetTitle2.TextColor3 = Color3.new(0, 0, 0)
  418. BuyPetTitle2.Text = "BUY PETS"
  419. BuyPetTitle2.TextSize = 17
  420. BuyPetTitle2.TextWrapped = true
  421.  
  422. BuyPetAmount1.Name = "BuyPetAmount1"
  423. BuyPetAmount1.Parent = BuyScreenFrame
  424. BuyPetAmount1.BackgroundColor3 = Color3.new(0, 0, 0)
  425. BuyPetAmount1.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  426. BuyPetAmount1.Position = UDim2.new(0, 6, 0, 129)
  427. BuyPetAmount1.Size = UDim2.new(0, 89, 0, 21)
  428. BuyPetAmount1.Font = Enum.Font.Fantasy
  429. BuyPetAmount1.TextColor3 = Color3.new(1, 1, 1)
  430. BuyPetAmount1.Text = "Quantity"
  431. BuyPetAmount1.TextSize = 17
  432. BuyPetAmount1.TextWrapped = true
  433.  
  434. BuyPetAmount2.Name = "BuyPetAmount2"
  435. BuyPetAmount2.Parent = BuyScreenFrame
  436. BuyPetAmount2.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  437. BuyPetAmount2.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  438. BuyPetAmount2.Position = UDim2.new(0, 95, 0, 130)
  439. BuyPetAmount2.Size = UDim2.new(0, 40, 0, 20)
  440. BuyPetAmount2.Font = Enum.Font.Fantasy
  441. BuyPetAmount2.TextColor3 = Color3.new(1, 1, 1)
  442. BuyPetAmount2.Text = "1"
  443. BuyPetAmount2.TextSize = 17
  444. BuyPetAmount2.TextWrapped = true
  445.  
  446. BuyPetTier1.Name = "BuyPetTier1"
  447. BuyPetTier1.Parent = BuyScreenFrame
  448. BuyPetTier1.BackgroundColor3 = Color3.new(0, 0, 0)
  449. BuyPetTier1.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  450. BuyPetTier1.Position = UDim2.new(0, 6, 0, 150)
  451. BuyPetTier1.Size = UDim2.new(0, 89, 0, 20)
  452. BuyPetTier1.Font = Enum.Font.Fantasy
  453. BuyPetTier1.TextColor3 = Color3.new(1, 1, 1)
  454. BuyPetTier1.Text = "Tier"
  455. BuyPetTier1.TextSize = 17
  456. BuyPetTier1.TextWrapped = true
  457.  
  458. BuyPetTier2.Name = "BuyPetTier2"
  459. BuyPetTier2.Parent = BuyScreenFrame
  460. BuyPetTier2.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  461. BuyPetTier2.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  462. BuyPetTier2.Position = UDim2.new(0, 95, 0, 150)
  463. BuyPetTier2.Size = UDim2.new(0, 40, 0, 20)
  464. BuyPetTier2.Font = Enum.Font.Fantasy
  465. BuyPetTier2.TextColor3 = Color3.new(1, 1, 1)
  466. BuyPetTier2.Text = "16"
  467. BuyPetTier2.TextSize = 17
  468. BuyPetTier2.TextWrapped = true
  469.  
  470. BuyPetGo.Name = "BuyPetGo"
  471. BuyPetGo.Parent = BuyScreenFrame
  472. BuyPetGo.BackgroundColor3 = Color3.new(0.3, 0, 0)
  473. BuyPetGo.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  474. BuyPetGo.Position = UDim2.new(0, 5, 0, 170)
  475. BuyPetGo.Size = UDim2.new(0, 130, 0, 20)
  476. BuyPetGo.Font = Enum.Font.Fantasy
  477. BuyPetGo.TextColor3 = Color3.new(1, 1, 1)
  478. BuyPetGo.Text = "Buy Eggs"
  479. BuyPetGo.TextSize = 17
  480. BuyPetGo.TextWrapped = true
  481.  
  482. BuyPetTitle3.Name = "BuyPetTitle3"
  483. BuyPetTitle3.Parent = BuyScreenFrame
  484. BuyPetTitle3.BackgroundColor3 = Color3.new(0, 0, 0)
  485. BuyPetTitle3.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  486. BuyPetTitle3.Position = UDim2.new(0, 5, 0, 195)
  487. BuyPetTitle3.Size = UDim2.new(0, 130, 0, 20)
  488. BuyPetTitle3.Font = Enum.Font.Fantasy
  489. BuyPetTitle3.TextColor3 = Color3.new(1, 1, 1)
  490. BuyPetTitle3.Text = "In Tier type 1-16"
  491. BuyPetTitle3.TextSize = 17
  492. BuyPetTitle3.TextWrapped = true
  493.  
  494. BuyHatTitle2.Name = "BuyHatTitle2"
  495. BuyHatTitle2.Parent = BuyScreenFrame
  496. BuyHatTitle2.BackgroundTransparency = 1
  497. BuyHatTitle2.BorderSizePixel = 0
  498. BuyHatTitle2.Position = UDim2.new(0, 5, 0, 225)
  499. BuyHatTitle2.Size = UDim2.new(0, 130, 0, 20)
  500. BuyHatTitle2.Font = Enum.Font.Fantasy
  501. BuyHatTitle2.TextColor3 = Color3.new(0, 0, 0)
  502. BuyHatTitle2.Text = "BUY HATS"
  503. BuyHatTitle2.TextSize = 17
  504. BuyHatTitle2.TextWrapped = true
  505.  
  506. BuyHatAmount1.Name = "BuyHatAmount1"
  507. BuyHatAmount1.Parent = BuyScreenFrame
  508. BuyHatAmount1.BackgroundColor3 = Color3.new(0, 0, 0)
  509. BuyHatAmount1.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  510. BuyHatAmount1.Position = UDim2.new(0, 6, 0, 245)
  511. BuyHatAmount1.Size = UDim2.new(0, 89, 0, 20)
  512. BuyHatAmount1.Font = Enum.Font.Fantasy
  513. BuyHatAmount1.TextColor3 = Color3.new(1, 1, 1)
  514. BuyHatAmount1.Text = "Quantity"
  515. BuyHatAmount1.TextSize = 17
  516. BuyHatAmount1.TextWrapped = true
  517.  
  518. BuyHatAmount2.Name = "BuyHatAmount2"
  519. BuyHatAmount2.Parent = BuyScreenFrame
  520. BuyHatAmount2.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  521. BuyHatAmount2.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  522. BuyHatAmount2.Position = UDim2.new(0, 95, 0, 244)
  523. BuyHatAmount2.Size = UDim2.new(0, 40, 0, 21)
  524. BuyHatAmount2.Font = Enum.Font.Fantasy
  525. BuyHatAmount2.TextColor3 = Color3.new(1, 1, 1)
  526. BuyHatAmount2.Text = "1"
  527. BuyHatAmount2.TextSize = 17
  528. BuyHatAmount2.TextWrapped = true
  529.  
  530. BuyHatTier1.Name = "BuyHatTier1"
  531. BuyHatTier1.Parent = BuyScreenFrame
  532. BuyHatTier1.BackgroundColor3 = Color3.new(0, 0, 0)
  533. BuyHatTier1.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  534. BuyHatTier1.Position = UDim2.new(0, 6, 0, 265)
  535. BuyHatTier1.Size = UDim2.new(0, 60, 0, 20)
  536. BuyHatTier1.Font = Enum.Font.Fantasy
  537. BuyHatTier1.TextColor3 = Color3.new(1, 1, 1)
  538. BuyHatTier1.Text = "Tier"
  539. BuyHatTier1.TextSize = 17
  540. BuyHatTier1.TextWrapped = true
  541.  
  542. BuyHatTier2.Name = "BuyHatTier2"
  543. BuyHatTier2.Parent = BuyScreenFrame
  544. BuyHatTier2.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  545. BuyHatTier2.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  546. BuyHatTier2.Position = UDim2.new(0, 66, 0, 265)
  547. BuyHatTier2.Size = UDim2.new(0, 69, 0, 20)
  548. BuyHatTier2.Font = Enum.Font.Fantasy
  549. BuyHatTier2.TextColor3 = Color3.new(1, 1, 1)
  550. BuyHatTier2.Text = "Golden"
  551. BuyHatTier2.TextSize = 17
  552. BuyHatTier2.TextWrapped = true
  553.  
  554. BuyHatGo.Name = "BuyHatGo"
  555. BuyHatGo.Parent = BuyScreenFrame
  556. BuyHatGo.BackgroundColor3 = Color3.new(0.3, 0, 0)
  557. BuyHatGo.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  558. BuyHatGo.Position = UDim2.new(0, 5, 0, 285)
  559. BuyHatGo.Size = UDim2.new(0, 130, 0, 20)
  560. BuyHatGo.Font = Enum.Font.Fantasy
  561. BuyHatGo.TextColor3 = Color3.new(1, 1, 1)
  562. BuyHatGo.Text = "Buy Hats"
  563. BuyHatGo.TextSize = 17
  564. BuyHatGo.TextWrapped = true
  565.  
  566. BuyHatTitle1.Name = "BuyHatTitle1"
  567. BuyHatTitle1.Parent = BuyScreenFrame
  568. BuyHatTitle1.BackgroundColor3 = Color3.new(0, 0, 0)
  569. BuyHatTitle1.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  570. BuyHatTitle1.Position = UDim2.new(0, 5, 0, 310)
  571. BuyHatTitle1.Size = UDim2.new(0, 130, 0, 35)
  572. BuyHatTitle1.Font = Enum.Font.Fantasy
  573. BuyHatTitle1.TextColor3 = Color3.new(1, 1, 1)
  574. BuyHatTitle1.Text = "In Tier type 1-4 or Golden"
  575. BuyHatTitle1.TextSize = 17
  576. BuyHatTitle1.TextWrapped = true
  577.  
  578. FarmFrame.Name = "FarmFrame"
  579. FarmFrame.Parent = TopFrame
  580. FarmFrame.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5)
  581. FarmFrame.BackgroundTransparency = 0
  582. FarmFrame.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  583. FarmFrame.Position = UDim2.new(0, 0, 0, 30)
  584. FarmFrame.Size = UDim2.new(0, 140, 0, 351)
  585. FarmFrame.Visible = false
  586.  
  587. Locations2.Name = "Locations2"
  588. Locations2.Parent = FarmFrame
  589. Locations2.BackgroundColor3 = Color3.new(0, 0, 0)
  590. Locations2.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  591. Locations2.Position = UDim2.new(0, 5, 0, 5)
  592. Locations2.Size = UDim2.new(0, 130, 0, 25)
  593. Locations2.Font = Enum.Font.Fantasy
  594. Locations2.TextColor3 = Color3.new(1, 1, 1)
  595. Locations2.Text = "LOCATIONS"
  596. Locations2.TextSize = 17
  597. Locations2.TextWrapped = true
  598.  
  599. AllHealthLabel.Name = "AllHealthLabel"
  600. AllHealthLabel.Parent = FarmFrame
  601. AllHealthLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  602. AllHealthLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  603. AllHealthLabel.Position = UDim2.new(0, 5, 0, 50)
  604. AllHealthLabel.Size = UDim2.new(0, 130, 0, 20)
  605. AllHealthLabel.Font = Enum.Font.Fantasy
  606. AllHealthLabel.TextColor3 = Color3.new(1, 1, 1)
  607. AllHealthLabel.Text = "Coin/Chest Health"
  608. AllHealthLabel.TextSize = 17
  609. AllHealthLabel.TextWrapped = true
  610.  
  611. AllHealthMinLabel.Name = "AllHealthMinLabel"
  612. AllHealthMinLabel.Parent = FarmFrame
  613. AllHealthMinLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  614. AllHealthMinLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  615. AllHealthMinLabel.Position = UDim2.new(0, 5, 0, 71)
  616. AllHealthMinLabel.Size = UDim2.new(0, 40, 0, 20)
  617. AllHealthMinLabel.Font = Enum.Font.Fantasy
  618. AllHealthMinLabel.TextColor3 = Color3.new(1, 1, 1)
  619. AllHealthMinLabel.Text = "Min"
  620. AllHealthMinLabel.TextSize = 17
  621. AllHealthMinLabel.TextWrapped = true
  622.  
  623. AllHealthMin.Name = "AllHealthMin"
  624. AllHealthMin.Parent = FarmFrame
  625. AllHealthMin.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  626. AllHealthMin.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  627. AllHealthMin.Position = UDim2.new(0, 46, 0, 71)
  628. AllHealthMin.Size = UDim2.new(0, 89, 0, 20)
  629. AllHealthMin.Font = Enum.Font.Fantasy
  630. AllHealthMin.TextColor3 = Color3.new(1, 1, 1)
  631. AllHealthMin.Text = "1"
  632. AllHealthMin.TextSize = 17
  633. AllHealthMin.TextWrapped = true
  634.  
  635. AllHealthMaxLabel.Name = "AllHealthMaxLabel"
  636. AllHealthMaxLabel.Parent = FarmFrame
  637. AllHealthMaxLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  638. AllHealthMaxLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  639. AllHealthMaxLabel.Position = UDim2.new(0, 5, 0, 92)
  640. AllHealthMaxLabel.Size = UDim2.new(0, 40, 0, 20)
  641. AllHealthMaxLabel.Font = Enum.Font.Fantasy
  642. AllHealthMaxLabel.TextColor3 = Color3.new(1, 1, 1)
  643. AllHealthMaxLabel.Text = "Max"
  644. AllHealthMaxLabel.TextSize = 17
  645. AllHealthMaxLabel.TextWrapped = true
  646.  
  647. AllHealthMax.Name = "AllHealthMax"
  648. AllHealthMax.Parent = FarmFrame
  649. AllHealthMax.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  650. AllHealthMax.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  651. AllHealthMax.Position = UDim2.new(0, 46, 0, 92)
  652. AllHealthMax.Size = UDim2.new(0, 89, 0, 20)
  653. AllHealthMax.Font = Enum.Font.Fantasy
  654. AllHealthMax.TextColor3 = Color3.new(1, 1, 1)
  655. AllHealthMax.Text = "10e6"
  656. AllHealthMax.TextSize = 17
  657. AllHealthMax.TextWrapped = true
  658.  
  659. StartFarming.Name = "StartFarming"
  660. StartFarming.Parent = FarmFrame
  661. StartFarming.BackgroundColor3 = Color3.new(0.3, 0, 0)
  662. StartFarming.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  663. StartFarming.Position = UDim2.new(0, 5, 0, 117)
  664. StartFarming.Size = UDim2.new(0, 130, 0, 25)
  665. StartFarming.Font = Enum.Font.Fantasy
  666. StartFarming.TextColor3 = Color3.new(1, 1, 1)
  667. StartFarming.Text = "Mine ALL: OFF"
  668. StartFarming.TextSize = 17
  669. StartFarming.TextWrapped = true
  670.  
  671. EarthHealthLabel.Name = "EarthHealthLabel"
  672. EarthHealthLabel.Parent = FarmFrame
  673. EarthHealthLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  674. EarthHealthLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  675. EarthHealthLabel.Position = UDim2.new(0, 5, 0, 152)
  676. EarthHealthLabel.Size = UDim2.new(0, 130, 0, 20)
  677. EarthHealthLabel.Font = Enum.Font.Fantasy
  678. EarthHealthLabel.TextColor3 = Color3.new(1, 1, 1)
  679. EarthHealthLabel.Text = "Coin/Chest Health"
  680. EarthHealthLabel.TextSize = 17
  681. EarthHealthLabel.TextWrapped = true
  682.  
  683. EarthHealthMinLabel.Name = "EarthHealthMinLabel"
  684. EarthHealthMinLabel.Parent = FarmFrame
  685. EarthHealthMinLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  686. EarthHealthMinLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  687. EarthHealthMinLabel.Position = UDim2.new(0, 5, 0, 173)
  688. EarthHealthMinLabel.Size = UDim2.new(0, 40, 0, 20)
  689. EarthHealthMinLabel.Font = Enum.Font.Fantasy
  690. EarthHealthMinLabel.TextColor3 = Color3.new(1, 1, 1)
  691. EarthHealthMinLabel.Text = "Min"
  692. EarthHealthMinLabel.TextSize = 17
  693. EarthHealthMinLabel.TextWrapped = true
  694.  
  695. EarthHealthMin.Name = "EarthHealthMin"
  696. EarthHealthMin.Parent = FarmFrame
  697. EarthHealthMin.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  698. EarthHealthMin.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  699. EarthHealthMin.Position = UDim2.new(0, 46, 0, 173)
  700. EarthHealthMin.Size = UDim2.new(0, 89, 0, 20)
  701. EarthHealthMin.Font = Enum.Font.Fantasy
  702. EarthHealthMin.TextColor3 = Color3.new(1, 1, 1)
  703. EarthHealthMin.Text = "1"
  704. EarthHealthMin.TextSize = 17
  705. EarthHealthMin.TextWrapped = true
  706.  
  707. EarthHealthMaxLabel.Name = "EarthHealthMaxLabel"
  708. EarthHealthMaxLabel.Parent = FarmFrame
  709. EarthHealthMaxLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  710. EarthHealthMaxLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  711. EarthHealthMaxLabel.Position = UDim2.new(0, 5, 0, 194)
  712. EarthHealthMaxLabel.Size = UDim2.new(0, 40, 0, 20)
  713. EarthHealthMaxLabel.Font = Enum.Font.Fantasy
  714. EarthHealthMaxLabel.TextColor3 = Color3.new(1, 1, 1)
  715. EarthHealthMaxLabel.Text = "Max"
  716. EarthHealthMaxLabel.TextSize = 17
  717. EarthHealthMaxLabel.TextWrapped = true
  718.  
  719. EarthHealthMax.Name = "EarthHealthMax"
  720. EarthHealthMax.Parent = FarmFrame
  721. EarthHealthMax.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  722. EarthHealthMax.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  723. EarthHealthMax.Position = UDim2.new(0, 46, 0, 194)
  724. EarthHealthMax.Size = UDim2.new(0, 89, 0, 20)
  725. EarthHealthMax.Font = Enum.Font.Fantasy
  726. EarthHealthMax.TextColor3 = Color3.new(1, 1, 1)
  727. EarthHealthMax.Text = "20e06"
  728. EarthHealthMax.TextSize = 17
  729. EarthHealthMax.TextWrapped = true
  730.  
  731. StartFarmingEarth.Name = "StartFarmingEarth"
  732. StartFarmingEarth.Parent = FarmFrame
  733. StartFarmingEarth.BackgroundColor3 = Color3.new(0.3, 0, 0)
  734. StartFarmingEarth.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  735. StartFarmingEarth.Position = UDim2.new(0, 5, 0, 219)
  736. StartFarmingEarth.Size = UDim2.new(0, 130, 0, 25)
  737. StartFarmingEarth.Font = Enum.Font.Fantasy
  738. StartFarmingEarth.TextColor3 = Color3.new(1, 1, 1)
  739. StartFarmingEarth.Text = "Mine Earth: OFF"
  740. StartFarmingEarth.TextSize = 17
  741. StartFarmingEarth.TextWrapped = true
  742.  
  743. MoonHealthLabel.Name = "MoonHealthLabel"
  744. MoonHealthLabel.Parent = FarmFrame
  745. MoonHealthLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  746. MoonHealthLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  747. MoonHealthLabel.Position = UDim2.new(0, 5, 0, 254)
  748. MoonHealthLabel.Size = UDim2.new(0, 130, 0, 20)
  749. MoonHealthLabel.Font = Enum.Font.Fantasy
  750. MoonHealthLabel.TextColor3 = Color3.new(1, 1, 1)
  751. MoonHealthLabel.Text = "Coin/Chest Health"
  752. MoonHealthLabel.TextSize = 17
  753. MoonHealthLabel.TextWrapped = true
  754.  
  755. MoonHealthMinLabel.Name = "MoonHealthMinLabel"
  756. MoonHealthMinLabel.Parent = FarmFrame
  757. MoonHealthMinLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  758. MoonHealthMinLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  759. MoonHealthMinLabel.Position = UDim2.new(0, 5, 0, 275)
  760. MoonHealthMinLabel.Size = UDim2.new(0, 40, 0, 20)
  761. MoonHealthMinLabel.Font = Enum.Font.Fantasy
  762. MoonHealthMinLabel.TextColor3 = Color3.new(1, 1, 1)
  763. MoonHealthMinLabel.Text = "Min"
  764. MoonHealthMinLabel.TextSize = 17
  765. MoonHealthMinLabel.TextWrapped = true
  766.  
  767. MoonHealthMin.Name = "MoonHealthMin"
  768. MoonHealthMin.Parent = FarmFrame
  769. MoonHealthMin.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  770. MoonHealthMin.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  771. MoonHealthMin.Position = UDim2.new(0, 46, 0, 275)
  772. MoonHealthMin.Size = UDim2.new(0, 89, 0, 20)
  773. MoonHealthMin.Font = Enum.Font.Fantasy
  774. MoonHealthMin.TextColor3 = Color3.new(1, 1, 1)
  775. MoonHealthMin.Text = "10e04"
  776. MoonHealthMin.TextSize = 17
  777. MoonHealthMin.TextWrapped = true
  778.  
  779. MoonHealthMaxLabel.Name = "MoonHealthMaxLabel"
  780. MoonHealthMaxLabel.Parent = FarmFrame
  781. MoonHealthMaxLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  782. MoonHealthMaxLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  783. MoonHealthMaxLabel.Position = UDim2.new(0, 5, 0, 296)
  784. MoonHealthMaxLabel.Size = UDim2.new(0, 40, 0, 20)
  785. MoonHealthMaxLabel.Font = Enum.Font.Fantasy
  786. MoonHealthMaxLabel.TextColor3 = Color3.new(1, 1, 1)
  787. MoonHealthMaxLabel.Text = "Max"
  788. MoonHealthMaxLabel.TextSize = 17
  789. MoonHealthMaxLabel.TextWrapped = true
  790.  
  791. MoonHealthMax.Name = "MoonHealthMax"
  792. MoonHealthMax.Parent = FarmFrame
  793. MoonHealthMax.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  794. MoonHealthMax.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  795. MoonHealthMax.Position = UDim2.new(0, 46, 0, 296)
  796. MoonHealthMax.Size = UDim2.new(0, 89, 0, 20)
  797. MoonHealthMax.Font = Enum.Font.Fantasy
  798. MoonHealthMax.TextColor3 = Color3.new(1, 1, 1)
  799. MoonHealthMax.Text = "60e06"
  800. MoonHealthMax.TextSize = 17
  801. MoonHealthMax.TextWrapped = true
  802.  
  803. StartFarmingMoon.Name = "StartFarmingMoon"
  804. StartFarmingMoon.Parent = FarmFrame
  805. StartFarmingMoon.BackgroundColor3 = Color3.new(0.3, 0, 0)
  806. StartFarmingMoon.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  807. StartFarmingMoon.Position = UDim2.new(0, 5, 0, 321)
  808. StartFarmingMoon.Size = UDim2.new(0, 130, 0, 25)
  809. StartFarmingMoon.Font = Enum.Font.Fantasy
  810. StartFarmingMoon.TextColor3 = Color3.new(1, 1, 1)
  811. StartFarmingMoon.Text = "Mine Moon: OFF"
  812. StartFarmingMoon.TextSize = 17
  813. StartFarmingMoon.TextWrapped = true
  814.  
  815. -- Close GUI --
  816. ClosePS.MouseButton1Down:connect(function()
  817.  MainGUI:destroy()
  818. end)
  819.  
  820. BuyScreen.MouseButton1Click:connect(function()
  821.  MainFrame.Visible = false
  822.  BuyScreenFrame.Visible = true
  823. end)
  824.  
  825. Locations.MouseButton1Click:connect(function()
  826.  MainFrame.Visible = true
  827.  BuyScreenFrame.Visible = false
  828. end)
  829.  
  830. FarmCoins.MouseButton1Click:connect(function()
  831.  MainFrame.Visible = false
  832.  FarmFrame.Visible = true
  833. end)
  834.  
  835. Locations2.MouseButton1Click:connect(function()
  836.  MainFrame.Visible = true
  837.  FarmFrame.Visible = false
  838. end)
  839.  
  840. TeleportScreen.MouseButton1Click:connect(function()
  841.  game.Players.LocalPlayer.PlayerGui.Teleport.Enabled = true
  842. end)
  843.  
  844. -- Farm --
  845.  
  846. StartFarming.MouseButton1Click:connect(function()
  847.  if not FarmStart then
  848.   FarmArea = "all"
  849.   FarmCoins.BackgroundColor3 = Color3.new(0, 0.3, 0)
  850.   StartFarming.BackgroundColor3 = Color3.new(0, 0.3, 0)
  851.   StartFarming.Text = "Mine ALL: ON"
  852.   PetTable()
  853.   FarmStart = true
  854.  else
  855.   FarmStart = false
  856.   FarmArea = "none"
  857.   FarmCoins.BackgroundColor3 = Color3.new(0, 0, 0)
  858.   StartFarming.BackgroundColor3 = Color3.new(0.3, 0, 0)
  859.   StartFarming.Text = "Mine ALL: OFF"
  860.  end
  861. end)
  862.  
  863. StartFarmingEarth.MouseButton1Click:connect(function()
  864.  if not FarmStart then
  865.   FarmArea = "earth"
  866.   FarmCoins.BackgroundColor3 = Color3.new(0, 0.3, 0)
  867.   StartFarmingEarth.BackgroundColor3 = Color3.new(0, 0.3, 0)
  868.   StartFarmingEarth.Text = "Mine Earth: ON"
  869.   PetTable()
  870.   FarmStart = true
  871.  else
  872.   FarmStart = false
  873.   FarmArea = "none"
  874.   FarmCoins.BackgroundColor3 = Color3.new(0, 0, 0)
  875.   StartFarmingEarth.BackgroundColor3 = Color3.new(0.3, 0, 0)
  876.   StartFarmingEarth.Text = "Mine Earth: OFF"
  877.  end
  878. end)
  879.  
  880. StartFarmingMoon.MouseButton1Click:connect(function()
  881.  if not FarmStart then
  882.   FarmArea = "moon"
  883.   FarmCoins.BackgroundColor3 = Color3.new(0, 0.3, 0)
  884.   StartFarmingMoon.BackgroundColor3 = Color3.new(0, 0.3, 0)
  885.   StartFarmingMoon.Text = "Mine Moon: ON"
  886.   PetTable()
  887.   FarmStart = true
  888.  else
  889.   FarmStart = false
  890.   FarmArea = "none"
  891.   FarmCoins.BackgroundColor3 = Color3.new(0, 0, 0)
  892.   StartFarmingMoon.BackgroundColor3 = Color3.new(0.3, 0, 0)
  893.   StartFarmingMoon.Text = "Mine Moon: OFF"
  894.  end
  895. end)
  896.  
  897. function Mine(Coin)
  898.     while FarmStart and (Coin:FindFirstChild("Health") ~= nil) and (Coin:FindFirstChild("Health").Value > 0)  do
  899.   wait(0.1)
  900.   for PetNumber,_ in pairs(petTable) do
  901.    workspace["__REMOTES"]["Game"]["Coins"]:FireServer("Mine",Coin.Name,petTable[PetNumber]["LEVEL"],petTable[PetNumber]["ID"])
  902.   end
  903.  end
  904. end
  905.  
  906. spawn(function()
  907.  while true do
  908.   while FarmStart do
  909.    for _,Coin in next, workspace["__THINGS"].Coins:GetChildren() do
  910.     if (done ~= Coin) then
  911.      if (FarmArea == "all") then
  912.       if workspace.__THINGS.Coins:FindFirstChild(Coin.Name) then
  913.        if Coin.Health.Value > tonumber(AllHealthMin.Text) and Coin.Health.Value < tonumber(AllHealthMax.Text) then
  914.         Mine(Coin)
  915.        end
  916.       end
  917.      elseif (FarmArea == "earth") then
  918.       if workspace.__THINGS.Coins:FindFirstChild(Coin.Name) then
  919.        if Coin.Position.Y < 100 then
  920.         if Coin.Health.Value > tonumber(EarthHealthMin.Text) and Coin.Health.Value < tonumber(EarthHealthMax.Text) then
  921.          Mine(Coin)
  922.         end
  923.        end
  924.       end
  925.      elseif (FarmArea == "moon") then
  926.       if workspace.__THINGS.Coins:FindFirstChild(Coin.Name) then
  927.        if Coin.Position.Y > 100 then
  928.         if Coin.Health.Value > tonumber(MoonHealthMin.Text) and Coin.Health.Value < tonumber(MoonHealthMax.Text) then
  929.          Mine(Coin)
  930.         end
  931.        end
  932.       end
  933.      else
  934.      end
  935.     end
  936.    end
  937.    wait()
  938.   end
  939.   wait()
  940.  end
  941. end)
  942.  
  943. WalkSpeed.MouseButton1Click:connect(function()
  944.  if WalkNumber == "1" then
  945.   WalkSpeed.BackgroundColor3 = Color3.new(0, 0, 0.5)
  946.   WalkSpeed.Text = "Walk:2"
  947.   WalkNumber = "2"
  948.   Walk = 30
  949.  elseif WalkNumber == "2" then
  950.   WalkSpeed.BackgroundColor3 = Color3.new(0.5, 0, 0)
  951.   WalkSpeed.Text = "Walk:3"
  952.   WalkNumber = "3"
  953.   Walk = 80
  954.  elseif WalkNumber == "3" then
  955.   WalkSpeed.BackgroundColor3 = Color3.new(0, 0, 0)
  956.   WalkSpeed.Text = "Walk:1"
  957.   WalkNumber = "1"
  958.   Walk = 16
  959.  else
  960.   WalkSpeed.BackgroundColor3 = Color3.new(0, 0, 0)
  961.   WalkSpeed.Text = "Walk:1"
  962.   WalkNumber = "1"
  963.   Walk = 16
  964.  end
  965.  player = game.Players.LocalPlayer
  966.  player.Character.Humanoid.WalkSpeed = Walk
  967. end)
  968.  
  969. JumpPower.MouseButton1Click:connect(function()
  970.  if JumpNumber == "1" then
  971.   JumpPower.BackgroundColor3 = Color3.new(0, 0, 0.5)
  972.   JumpPower.Text = "Jump:2"
  973.   JumpNumber = "2"
  974.   Jump = 150
  975.  elseif JumpNumber == "2" then
  976.   JumpPower.BackgroundColor3 = Color3.new(0.5, 0, 0)
  977.   JumpPower.Text = "Jump:3"
  978.   JumpNumber = "3"
  979.   Jump = 400
  980.  elseif JumpNumber == "3" then
  981.   JumpPower.BackgroundColor3 = Color3.new(0, 0, 0)
  982.   JumpPower.Text = "Jump:1"
  983.   JumpNumber = "1"
  984.   Jump = 50
  985.  else
  986.   JumpPower.BackgroundColor3 = Color3.new(0, 0, 0)
  987.   JumpPower.Text = "Jump:1"
  988.   JumpNumber = "1"
  989.   Jump = 50
  990.  end
  991.  player = game.Players.LocalPlayer
  992.  player.Character.Humanoid.JumpPower = Jump
  993. end)
  994.  
  995. -- Buy Eggs and Hats --
  996.  
  997. BuyPetGo.MouseButton1Click:connect(function()
  998.  for i = 1, tonumber(BuyPetAmount2.Text) do
  999.   if tonumber(BuyPetAmount2.Text) == 0 then break end
  1000.   game:GetService("Workspace")["__REMOTES"]["Game"].Shop:InvokeServer("Buy", "Eggs", "Tier " ..BuyPetTier2.Text)
  1001.   wait()
  1002.  end
  1003. end)
  1004.  
  1005. BuyHatGo.MouseButton1Click:connect(function()
  1006.  for i = 1, tonumber(BuyHatAmount2.Text) do
  1007.   if tonumber(BuyHatAmount2.Text) == 0 then break end
  1008.   if BuyHatTier2.Text:lower() == "golden" then
  1009.    game:GetService("Workspace")["__REMOTES"]["Game"].Shop:InvokeServer("Buy", "Presents", "Golden")
  1010.   else
  1011.    game:GetService("Workspace")["__REMOTES"]["Game"].Shop:InvokeServer("Buy", "Presents", "Tier " ..BuyHatTier2.Text)
  1012.   end
  1013.   wait()
  1014.  end
  1015. end)
  1016.  
  1017. -- TP to locations --
  1018. Spawn.MouseButton1Click:connect(function()
  1019.  game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(526, -36.292, 909)
  1020. end)
  1021.  
  1022. Shop.MouseButton1Click:connect(function()
  1023.  game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(647.35, -33.6, 890.23)
  1024. end)
  1025.  
  1026. Area2.MouseButton1Click:connect(function()
  1027.  game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(13, -37, 885)
  1028. end)
  1029.  
  1030. Area3.MouseButton1Click:connect(function()
  1031.  game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-364, -37, 885)
  1032. end)
  1033.  
  1034. Area4.MouseButton1Click:connect(function()
  1035.  game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-760, -37, 885)
  1036. end)
  1037.  
  1038. Area5.MouseButton1Click:connect(function()
  1039.  game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1160, -37, 885)
  1040. end)
  1041.  
  1042. Area6.MouseButton1Click:connect(function()
  1043.  game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1500, -37, 885)
  1044. end)
  1045.  
  1046. Rocket.MouseButton1Click:connect(function()
  1047.  game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1828, -37, 897)
  1048. end)
  1049.  
  1050. Area8.MouseButton1Click:connect(function()
  1051.  game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(616, 146, -1720)
  1052. end)
  1053.  
  1054. Area9.MouseButton1Click:connect(function()
  1055.  game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(527, 145, -1762)
  1056. end)
  1057.  
  1058. Area10.MouseButton1Click:connect(function()
  1059.  game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(124.8, 145, -1718)
  1060. end)
  1061.  
  1062. CandyLand.MouseButton1Click:connect(function()
  1063.  game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(13.7, 145, -1449.8)
  1064. end)
  1065.  
  1066. CyborgLand.MouseButton1Click:connect(function()
  1067.  game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-283.5, 145, -1704.4)
  1068. end)