Facebook
From JD, 5 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 239
  1. FarmStart = false
  2. FarmArea = "none"
  3. showstartmessage = true
  4. WalkNumber = "1"
  5. JumpNumber = "1"
  6.  
  7. local plr = game:GetService("Players").LocalPlayer
  8. local coins = game.Workspace:WaitForChild("__REMOTES"):WaitForChild("Coins")
  9. local save = game.Workspace:WaitForChild("__REMOTES"):WaitForChild("Get Other Stats"):InvokeServer()
  10. local pets = game:GetService("Workspace")["__REMOTES"].Pets
  11. local a = #save[plr.Name]["Save"]["Pets"]
  12. local petids = {}
  13. local petAP = {}
  14. local done = "no"
  15.  
  16. function p()
  17.     for i=1,a do
  18.         if(save[plr.Name]["Save"]["Pets"][a].e == true) then
  19.             table.insert(petids, save[plr.Name]["Save"]["Pets"][a].id)
  20.             petAP[save[plr.Name]["Save"]["Pets"][a].id] = tonumber(save[plr.Name]["Save"]["Pets"][a].ba) * 4
  21.             print("Active Pet, Id:" ..save[plr.Name]["Save"]["Pets"][a].id.. "  Damage:" ..tonumber(save[plr.Name]["Save"]["Pets"][a].ba) * 4)
  22.         end
  23.         a = a - 1
  24.     end
  25. end
  26. p()
  27.  
  28. local MainGUI = Instance.new("ScreenGui")
  29. local TopFrame = Instance.new("Frame")
  30. local PSHeader = Instance.new("TextLabel")
  31. local ClosePS = Instance.new("TextButton")
  32. local StatsFrame = Instance.new("Frame")
  33. local FarmCoins = Instance.new("TextButton")
  34. local FarmFrame = Instance.new("Frame")
  35. local PowerTextInfo1 = Instance.new("TextLabel")
  36. local PowerText1 = Instance.new("TextLabel")
  37. local FarmPower = Instance.new("TextBox")
  38. local StartFarming = Instance.new("TextButton")
  39. local StartFarmingEarth = Instance.new("TextButton")
  40. local StartFarmingMoon = Instance.new("TextButton")
  41. local WalkSpeed = Instance.new("TextButton")
  42. local JumpPower = Instance.new("TextButton")
  43. local Locations = Instance.new("TextButton")
  44. local Locations2 = Instance.new("TextButton")
  45. local PetCode = Instance.new("TextButton")
  46. local CodeInfoFrame = Instance.new("Frame")
  47. local CodeInfo1 = Instance.new("TextLabel")
  48. local SelectPet = Instance.new("TextLabel")
  49. local SelectPetInput = Instance.new("TextBox")
  50. local MaxCoins = Instance.new("TextLabel")
  51. local MaxC1 = Instance.new("TextButton")
  52. local MaxC2 = Instance.new("TextButton")
  53. local MaxC3 = Instance.new("TextButton")
  54. local MaxAgility = Instance.new("TextLabel")
  55. local MaxA1 = Instance.new("TextButton")
  56. local MaxA2 = Instance.new("TextButton")
  57. local MaxA3 = Instance.new("TextButton")
  58. local MainFrame = Instance.new("Frame")
  59. local Stats = Instance.new("TextButton")
  60. local Spawn = Instance.new("TextButton")
  61. local Shop = Instance.new("TextButton")
  62. local Area2 = Instance.new("TextButton")
  63. local Area3 = Instance.new("TextButton")
  64. local Area4 = Instance.new("TextButton")
  65. local Area5 = Instance.new("TextButton")
  66. local Area6 = Instance.new("TextButton")
  67. local Area7 = Instance.new("TextButton")
  68. local Area8 = Instance.new("TextButton")
  69. local Area9 = Instance.new("TextButton")
  70. local Area10 = Instance.new("TextButton")
  71. local Area11 = Instance.new("TextButton")
  72. local Area12 = Instance.new("TextButton")
  73. local Rocket = Instance.new("TextButton")
  74. local CandyLand = Instance.new("TextButton")
  75. local CyborgLand = Instance.new("TextButton")
  76. local AreaDivider = Instance.new("TextLabel")
  77. local AllHealthLabel = Instance.new("TextLabel")
  78. local AllHealthMinLabel = Instance.new("TextLabel")
  79. local AllHealthMaxLabel = Instance.new("TextLabel")
  80. local AllHealthMin = Instance.new("TextBox")
  81. local AllHealthMax = Instance.new("TextBox")
  82. local EarthHealthLabel = Instance.new("TextLabel")
  83. local EarthHealthMinLabel = Instance.new("TextLabel")
  84. local EarthHealthMaxLabel = Instance.new("TextLabel")
  85. local EarthHealthMin = Instance.new("TextBox")
  86. local EarthHealthMax = Instance.new("TextBox")
  87. local MoonHealthLabel = Instance.new("TextLabel")
  88. local MoonHealthMinLabel = Instance.new("TextLabel")
  89. local MoonHealthMaxLabel = Instance.new("TextLabel")
  90. local MoonHealthMin = Instance.new("TextBox")
  91. local MoonHealthMax = Instance.new("TextBox")
  92.  
  93. --game.Workspace["__THINGS"].Barriers:ClearAllChildren()
  94.  
  95. function hint(txt, t)
  96.         if t then
  97.                 local h = Instance.new("Hint",game.Players.LocalPlayer.PlayerGui)
  98.                 h.Text = txt
  99.                 wait(t)
  100.                 h:remove()
  101.         else
  102.                 local h = Instance.new("Hint",game.Players.LocalPlayer.PlayerGui)
  103.                 h.Text = txt
  104.                 wait(5)
  105.                 h:remove()
  106.         end
  107. end
  108.  
  109. MainGUI.Name = "MainGUI"
  110. MainGUI.Parent = game.CoreGui
  111. local MainCORE = game.CoreGui["MainGUI"]
  112.  
  113. TopFrame.Name = "TopFrame"
  114. TopFrame.Parent = MainGUI
  115. TopFrame.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5)
  116. TopFrame.BackgroundTransparency = 0
  117. TopFrame.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  118. TopFrame.Active = true
  119. TopFrame.Selectable = true
  120. TopFrame.Draggable = true
  121. TopFrame.Visible = true
  122. TopFrame.Position = UDim2.new(1, -145, 0.5, -100)
  123. TopFrame.Size = UDim2.new(0, 140, 0, 30)
  124.  
  125. PSHeader.Name = "PSHeader"
  126. PSHeader.Parent = TopFrame
  127. PSHeader.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5)
  128. PSHeader.BackgroundTransparency = 1
  129. PSHeader.BorderSizePixel = 0
  130. PSHeader.BorderColor3 = Color3.new(0, 0, 0)
  131. PSHeader.Position = UDim2.new(0, 5, 0, 5)
  132. PSHeader.Size = UDim2.new(0, 105, 0, 20)
  133. PSHeader.Font = Enum.Font.Fantasy
  134. PSHeader.Text = "Pet Simulator"
  135. PSHeader.TextColor3 = Color3.new(0, 0, 0)
  136. PSHeader.TextScaled = true
  137. PSHeader.TextSize = 17
  138.  
  139. ClosePS.Name = "ClosePS"
  140. ClosePS.Parent = TopFrame
  141. ClosePS.BackgroundColor3 = Color3.new(0.4, 0.4, 0.4)
  142. ClosePS.BorderColor3 = Color3.new(0, 0, 0)
  143. ClosePS.Position = UDim2.new(0, 115, 0, 5)
  144. ClosePS.Size = UDim2.new(0, 20, 0, 20)
  145. ClosePS.Font = Enum.Font.Fantasy
  146. ClosePS.Text = "X"
  147. ClosePS.TextColor3 = Color3.new(1, 0, 0)
  148. ClosePS.TextScaled = true
  149. ClosePS.TextSize = 17
  150.  
  151. MainFrame.Name = "MainFrame"
  152. MainFrame.Parent = TopFrame
  153. MainFrame.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5)
  154. MainFrame.BackgroundTransparency = 0
  155. MainFrame.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  156. MainFrame.Position = UDim2.new(0, 0, 0, 30)
  157. MainFrame.Size = UDim2.new(0, 140, 0, 408)
  158. MainFrame.Visible = true
  159.  
  160. Stats.Name = "Stats"
  161. Stats.Parent = MainFrame
  162. Stats.BackgroundColor3 = Color3.new(0, 0, 0)
  163. Stats.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  164. Stats.Position = UDim2.new(0, 5, 0, 5)
  165. Stats.Size = UDim2.new(0, 75, 0, 25)
  166. Stats.Font = Enum.Font.Fantasy
  167. Stats.TextColor3 = Color3.new(1, 1, 1)
  168. Stats.Text = "PETSTATS"
  169. Stats.TextSize = 17
  170. Stats.TextWrapped = true
  171.  
  172. FarmCoins.Name = "FarmCoins"
  173. FarmCoins.Parent = MainFrame
  174. FarmCoins.BackgroundColor3 = Color3.new(0, 0, 0)
  175. FarmCoins.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  176. FarmCoins.Position = UDim2.new(0, 85, 0, 5)
  177. FarmCoins.Size = UDim2.new(0, 50, 0, 25)
  178. FarmCoins.Font = Enum.Font.Fantasy
  179. FarmCoins.TextColor3 = Color3.new(1, 1, 1)
  180. FarmCoins.Text = "FARM"
  181. FarmCoins.TextSize = 17
  182. FarmCoins.TextWrapped = true
  183.  
  184. WalkSpeed.Name = "WalkSpeed"
  185. WalkSpeed.Parent = MainFrame
  186. WalkSpeed.BackgroundColor3 = Color3.new(0, 0, 0)
  187. WalkSpeed.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  188. WalkSpeed.Position = UDim2.new(0, 5, 0, 40)
  189. WalkSpeed.Size = UDim2.new(0, 60, 0, 25)
  190. WalkSpeed.Font = Enum.Font.Fantasy
  191. WalkSpeed.TextColor3 = Color3.new(1, 1, 1)
  192. WalkSpeed.Text = "Walk:1"
  193. WalkSpeed.TextSize = 17
  194. WalkSpeed.TextWrapped = true
  195.  
  196. JumpPower.Name = "JumpPower"
  197. JumpPower.Parent = MainFrame
  198. JumpPower.BackgroundColor3 = Color3.new(0, 0, 0)
  199. JumpPower.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  200. JumpPower.Position = UDim2.new(0, 75, 0, 40)
  201. JumpPower.Size = UDim2.new(0, 60, 0, 25)
  202. JumpPower.Font = Enum.Font.Fantasy
  203. JumpPower.TextColor3 = Color3.new(1, 1, 1)
  204. JumpPower.Text = "Jump:1"
  205. JumpPower.TextSize = 17
  206. JumpPower.TextWrapped = true
  207.  
  208. Spawn.Name = "Spawn"
  209. Spawn.Parent = MainFrame
  210. Spawn.BackgroundColor3 = Color3.new(0, 0, 0)
  211. Spawn.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  212. Spawn.Position = UDim2.new(0, 5, 0, 75)
  213. Spawn.Size = UDim2.new(0, 130, 0, 20)
  214. Spawn.Font = Enum.Font.Fantasy
  215. Spawn.TextColor3 = Color3.new(1, 1, 1)
  216. Spawn.Text = "Spawn Area"
  217. Spawn.TextSize = 17
  218. Spawn.TextWrapped = true
  219.  
  220. Shop.Name = "Shop"
  221. Shop.Parent = MainFrame
  222. Shop.BackgroundColor3 = Color3.new(0, 0, 0)
  223. Shop.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  224. Shop.Position = UDim2.new(0, 5, 0, 100)
  225. Shop.Size = UDim2.new(0, 130, 0, 20)
  226. Shop.Font = Enum.Font.Fantasy
  227. Shop.TextColor3 = Color3.new(1, 1, 1)
  228. Shop.Text = "Egg Shop"
  229. Shop.TextSize = 17
  230. Shop.TextWrapped = true
  231.  
  232. Area2.Name = "Area2"
  233. Area2.Parent = MainFrame
  234. Area2.BackgroundColor3 = Color3.new(0, 0, 0)
  235. Area2.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  236. Area2.Position = UDim2.new(0, 5, 0, 125)
  237. Area2.Size = UDim2.new(0, 130, 0, 20)
  238. Area2.Font = Enum.Font.Fantasy
  239. Area2.TextColor3 = Color3.new(1, 1, 1)
  240. Area2.Text = "25K Area"
  241. Area2.TextSize = 17
  242. Area2.TextWrapped = true
  243.  
  244. Area3.Name = "Area3"
  245. Area3.Parent = MainFrame
  246. Area3.BackgroundColor3 = Color3.new(0, 0, 0)
  247. Area3.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  248. Area3.Position = UDim2.new(0, 5, 0, 150)
  249. Area3.Size = UDim2.new(0, 130, 0, 20)
  250. Area3.Font = Enum.Font.Fantasy
  251. Area3.TextColor3 = Color3.new(1, 1, 1)
  252. Area3.Text = "400K Area"
  253. Area3.TextSize = 17
  254. Area3.TextWrapped = true
  255.  
  256. Area4.Name = "Area4"
  257. Area4.Parent = MainFrame
  258. Area4.BackgroundColor3 = Color3.new(0, 0, 0)
  259. Area4.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  260. Area4.Position = UDim2.new(0, 5, 0, 175)
  261. Area4.Size = UDim2.new(0, 130, 0, 20)
  262. Area4.Font = Enum.Font.Fantasy
  263. Area4.TextColor3 = Color3.new(1, 1, 1)
  264. Area4.Text = "2.5M Area"
  265. Area4.TextSize = 17
  266. Area4.TextWrapped = true
  267.  
  268. Area5.Name = "Area5"
  269. Area5.Parent = MainFrame
  270. Area5.BackgroundColor3 = Color3.new(0, 0, 0)
  271. Area5.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  272. Area5.Position = UDim2.new(0, 5, 0, 200)
  273. Area5.Size = UDim2.new(0, 130, 0, 20)
  274. Area5.Font = Enum.Font.Fantasy
  275. Area5.TextColor3 = Color3.new(1, 1, 1)
  276. Area5.Text = "20M Area"
  277. Area5.TextSize = 17
  278. Area5.TextWrapped = true
  279.  
  280. Area6.Name = "Area6"
  281. Area6.Parent = MainFrame
  282. Area6.BackgroundColor3 = Color3.new(0, 0, 0)
  283. Area6.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  284. Area6.Position = UDim2.new(0, 5, 0, 225)
  285. Area6.Size = UDim2.new(0, 130, 0, 20)
  286. Area6.Font = Enum.Font.Fantasy
  287. Area6.TextColor3 = Color3.new(1, 1, 1)
  288. Area6.Text = "500M Area"
  289. Area6.TextSize = 17
  290. Area6.TextWrapped = true
  291.  
  292. Rocket.Name = "Rocket"
  293. Rocket.Parent = MainFrame
  294. Rocket.BackgroundColor3 = Color3.new(0, 0, 0)
  295. Rocket.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  296. Rocket.Position = UDim2.new(0, 5, 0, 250)
  297. Rocket.Size = UDim2.new(0, 130, 0, 20)
  298. Rocket.Font = Enum.Font.Fantasy
  299. Rocket.TextColor3 = Color3.new(1, 1, 1)
  300. Rocket.Text = "Rocket Area"
  301. Rocket.TextSize = 17
  302. Rocket.TextWrapped = true
  303.  
  304. AreaDivider.Name = "AreaDivider"
  305. AreaDivider.Parent = MainFrame
  306. AreaDivider.BackgroundColor3 = Color3.new(0, 0, 0)
  307. AreaDivider.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  308. AreaDivider.Position = UDim2.new(0, 0, 0, 275)
  309. AreaDivider.Size = UDim2.new(0, 140, 0, 3)
  310. AreaDivider.Font = Enum.Font.Fantasy
  311. AreaDivider.Text = ""
  312. AreaDivider.TextSize = 17
  313.  
  314. Area9.Name = "Area9"
  315. Area9.Parent = MainFrame
  316. Area9.BackgroundColor3 = Color3.new(0, 0, 0)
  317. Area9.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  318. Area9.Position = UDim2.new(0, 5, 0, 283)
  319. Area9.Size = UDim2.new(0, 130, 0, 20)
  320. Area9.Font = Enum.Font.Fantasy
  321. Area9.TextColor3 = Color3.new(1, 1, 1)
  322. Area9.Text = "Moon Spawn Point"
  323. Area9.TextSize = 17
  324. Area9.TextWrapped = true
  325.  
  326. Area8.Name = "Area8"
  327. Area8.Parent = MainFrame
  328. Area8.BackgroundColor3 = Color3.new(0, 0, 0)
  329. Area8.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  330. Area8.Position = UDim2.new(0, 5, 0, 308)
  331. Area8.Size = UDim2.new(0, 130, 0, 20)
  332. Area8.Font = Enum.Font.Fantasy
  333. Area8.TextColor3 = Color3.new(1, 1, 1)
  334. Area8.Text = "Moon Egg Shop"
  335. Area8.TextSize = 17
  336. Area8.TextWrapped = true
  337.  
  338. Area10.Name = "Area10"
  339. Area10.Parent = MainFrame
  340. Area10.BackgroundColor3 = Color3.new(0, 0, 0)
  341. Area10.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  342. Area10.Position = UDim2.new(0, 5, 0, 333)
  343. Area10.Size = UDim2.new(0, 130, 0, 20)
  344. Area10.Font = Enum.Font.Fantasy
  345. Area10.TextColor3 = Color3.new(1, 1, 1)
  346. Area10.Text = "Moon Area 2"
  347. Area10.TextSize = 17
  348. Area10.TextWrapped = true
  349.  
  350. CandyLand.Name = "CandyLand"
  351. CandyLand.Parent = MainFrame
  352. CandyLand.BackgroundColor3 = Color3.new(0, 0, 0)
  353. CandyLand.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  354. CandyLand.Position = UDim2.new(0, 5, 0, 358)
  355. CandyLand.Size = UDim2.new(0, 130, 0, 20)
  356. CandyLand.Font = Enum.Font.Fantasy
  357. CandyLand.TextColor3 = Color3.new(1, 1, 1)
  358. CandyLand.Text = "Candy Land"
  359. CandyLand.TextSize = 17
  360. CandyLand.TextWrapped = true
  361.  
  362. CyborgLand.Name = "CyborgLand"
  363. CyborgLand.Parent = MainFrame
  364. CyborgLand.BackgroundColor3 = Color3.new(0, 0, 0)
  365. CyborgLand.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  366. CyborgLand.Position = UDim2.new(0, 5, 0, 383)
  367. CyborgLand.Size = UDim2.new(0, 130, 0, 20)
  368. CyborgLand.Font = Enum.Font.Fantasy
  369. CyborgLand.TextColor3 = Color3.new(1, 1, 1)
  370. CyborgLand.Text = "Cyborg Land"
  371. CyborgLand.TextSize = 17
  372. CyborgLand.TextWrapped = true
  373.  
  374. StatsFrame.Name = "StatsFrame"
  375. StatsFrame.Parent = TopFrame
  376. StatsFrame.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5)
  377. StatsFrame.BackgroundTransparency = 0
  378. StatsFrame.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  379. StatsFrame.Position = UDim2.new(0, 0, 0, 30)
  380. StatsFrame.Size = UDim2.new(0, 140, 0, 275)
  381. StatsFrame.Visible = false
  382.  
  383. Locations.Name = "Locations"
  384. Locations.Parent = StatsFrame
  385. Locations.BackgroundColor3 = Color3.new(0, 0, 0)
  386. Locations.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  387. Locations.Position = UDim2.new(0, 5, 0, 5)
  388. Locations.Size = UDim2.new(0, 130, 0, 25)
  389. Locations.Font = Enum.Font.Fantasy
  390. Locations.TextColor3 = Color3.new(1, 1, 1)
  391. Locations.Text = "LOCATIONS"
  392. Locations.TextSize = 17
  393. Locations.TextWrapped = true
  394.  
  395. PetCode.Name = "PetCode"
  396. PetCode.Parent = StatsFrame
  397. PetCode.BackgroundColor3 = Color3.new(0, 0, 0)
  398. PetCode.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  399. PetCode.Position = UDim2.new(0, 5, 0, 50)
  400. PetCode.Size = UDim2.new(0, 130, 0, 40)
  401. PetCode.Font = Enum.Font.Fantasy
  402. PetCode.TextColor3 = Color3.new(1, 1, 1)
  403. PetCode.Text = "1.Show Active Pets Codes"
  404. PetCode.TextSize = 17
  405. PetCode.TextWrapped = true
  406.  
  407. CodeInfoFrame.Name = "CodeInfoFrame"
  408. CodeInfoFrame.Parent = MainGUI
  409. CodeInfoFrame.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5)
  410. CodeInfoFrame.BackgroundTransparency = 0
  411. CodeInfoFrame.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  412. CodeInfoFrame.Position = UDim2.new(0.5, -150, 0.5, -100)
  413. CodeInfoFrame.Size = UDim2.new(0, 250, 0, 150)
  414. CodeInfoFrame.Visible = false
  415.  
  416. CodeInfo1.Name = "CodeInfo1"
  417. CodeInfo1.Parent = CodeInfoFrame
  418. CodeInfo1.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  419. CodeInfo1.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  420. CodeInfo1.Position = UDim2.new(0, 0, 0, 0)
  421. CodeInfo1.Size = UDim2.new(0, 300, 0, 200)
  422. CodeInfo1.Font = Enum.Font.Fantasy
  423. CodeInfo1.TextColor3 = Color3.new(1, 1, 1)
  424. CodeInfo1.Text = "PRESS F9 (DEV CONSOLE) TO VIEW ALL THE ACTIVE PETS CODES. WARNING, YOU CAN ONLY MAX COIN OR AGILITY, THE OTHER STAT WILL BE RESET SO BEST USED ONLY FOR NEW PETS OR SOME STATS WILL BE RESET!!"
  425. CodeInfo1.TextSize = 20
  426. CodeInfo1.TextScaled = true
  427. CodeInfo1.TextWrapped = true
  428.  
  429. SelectPet.Name = "SelectPet"
  430. SelectPet.Parent = StatsFrame
  431. SelectPet.BackgroundColor3 = Color3.new(0, 0, 0)
  432. SelectPet.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  433. SelectPet.Position = UDim2.new(0, 5, 0, 100)
  434. SelectPet.Size = UDim2.new(0, 130, 0, 25)
  435. SelectPet.Font = Enum.Font.Fantasy
  436. SelectPet.TextColor3 = Color3.new(1, 1, 1)
  437. SelectPet.Text = "2.Select Active Pet"
  438. SelectPet.TextSize = 17
  439.  
  440. SelectPetInput.Name = "SelectPetInput"
  441. SelectPetInput.Parent = StatsFrame
  442. SelectPetInput.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  443. SelectPetInput.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  444. SelectPetInput.Position = UDim2.new(0, 5, 0, 125)
  445. SelectPetInput.Size = UDim2.new(0, 130, 0, 25)
  446. SelectPetInput.Font = Enum.Font.Fantasy
  447. SelectPetInput.TextColor3 = Color3.new(1, 1, 1)
  448. SelectPetInput.Text = "Type Pet Code"
  449. SelectPetInput.TextSize = 17
  450.  
  451. MaxCoins.Name = "MaxCoins"
  452. MaxCoins.Parent = StatsFrame
  453. MaxCoins.BackgroundColor3 = Color3.new(0, 0, 0)
  454. MaxCoins.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  455. MaxCoins.Position = UDim2.new(0, 5, 0, 160)
  456. MaxCoins.Size = UDim2.new(0, 130, 0, 25)
  457. MaxCoins.Font = Enum.Font.Fantasy
  458. MaxCoins.TextColor3 = Color3.new(1, 1, 1)
  459. MaxCoins.Text = "3.Max Coins Stats"
  460. MaxCoins.TextSize = 17
  461.  
  462. MaxC1.Name = "MaxC1"
  463. MaxC1.Parent = StatsFrame
  464. MaxC1.BackgroundColor3 = Color3.new(0.3, 0, 0)
  465. MaxC1.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  466. MaxC1.Position = UDim2.new(0, 5, 0, 185)
  467. MaxC1.Size = UDim2.new(0, 43, 0, 25)
  468. MaxC1.Font = Enum.Font.Fantasy
  469. MaxC1.TextColor3 = Color3.new(1, 1, 1)
  470. MaxC1.Text = "C1"
  471. MaxC1.TextSize = 17
  472.  
  473. MaxC2.Name = "MaxC2"
  474. MaxC2.Parent = StatsFrame
  475. MaxC2.BackgroundColor3 = Color3.new(0.3, 0, 0)
  476. MaxC2.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  477. MaxC2.Position = UDim2.new(0, 48, 0, 185)
  478. MaxC2.Size = UDim2.new(0, 44, 0, 25)
  479. MaxC2.Font = Enum.Font.Fantasy
  480. MaxC2.TextColor3 = Color3.new(1, 1, 1)
  481. MaxC2.Text = "C2"
  482. MaxC2.TextSize = 17
  483.  
  484. MaxC3.Name = "MaxC3"
  485. MaxC3.Parent = StatsFrame
  486. MaxC3.BackgroundColor3 = Color3.new(0.3, 0, 0)
  487. MaxC3.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  488. MaxC3.Position = UDim2.new(0, 92, 0, 185)
  489. MaxC3.Size = UDim2.new(0, 43, 0, 25)
  490. MaxC3.Font = Enum.Font.Fantasy
  491. MaxC3.TextColor3 = Color3.new(1, 1, 1)
  492. MaxC3.Text = "C3"
  493. MaxC3.TextSize = 17
  494.  
  495. MaxAgility.Name = "MaxAgility"
  496. MaxAgility.Parent = StatsFrame
  497. MaxAgility.BackgroundColor3 = Color3.new(0, 0, 0)
  498. MaxAgility.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  499. MaxAgility.Position = UDim2.new(0, 5, 0, 220)
  500. MaxAgility.Size = UDim2.new(0, 130, 0, 25)
  501. MaxAgility.Font = Enum.Font.Fantasy
  502. MaxAgility.TextColor3 = Color3.new(1, 1, 1)
  503. MaxAgility.Text = "4.Max Agility Stats"
  504. MaxAgility.TextSize = 17
  505.  
  506. MaxA1.Name = "MaxA1"
  507. MaxA1.Parent = StatsFrame
  508. MaxA1.BackgroundColor3 = Color3.new(0.3, 0, 0)
  509. MaxA1.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  510. MaxA1.Position = UDim2.new(0, 5, 0, 245)
  511. MaxA1.Size = UDim2.new(0, 43, 0, 25)
  512. MaxA1.Font = Enum.Font.Fantasy
  513. MaxA1.TextColor3 = Color3.new(1, 1, 1)
  514. MaxA1.Text = "A1"
  515. MaxA1.TextSize = 17
  516.  
  517. MaxA2.Name = "MaxA2"
  518. MaxA2.Parent = StatsFrame
  519. MaxA2.BackgroundColor3 = Color3.new(0.3, 0, 0)
  520. MaxA2.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  521. MaxA2.Position = UDim2.new(0, 48, 0, 245)
  522. MaxA2.Size = UDim2.new(0, 44, 0, 25)
  523. MaxA2.Font = Enum.Font.Fantasy
  524. MaxA2.TextColor3 = Color3.new(1, 1, 1)
  525. MaxA2.Text = "A2"
  526. MaxA2.TextSize = 17
  527.  
  528. MaxA3.Name = "MaxA3"
  529. MaxA3.Parent = StatsFrame
  530. MaxA3.BackgroundColor3 = Color3.new(0.3, 0, 0)
  531. MaxA3.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  532. MaxA3.Position = UDim2.new(0, 92, 0, 245)
  533. MaxA3.Size = UDim2.new(0, 43, 0, 25)
  534. MaxA3.Font = Enum.Font.Fantasy
  535. MaxA3.TextColor3 = Color3.new(1, 1, 1)
  536. MaxA3.Text = "A3"
  537. MaxA3.TextSize = 17
  538.  
  539. FarmFrame.Name = "FarmFrame"
  540. FarmFrame.Parent = TopFrame
  541. FarmFrame.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5)
  542. FarmFrame.BackgroundTransparency = 0
  543. FarmFrame.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  544. FarmFrame.Position = UDim2.new(0, 0, 0, 30)
  545. FarmFrame.Size = UDim2.new(0, 140, 0, 351)
  546. FarmFrame.Visible = false
  547.  
  548. Locations2.Name = "Locations2"
  549. Locations2.Parent = FarmFrame
  550. Locations2.BackgroundColor3 = Color3.new(0, 0, 0)
  551. Locations2.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  552. Locations2.Position = UDim2.new(0, 5, 0, 5)
  553. Locations2.Size = UDim2.new(0, 130, 0, 25)
  554. Locations2.Font = Enum.Font.Fantasy
  555. Locations2.TextColor3 = Color3.new(1, 1, 1)
  556. Locations2.Text = "LOCATIONS"
  557. Locations2.TextSize = 17
  558. Locations2.TextWrapped = true
  559.  
  560. AllHealthLabel.Name = "AllHealthLabel"
  561. AllHealthLabel.Parent = FarmFrame
  562. AllHealthLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  563. AllHealthLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  564. AllHealthLabel.Position = UDim2.new(0, 5, 0, 50)
  565. AllHealthLabel.Size = UDim2.new(0, 130, 0, 20)
  566. AllHealthLabel.Font = Enum.Font.Fantasy
  567. AllHealthLabel.TextColor3 = Color3.new(1, 1, 1)
  568. AllHealthLabel.Text = "Coin/Chest Health"
  569. AllHealthLabel.TextSize = 17
  570. AllHealthLabel.TextWrapped = true
  571.  
  572. AllHealthMinLabel.Name = "AllHealthMinLabel"
  573. AllHealthMinLabel.Parent = FarmFrame
  574. AllHealthMinLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  575. AllHealthMinLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  576. AllHealthMinLabel.Position = UDim2.new(0, 5, 0, 71)
  577. AllHealthMinLabel.Size = UDim2.new(0, 40, 0, 20)
  578. AllHealthMinLabel.Font = Enum.Font.Fantasy
  579. AllHealthMinLabel.TextColor3 = Color3.new(1, 1, 1)
  580. AllHealthMinLabel.Text = "Min"
  581. AllHealthMinLabel.TextSize = 17
  582. AllHealthMinLabel.TextWrapped = true
  583.  
  584. AllHealthMin.Name = "AllHealthMin"
  585. AllHealthMin.Parent = FarmFrame
  586. AllHealthMin.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  587. AllHealthMin.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  588. AllHealthMin.Position = UDim2.new(0, 46, 0, 71)
  589. AllHealthMin.Size = UDim2.new(0, 89, 0, 20)
  590. AllHealthMin.Font = Enum.Font.Fantasy
  591. AllHealthMin.TextColor3 = Color3.new(1, 1, 1)
  592. AllHealthMin.Text = "1"
  593. AllHealthMin.TextSize = 17
  594. AllHealthMin.TextWrapped = true
  595.  
  596. AllHealthMaxLabel.Name = "AllHealthMaxLabel"
  597. AllHealthMaxLabel.Parent = FarmFrame
  598. AllHealthMaxLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  599. AllHealthMaxLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  600. AllHealthMaxLabel.Position = UDim2.new(0, 5, 0, 92)
  601. AllHealthMaxLabel.Size = UDim2.new(0, 40, 0, 20)
  602. AllHealthMaxLabel.Font = Enum.Font.Fantasy
  603. AllHealthMaxLabel.TextColor3 = Color3.new(1, 1, 1)
  604. AllHealthMaxLabel.Text = "Max"
  605. AllHealthMaxLabel.TextSize = 17
  606. AllHealthMaxLabel.TextWrapped = true
  607.  
  608. AllHealthMax.Name = "AllHealthMax"
  609. AllHealthMax.Parent = FarmFrame
  610. AllHealthMax.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  611. AllHealthMax.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  612. AllHealthMax.Position = UDim2.new(0, 46, 0, 92)
  613. AllHealthMax.Size = UDim2.new(0, 89, 0, 20)
  614. AllHealthMax.Font = Enum.Font.Fantasy
  615. AllHealthMax.TextColor3 = Color3.new(1, 1, 1)
  616. AllHealthMax.Text = "10e6"
  617. AllHealthMax.TextSize = 17
  618. AllHealthMax.TextWrapped = true
  619.  
  620. StartFarming.Name = "StartFarming"
  621. StartFarming.Parent = FarmFrame
  622. StartFarming.BackgroundColor3 = Color3.new(0.3, 0, 0)
  623. StartFarming.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  624. StartFarming.Position = UDim2.new(0, 5, 0, 117)
  625. StartFarming.Size = UDim2.new(0, 130, 0, 25)
  626. StartFarming.Font = Enum.Font.Fantasy
  627. StartFarming.TextColor3 = Color3.new(1, 1, 1)
  628. StartFarming.Text = "Mine ALL: OFF"
  629. StartFarming.TextSize = 17
  630. StartFarming.TextWrapped = true
  631.  
  632. EarthHealthLabel.Name = "EarthHealthLabel"
  633. EarthHealthLabel.Parent = FarmFrame
  634. EarthHealthLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  635. EarthHealthLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  636. EarthHealthLabel.Position = UDim2.new(0, 5, 0, 152)
  637. EarthHealthLabel.Size = UDim2.new(0, 130, 0, 20)
  638. EarthHealthLabel.Font = Enum.Font.Fantasy
  639. EarthHealthLabel.TextColor3 = Color3.new(1, 1, 1)
  640. EarthHealthLabel.Text = "Coin/Chest Health"
  641. EarthHealthLabel.TextSize = 17
  642. EarthHealthLabel.TextWrapped = true
  643.  
  644. EarthHealthMinLabel.Name = "EarthHealthMinLabel"
  645. EarthHealthMinLabel.Parent = FarmFrame
  646. EarthHealthMinLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  647. EarthHealthMinLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  648. EarthHealthMinLabel.Position = UDim2.new(0, 5, 0, 173)
  649. EarthHealthMinLabel.Size = UDim2.new(0, 40, 0, 20)
  650. EarthHealthMinLabel.Font = Enum.Font.Fantasy
  651. EarthHealthMinLabel.TextColor3 = Color3.new(1, 1, 1)
  652. EarthHealthMinLabel.Text = "Min"
  653. EarthHealthMinLabel.TextSize = 17
  654. EarthHealthMinLabel.TextWrapped = true
  655.  
  656. EarthHealthMin.Name = "EarthHealthMin"
  657. EarthHealthMin.Parent = FarmFrame
  658. EarthHealthMin.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  659. EarthHealthMin.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  660. EarthHealthMin.Position = UDim2.new(0, 46, 0, 173)
  661. EarthHealthMin.Size = UDim2.new(0, 89, 0, 20)
  662. EarthHealthMin.Font = Enum.Font.Fantasy
  663. EarthHealthMin.TextColor3 = Color3.new(1, 1, 1)
  664. EarthHealthMin.Text = "1"
  665. EarthHealthMin.TextSize = 17
  666. EarthHealthMin.TextWrapped = true
  667.  
  668. EarthHealthMaxLabel.Name = "EarthHealthMaxLabel"
  669. EarthHealthMaxLabel.Parent = FarmFrame
  670. EarthHealthMaxLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  671. EarthHealthMaxLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  672. EarthHealthMaxLabel.Position = UDim2.new(0, 5, 0, 194)
  673. EarthHealthMaxLabel.Size = UDim2.new(0, 40, 0, 20)
  674. EarthHealthMaxLabel.Font = Enum.Font.Fantasy
  675. EarthHealthMaxLabel.TextColor3 = Color3.new(1, 1, 1)
  676. EarthHealthMaxLabel.Text = "Max"
  677. EarthHealthMaxLabel.TextSize = 17
  678. EarthHealthMaxLabel.TextWrapped = true
  679.  
  680. EarthHealthMax.Name = "EarthHealthMax"
  681. EarthHealthMax.Parent = FarmFrame
  682. EarthHealthMax.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  683. EarthHealthMax.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  684. EarthHealthMax.Position = UDim2.new(0, 46, 0, 194)
  685. EarthHealthMax.Size = UDim2.new(0, 89, 0, 20)
  686. EarthHealthMax.Font = Enum.Font.Fantasy
  687. EarthHealthMax.TextColor3 = Color3.new(1, 1, 1)
  688. EarthHealthMax.Text = "20e06"
  689. EarthHealthMax.TextSize = 17
  690. EarthHealthMax.TextWrapped = true
  691.  
  692. StartFarmingEarth.Name = "StartFarmingEarth"
  693. StartFarmingEarth.Parent = FarmFrame
  694. StartFarmingEarth.BackgroundColor3 = Color3.new(0.3, 0, 0)
  695. StartFarmingEarth.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  696. StartFarmingEarth.Position = UDim2.new(0, 5, 0, 219)
  697. StartFarmingEarth.Size = UDim2.new(0, 130, 0, 25)
  698. StartFarmingEarth.Font = Enum.Font.Fantasy
  699. StartFarmingEarth.TextColor3 = Color3.new(1, 1, 1)
  700. StartFarmingEarth.Text = "Mine Earth: OFF"
  701. StartFarmingEarth.TextSize = 17
  702. StartFarmingEarth.TextWrapped = true
  703.  
  704. MoonHealthLabel.Name = "MoonHealthLabel"
  705. MoonHealthLabel.Parent = FarmFrame
  706. MoonHealthLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  707. MoonHealthLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  708. MoonHealthLabel.Position = UDim2.new(0, 5, 0, 254)
  709. MoonHealthLabel.Size = UDim2.new(0, 130, 0, 20)
  710. MoonHealthLabel.Font = Enum.Font.Fantasy
  711. MoonHealthLabel.TextColor3 = Color3.new(1, 1, 1)
  712. MoonHealthLabel.Text = "Coin/Chest Health"
  713. MoonHealthLabel.TextSize = 17
  714. MoonHealthLabel.TextWrapped = true
  715.  
  716. MoonHealthMinLabel.Name = "MoonHealthMinLabel"
  717. MoonHealthMinLabel.Parent = FarmFrame
  718. MoonHealthMinLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  719. MoonHealthMinLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  720. MoonHealthMinLabel.Position = UDim2.new(0, 5, 0, 275)
  721. MoonHealthMinLabel.Size = UDim2.new(0, 40, 0, 20)
  722. MoonHealthMinLabel.Font = Enum.Font.Fantasy
  723. MoonHealthMinLabel.TextColor3 = Color3.new(1, 1, 1)
  724. MoonHealthMinLabel.Text = "Min"
  725. MoonHealthMinLabel.TextSize = 17
  726. MoonHealthMinLabel.TextWrapped = true
  727.  
  728. MoonHealthMin.Name = "MoonHealthMin"
  729. MoonHealthMin.Parent = FarmFrame
  730. MoonHealthMin.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  731. MoonHealthMin.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  732. MoonHealthMin.Position = UDim2.new(0, 46, 0, 275)
  733. MoonHealthMin.Size = UDim2.new(0, 89, 0, 20)
  734. MoonHealthMin.Font = Enum.Font.Fantasy
  735. MoonHealthMin.TextColor3 = Color3.new(1, 1, 1)
  736. MoonHealthMin.Text = "10e04"
  737. MoonHealthMin.TextSize = 17
  738. MoonHealthMin.TextWrapped = true
  739.  
  740. MoonHealthMaxLabel.Name = "MoonHealthMaxLabel"
  741. MoonHealthMaxLabel.Parent = FarmFrame
  742. MoonHealthMaxLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  743. MoonHealthMaxLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  744. MoonHealthMaxLabel.Position = UDim2.new(0, 5, 0, 296)
  745. MoonHealthMaxLabel.Size = UDim2.new(0, 40, 0, 20)
  746. MoonHealthMaxLabel.Font = Enum.Font.Fantasy
  747. MoonHealthMaxLabel.TextColor3 = Color3.new(1, 1, 1)
  748. MoonHealthMaxLabel.Text = "Max"
  749. MoonHealthMaxLabel.TextSize = 17
  750. MoonHealthMaxLabel.TextWrapped = true
  751.  
  752. MoonHealthMax.Name = "MoonHealthMax"
  753. MoonHealthMax.Parent = FarmFrame
  754. MoonHealthMax.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  755. MoonHealthMax.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  756. MoonHealthMax.Position = UDim2.new(0, 46, 0, 296)
  757. MoonHealthMax.Size = UDim2.new(0, 89, 0, 20)
  758. MoonHealthMax.Font = Enum.Font.Fantasy
  759. MoonHealthMax.TextColor3 = Color3.new(1, 1, 1)
  760. MoonHealthMax.Text = "60e06"
  761. MoonHealthMax.TextSize = 17
  762. MoonHealthMax.TextWrapped = true
  763.  
  764. StartFarmingMoon.Name = "StartFarmingMoon"
  765. StartFarmingMoon.Parent = FarmFrame
  766. StartFarmingMoon.BackgroundColor3 = Color3.new(0.3, 0, 0)
  767. StartFarmingMoon.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  768. StartFarmingMoon.Position = UDim2.new(0, 5, 0, 321)
  769. StartFarmingMoon.Size = UDim2.new(0, 130, 0, 25)
  770. StartFarmingMoon.Font = Enum.Font.Fantasy
  771. StartFarmingMoon.TextColor3 = Color3.new(1, 1, 1)
  772. StartFarmingMoon.Text = "Mine Moon: OFF"
  773. StartFarmingMoon.TextSize = 17
  774. StartFarmingMoon.TextWrapped = true
  775.  
  776. -- Close GUI --
  777. ClosePS.MouseButton1Down:connect(function()
  778.         MainGUI:destroy()
  779. end)
  780.  
  781. Stats.MouseButton1Click:connect(function()
  782.         MainFrame.Visible = false
  783.         StatsFrame.Visible = true
  784. end)
  785.  
  786. Locations.MouseButton1Click:connect(function()
  787.         MainFrame.Visible = true
  788.         StatsFrame.Visible = false
  789. end)
  790.  
  791. FarmCoins.MouseButton1Click:connect(function()
  792.         MainFrame.Visible = false
  793.         FarmFrame.Visible = true
  794. end)
  795.  
  796. Locations2.MouseButton1Click:connect(function()
  797.         MainFrame.Visible = true
  798.         FarmFrame.Visible = false
  799. end)
  800.  
  801. -- Notify --
  802. function notify(msg)
  803.         game.StarterGui:SetCore('SendNotification', {
  804.                 Title = 'Pets Simulator';
  805.                 Text = msg;
  806.                 Duration = 5;
  807.         })
  808. end
  809.  
  810. spawn(function()
  811.         while true do
  812.                 if showstartmessage then
  813.                         hint("-Don't use Moon teleports until you are on the Moon. Use Rocket to reach Moon-", 7)
  814.                         hint("-If teleporting back to Earth locations use Rocket to reach Earth first-", 7)
  815.                         hint("-If you don't do this your pets will get stuck-", 5)
  816.                         showstartmessage = false
  817.                 end
  818.                 wait(0.5)
  819.         end
  820. end)
  821.  
  822. -- Farm --
  823.  
  824. StartFarming.MouseButton1Click:connect(function()
  825.         if not FarmStart then
  826.                 FarmArea = "all"
  827.                 FarmCoins.BackgroundColor3 = Color3.new(0, 0.3, 0)
  828.                 StartFarming.BackgroundColor3 = Color3.new(0, 0.3, 0)
  829.                 StartFarming.Text = "Mine ALL: ON"
  830.                 coins = game.Workspace:WaitForChild("__REMOTES"):WaitForChild("Coins")
  831.                 save = game.Workspace:WaitForChild("__REMOTES"):WaitForChild("Get Other Stats"):InvokeServer()
  832.                 plr = game:GetService("Players").LocalPlayer
  833.                 petids = {}
  834.                 petAP = {}
  835.                 pets = game:GetService("Workspace")["__REMOTES"].Pets
  836.                 a = #save[plr.Name]["Save"]["Pets"]
  837.                 done = "no"
  838.                 p()
  839.                 FarmStart = true
  840.         else
  841.                 FarmStart = false
  842.                 FarmArea = "none"
  843.                 FarmCoins.BackgroundColor3 = Color3.new(0, 0, 0)
  844.                 StartFarming.BackgroundColor3 = Color3.new(0.3, 0, 0)
  845.                 StartFarming.Text = "Mine ALL: OFF"
  846.         end
  847. end)
  848.  
  849. StartFarmingEarth.MouseButton1Click:connect(function()
  850.         if not FarmStart then
  851.                 FarmArea = "earth"
  852.                 FarmCoins.BackgroundColor3 = Color3.new(0, 0.3, 0)
  853.                 StartFarmingEarth.BackgroundColor3 = Color3.new(0, 0.3, 0)
  854.                 StartFarmingEarth.Text = "Mine Earth: ON"
  855.                 coins = game.Workspace:WaitForChild("__REMOTES"):WaitForChild("Coins")
  856.                 save = game.Workspace:WaitForChild("__REMOTES"):WaitForChild("Get Other Stats"):InvokeServer()
  857.                 plr = game:GetService("Players").LocalPlayer
  858.                 petids = {}
  859.                 petAP = {}
  860.                 pets = game:GetService("Workspace")["__REMOTES"].Pets
  861.                 a = #save[plr.Name]["Save"]["Pets"]
  862.                 done = "no"
  863.                 p()
  864.                 FarmStart = true
  865.         else
  866.                 FarmStart = false
  867.                 FarmArea = "none"
  868.                 FarmCoins.BackgroundColor3 = Color3.new(0, 0, 0)
  869.                 StartFarmingEarth.BackgroundColor3 = Color3.new(0.3, 0, 0)
  870.                 StartFarmingEarth.Text = "Mine Earth: OFF"
  871.         end
  872. end)
  873.  
  874. StartFarmingMoon.MouseButton1Click:connect(function()
  875.         if not FarmStart then
  876.                 FarmArea = "moon"
  877.                 FarmCoins.BackgroundColor3 = Color3.new(0, 0.3, 0)
  878.                 StartFarmingMoon.BackgroundColor3 = Color3.new(0, 0.3, 0)
  879.                 StartFarmingMoon.Text = "Mine Moon: ON"
  880.                 coins = game.Workspace:WaitForChild("__REMOTES"):WaitForChild("Coins")
  881.                 save = game.Workspace:WaitForChild("__REMOTES"):WaitForChild("Get Other Stats"):InvokeServer()
  882.                 plr = game:GetService("Players").LocalPlayer
  883.                 petids = {}
  884.                 petAP = {}
  885.                 pets = game:GetService("Workspace")["__REMOTES"].Pets
  886.                 a = #save[plr.Name]["Save"]["Pets"]
  887.                 done = "no"
  888.                 p()
  889.                 FarmStart = true
  890.         else
  891.                 FarmStart = false
  892.                 FarmArea = "none"
  893.                 FarmCoins.BackgroundColor3 = Color3.new(0, 0, 0)
  894.                 StartFarmingMoon.BackgroundColor3 = Color3.new(0.3, 0, 0)
  895.                 StartFarmingMoon.Text = "Mine Moon: OFF"
  896.         end
  897. end)
  898.  
  899. function mine(b)
  900.     while FarmStart and (b:FindFirstChild"Health" ~= nil) and (b:FindFirstChild"Health".Value > 0)  do
  901.                 wait(0.1)
  902.                 for _,k in pairs(petids) do
  903.                         if not FarmStart then break end
  904.                         coins:FireServer("Mine",b.Name, petAP[k], k)
  905.                 end
  906.         end
  907. end
  908.  
  909. spawn(function()
  910.         while true do
  911.                 while FarmStart do
  912.                         for _,b in next, workspace.__THINGS.Coins:GetChildren() do
  913.                                 if (done ~= b) then
  914.                                         if (FarmArea == "all") then
  915.                                                 if workspace.__THINGS.Coins:FindFirstChild(b.Name) then
  916.                                                         if b.Health.Value > tonumber(AllHealthMin.Text) and b.Health.Value < tonumber(AllHealthMax.Text) then
  917.                                                                 mine(b)
  918.                                                         end
  919.                                                 end
  920.                                         elseif (FarmArea == "earth") then
  921.                                                 if workspace.__THINGS.Coins:FindFirstChild(b.Name) then
  922.                                                         if b.Position.Y < 100 then
  923.                                                                 if b.Health.Value > tonumber(EarthHealthMin.Text) and b.Health.Value < tonumber(EarthHealthMax.Text) then
  924.                                                                         mine(b)
  925.                                                                 end
  926.                                                         end
  927.                                                 end
  928.                                         elseif (FarmArea == "moon") then
  929.                                                 if workspace.__THINGS.Coins:FindFirstChild(b.Name) then
  930.                                                         if b.Position.Y > 100 then
  931.                                                                 if b.Health.Value > tonumber(MoonHealthMin.Text) and b.Health.Value < tonumber(MoonHealthMax.Text) then
  932.                                                                         mine(b)
  933.                                                                 end
  934.                                                         end
  935.                                                 end
  936.                                         else
  937.                                         end
  938.                                 end
  939.                         end
  940.                         wait()
  941.                 end
  942.                 wait()
  943.         end
  944. end)
  945.  
  946. WalkSpeed.MouseButton1Click:connect(function()
  947.         if WalkNumber == "1" then
  948.                 WalkSpeed.BackgroundColor3 = Color3.new(0, 0, 0.5)
  949.                 WalkSpeed.Text = "Walk:2"
  950.                 WalkNumber = "2"
  951.                 Walk = 30
  952.         elseif WalkNumber == "2" then
  953.                 WalkSpeed.BackgroundColor3 = Color3.new(0.5, 0, 0)
  954.                 WalkSpeed.Text = "Walk:3"
  955.                 WalkNumber = "3"
  956.                 Walk = 80
  957.         elseif WalkNumber == "3" then
  958.                 WalkSpeed.BackgroundColor3 = Color3.new(0, 0, 0)
  959.                 WalkSpeed.Text = "Walk:1"
  960.                 WalkNumber = "1"
  961.                 Walk = 16
  962.         else
  963.                 WalkSpeed.BackgroundColor3 = Color3.new(0, 0, 0)
  964.                 WalkSpeed.Text = "Walk:1"
  965.                 WalkNumber = "1"
  966.                 Walk = 16
  967.         end
  968.         player = game.Players.LocalPlayer
  969.         player.Character.Humanoid.WalkSpeed = Walk
  970. end)
  971.  
  972. JumpPower.MouseButton1Click:connect(function()
  973.         if JumpNumber == "1" then
  974.                 JumpPower.BackgroundColor3 = Color3.new(0, 0, 0.5)
  975.                 JumpPower.Text = "Jump:2"
  976.                 JumpNumber = "2"
  977.                 Jump = 150
  978.         elseif JumpNumber == "2" then
  979.                 JumpPower.BackgroundColor3 = Color3.new(0.5, 0, 0)
  980.                 JumpPower.Text = "Jump:3"
  981.                 JumpNumber = "3"
  982.                 Jump = 400
  983.         elseif JumpNumber == "3" then
  984.                 JumpPower.BackgroundColor3 = Color3.new(0, 0, 0)
  985.                 JumpPower.Text = "Jump:1"
  986.                 JumpNumber = "1"
  987.                 Jump = 50
  988.         else
  989.                 JumpPower.BackgroundColor3 = Color3.new(0, 0, 0)
  990.                 JumpPower.Text = "Jump:1"
  991.                 JumpNumber = "1"
  992.                 Jump = 50
  993.         end
  994.         player = game.Players.LocalPlayer
  995.         player.Character.Humanoid.JumpPower = Jump
  996. end)
  997.  
  998. -- Display pet number in dev console --
  999. PetCode.MouseButton1Click:connect(function()
  1000.         local children = workspace["__DEBRIS"].Pets[game.Players.LocalPlayer.Name]:GetChildren()
  1001.         for i = 1, #children do
  1002.                 print("Active Pet " ..tostring(i).. ": " ..children[i].Name)
  1003.         end
  1004.         print("\nWARNING, YOU CAN ONLY MAX COIN OR AGILITY, THE OTHER STAT WILL BE\nRESET SO BEST USED ONLY FOR NEW PETS OR SOME STATS WILL BE RESET!")
  1005.         CodeInfoFrame.Visible = true
  1006.         wait(15)
  1007.         CodeInfoFrame.Visible = false
  1008. end)
  1009.  
  1010. -- Max Pets Stats --
  1011. MaxC1.MouseButton1Click:connect(function()
  1012.         local A_1 = "Upgrade"
  1013.         local A_2 = tonumber(SelectPetInput.Text)
  1014.         local A_3 = "a1"
  1015.         local A_4 = "-9e100"
  1016.         local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1017.         Event:FireServer(A_1, A_2, A_3, A_4)
  1018.         wait()
  1019.         local A_1 = "Upgrade"
  1020.         local A_2 = tonumber(SelectPetInput.Text)
  1021.         local A_3 = "c1"
  1022.         local A_4 = "9e100"
  1023.         local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1024.         Event:FireServer(A_1, A_2, A_3, A_4)
  1025.         wait()
  1026.         local A_1 = "Upgrade"
  1027.         local A_2 = tonumber(SelectPetInput.Text)
  1028.         local A_3 = "a1"
  1029.         local A_4 = "9e100"
  1030.         local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1031.         Event:FireServer(A_1, A_2, A_3, A_4)
  1032. end)
  1033.  
  1034. MaxA1.MouseButton1Click:connect(function()
  1035.         local A_1 = "Upgrade"
  1036.         local A_2 = tonumber(SelectPetInput.Text)
  1037.         local A_3 = "c1"
  1038.         local A_4 = "-9e100"
  1039.         local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1040.         Event:FireServer(A_1, A_2, A_3, A_4)
  1041.         wait()
  1042.         local A_1 = "Upgrade"
  1043.         local A_2 = tonumber(SelectPetInput.Text)
  1044.         local A_3 = "a1"
  1045.         local A_4 = "9e100"
  1046.         local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1047.         Event:FireServer(A_1, A_2, A_3, A_4)
  1048.         wait()
  1049.         local A_1 = "Upgrade"
  1050.         local A_2 = tonumber(SelectPetInput.Text)
  1051.         local A_3 = "c1"
  1052.         local A_4 = "9e100"
  1053.         local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1054.         Event:FireServer(A_1, A_2, A_3, A_4)
  1055. end)
  1056.  
  1057. MaxC2.MouseButton1Click:connect(function()
  1058.         local A_1 = "Upgrade"
  1059.         local A_2 = tonumber(SelectPetInput.Text)
  1060.         local A_3 = "a2"
  1061.         local A_4 = "-9e100"
  1062.         local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1063.         Event:FireServer(A_1, A_2, A_3, A_4)
  1064.         wait()
  1065.         local A_1 = "Upgrade"
  1066.         local A_2 = tonumber(SelectPetInput.Text)
  1067.         local A_3 = "c2"
  1068.         local A_4 = "9e100"
  1069.         local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1070.         Event:FireServer(A_1, A_2, A_3, A_4)
  1071.         wait()
  1072.         local A_1 = "Upgrade"
  1073.         local A_2 = tonumber(SelectPetInput.Text)
  1074.         local A_3 = "a2"
  1075.         local A_4 = "9e100"
  1076.         local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1077.         Event:FireServer(A_1, A_2, A_3, A_4)
  1078. end)
  1079.  
  1080. MaxA2.MouseButton1Click:connect(function()
  1081.         local A_1 = "Upgrade"
  1082.         local A_2 = tonumber(SelectPetInput.Text)
  1083.         local A_3 = "c2"
  1084.         local A_4 = "-9e100"
  1085.         local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1086.         Event:FireServer(A_1, A_2, A_3, A_4)
  1087.         wait()
  1088.         local A_1 = "Upgrade"
  1089.         local A_2 = tonumber(SelectPetInput.Text)
  1090.         local A_3 = "a2"
  1091.         local A_4 = "9e100"
  1092.         local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1093.         Event:FireServer(A_1, A_2, A_3, A_4)
  1094.         wait()
  1095.         local A_1 = "Upgrade"
  1096.         local A_2 = tonumber(SelectPetInput.Text)
  1097.         local A_3 = "c2"
  1098.         local A_4 = "9e100"
  1099.         local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1100.         Event:FireServer(A_1, A_2, A_3, A_4)
  1101. end)
  1102.  
  1103. MaxC3.MouseButton1Click:connect(function()
  1104.         local A_1 = "Upgrade"
  1105.         local A_2 = tonumber(SelectPetInput.Text)
  1106.         local A_3 = "a3"
  1107.         local A_4 = "-9e100"
  1108.         local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1109.         Event:FireServer(A_1, A_2, A_3, A_4)
  1110.         wait()
  1111.         local A_1 = "Upgrade"
  1112.         local A_2 = tonumber(SelectPetInput.Text)
  1113.         local A_3 = "c3"
  1114.         local A_4 = "9e100"
  1115.         local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1116.         Event:FireServer(A_1, A_2, A_3, A_4)
  1117.         wait()
  1118.         local A_1 = "Upgrade"
  1119.         local A_2 = tonumber(SelectPetInput.Text)
  1120.         local A_3 = "a3"
  1121.         local A_4 = "9e100"
  1122.         local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1123.         Event:FireServer(A_1, A_2, A_3, A_4)
  1124. end)
  1125.  
  1126. MaxA3.MouseButton1Click:connect(function()
  1127.         local A_1 = "Upgrade"
  1128.         local A_2 = tonumber(SelectPetInput.Text)
  1129.         local A_3 = "c3"
  1130.         local A_4 = "-9e100"
  1131.         local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1132.         Event:FireServer(A_1, A_2, A_3, A_4)
  1133.         wait()
  1134.         local A_1 = "Upgrade"
  1135.         local A_2 = tonumber(SelectPetInput.Text)
  1136.         local A_3 = "a3"
  1137.         local A_4 = "9e100"
  1138.         local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1139.         Event:FireServer(A_1, A_2, A_3, A_4)
  1140.         wait()
  1141.         local A_1 = "Upgrade"
  1142.         local A_2 = tonumber(SelectPetInput.Text)
  1143.         local A_3 = "c3"
  1144.         local A_4 = "9e100"
  1145.         local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1146.         Event:FireServer(A_1, A_2, A_3, A_4)
  1147. end)
  1148.  
  1149. -- TP to locations --
  1150. Spawn.MouseButton1Click:connect(function()
  1151.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(526, -36.292, 909)
  1152.         notify'Teleported to the Spawn Location'
  1153. end)
  1154.  
  1155. Shop.MouseButton1Click:connect(function()
  1156.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(647.35, -33.6, 890.23)
  1157.         notify'Teleported to the Shop'
  1158. end)
  1159.  
  1160. Area2.MouseButton1Click:connect(function()
  1161.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(13, -37, 885)
  1162.         notify'Teleported to the 25K Coins Area'
  1163. end)
  1164.  
  1165. Area3.MouseButton1Click:connect(function()
  1166.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-364, -37, 885)
  1167.         notify'Teleported to the 400K Coins Area'
  1168. end)
  1169.  
  1170. Area4.MouseButton1Click:connect(function()
  1171.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-760, -37, 885)
  1172.         notify'Teleported to the 2.5M Coins Area'
  1173. end)
  1174.  
  1175. Area5.MouseButton1Click:connect(function()
  1176.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1160, -37, 885)
  1177.         notify'Teleported to the 20M Coins Area'
  1178. end)
  1179.  
  1180. Area6.MouseButton1Click:connect(function()
  1181.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1500, -37, 885)
  1182.         notify'Teleported to the 500M Coins Area'
  1183. end)
  1184.  
  1185. Rocket.MouseButton1Click:connect(function()
  1186.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1828, -37, 897)
  1187.         notify'Teleported to the Rocket Area'
  1188. end)
  1189.  
  1190. Area8.MouseButton1Click:connect(function()
  1191.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(616, 146, -1720)
  1192.         notify'Teleported to the Moon Shop'
  1193. end)
  1194.  
  1195. Area9.MouseButton1Click:connect(function()
  1196.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(527, 145, -1762)
  1197.         notify'Teleported to the Moon Area 1'
  1198. end)
  1199.  
  1200. Area10.MouseButton1Click:connect(function()
  1201.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(124.8, 145, -1718)
  1202.         notify'Teleported to the Moon Area 2'
  1203. end)
  1204.  
  1205. CandyLand.MouseButton1Click:connect(function()
  1206.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(13.7, 145, -1449.8)
  1207.         notify'Teleported to Candy Land'
  1208. end)
  1209.  
  1210. CyborgLand.MouseButton1Click:connect(function()
  1211.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-283.5, 145, -1704.4)
  1212.         notify'Teleported to the Cyborg Area'
  1213. end)