Advertisement
Guest User

Untitled

a guest
Oct 20th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 50.44 KB | None | 0 0
  1. -- Updated 15th Oct 2018 --
  2.  
  3. -- Anti Idle
  4. local VirtualUser=game:service'VirtualUser'
  5. game:service'Players'.LocalPlayer.Idled:connect(function()
  6. VirtualUser:CaptureController()
  7. VirtualUser:ClickButton2(Vector2.new())
  8. end)
  9.  
  10. FarmStart = false
  11. FarmArea = "none"
  12. showstartmessage = true
  13. WalkNumber = "1"
  14. JumpNumber = "1"
  15.  
  16. local plr = game:GetService("Players").LocalPlayer
  17. local coins = game.Workspace:WaitForChild("__REMOTES"):WaitForChild("Coins")
  18. local save = game.Workspace:WaitForChild("__REMOTES"):WaitForChild("Get Other Stats"):InvokeServer()
  19. local pets = game:GetService("Workspace")["__REMOTES"].Pets
  20. local a = #save[plr.Name]["Save"]["Pets"]
  21. local petids = {}
  22. local petAP = {}
  23. local done = "no"
  24.  
  25. function p()
  26. for i=1,a do
  27. if(save[plr.Name]["Save"]["Pets"][a].e == true) then
  28. table.insert(petids, save[plr.Name]["Save"]["Pets"][a].id)
  29. petAP[save[plr.Name]["Save"]["Pets"][a].id] = tonumber(save[plr.Name]["Save"]["Pets"][a].ba) * 4
  30. print("Active Pet, Id:" ..save[plr.Name]["Save"]["Pets"][a].id.. " Damage:" ..tonumber(save[plr.Name]["Save"]["Pets"][a].ba) * 4)
  31. end
  32. a = a - 1
  33. end
  34. end
  35. p()
  36.  
  37. local MainGUI = Instance.new("ScreenGui")
  38. local TopFrame = Instance.new("Frame")
  39. local PSHeader = Instance.new("TextLabel")
  40. local ClosePS = Instance.new("TextButton")
  41. local StatsFrame = Instance.new("Frame")
  42. local FarmCoins = Instance.new("TextButton")
  43. local FarmFrame = Instance.new("Frame")
  44. local PowerTextInfo1 = Instance.new("TextLabel")
  45. local PowerText1 = Instance.new("TextLabel")
  46. local FarmPower = Instance.new("TextBox")
  47. local StartFarming = Instance.new("TextButton")
  48. local StartFarmingEarth = Instance.new("TextButton")
  49. local StartFarmingMoon = Instance.new("TextButton")
  50. local WalkSpeed = Instance.new("TextButton")
  51. local JumpPower = Instance.new("TextButton")
  52. local BuyScreen = Instance.new("TextButton")
  53. local BuyScreenFrame = Instance.new("Frame")
  54. local BuyPetTitle1 = Instance.new("TextLabel")
  55. local BuyPetTitle2 = Instance.new("TextLabel")
  56. local BuyPetTitle3 = Instance.new("TextLabel")
  57. local BuyPetAmount1 = Instance.new("TextLabel")
  58. local BuyPetAmount2 = Instance.new("TextBox")
  59. local BuyPetAmount3 = Instance.new("TextBox")
  60. local BuyPetTier1 = Instance.new("TextLabel")
  61. local BuyPetTier2 = Instance.new("TextBox")
  62. local BuyPetGo = Instance.new("TextButton")
  63. local BuyHatTitle1 = Instance.new("TextLabel")
  64. local BuyHatTitle2 = Instance.new("TextLabel")
  65. local BuyHatAmount1 = Instance.new("TextLabel")
  66. local BuyHatAmount2 = Instance.new("TextBox")
  67. local BuyHatTier1 = Instance.new("TextLabel")
  68. local BuyHatTier2 = Instance.new("TextBox")
  69. local BuyHatGo = Instance.new("TextButton")
  70. local Locations = Instance.new("TextButton")
  71. local Locations2 = Instance.new("TextButton")
  72. local PetCode = Instance.new("TextButton")
  73. local CodeInfoFrame = Instance.new("Frame")
  74. local CodeInfo1 = Instance.new("TextLabel")
  75. local SelectPet = Instance.new("TextLabel")
  76. local SelectPetInput = Instance.new("TextBox")
  77. local MaxCoins = Instance.new("TextLabel")
  78. local MaxC1 = Instance.new("TextButton")
  79. local MaxC2 = Instance.new("TextButton")
  80. local MaxC3 = Instance.new("TextButton")
  81. local MaxAgility = Instance.new("TextLabel")
  82. local MaxA1 = Instance.new("TextButton")
  83. local MaxA2 = Instance.new("TextButton")
  84. local MaxA3 = Instance.new("TextButton")
  85. local MainFrame = Instance.new("Frame")
  86. local Stats = Instance.new("TextButton")
  87. local Spawn = Instance.new("TextButton")
  88. local Shop = Instance.new("TextButton")
  89. local Area2 = Instance.new("TextButton")
  90. local Area3 = Instance.new("TextButton")
  91. local Area4 = Instance.new("TextButton")
  92. local Area5 = Instance.new("TextButton")
  93. local Area6 = Instance.new("TextButton")
  94. local Area7 = Instance.new("TextButton")
  95. local Area8 = Instance.new("TextButton")
  96. local Area9 = Instance.new("TextButton")
  97. local Area10 = Instance.new("TextButton")
  98. local Area11 = Instance.new("TextButton")
  99. local Area12 = Instance.new("TextButton")
  100. local Rocket = Instance.new("TextButton")
  101. local CandyLand = Instance.new("TextButton")
  102. local CyborgLand = Instance.new("TextButton")
  103. local AreaDivider = Instance.new("TextLabel")
  104. local AllHealthLabel = Instance.new("TextLabel")
  105. local AllHealthMinLabel = Instance.new("TextLabel")
  106. local AllHealthMaxLabel = Instance.new("TextLabel")
  107. local AllHealthMin = Instance.new("TextBox")
  108. local AllHealthMax = Instance.new("TextBox")
  109. local EarthHealthLabel = Instance.new("TextLabel")
  110. local EarthHealthMinLabel = Instance.new("TextLabel")
  111. local EarthHealthMaxLabel = Instance.new("TextLabel")
  112. local EarthHealthMin = Instance.new("TextBox")
  113. local EarthHealthMax = Instance.new("TextBox")
  114. local MoonHealthLabel = Instance.new("TextLabel")
  115. local MoonHealthMinLabel = Instance.new("TextLabel")
  116. local MoonHealthMaxLabel = Instance.new("TextLabel")
  117. local MoonHealthMin = Instance.new("TextBox")
  118. local MoonHealthMax = Instance.new("TextBox")
  119. local TeleportScreen = Instance.new("TextButton")
  120.  
  121. --game.Workspace["__THINGS"].Barriers:ClearAllChildren()
  122.  
  123. function hint(txt, t)
  124. if t then
  125. local h = Instance.new("Hint",game.Players.LocalPlayer.PlayerGui)
  126. h.Text = txt
  127. wait(t)
  128. h:remove()
  129. else
  130. local h = Instance.new("Hint",game.Players.LocalPlayer.PlayerGui)
  131. h.Text = txt
  132. wait(5)
  133. h:remove()
  134. end
  135. end
  136.  
  137. MainGUI.Name = "MainGUI"
  138. MainGUI.Parent = game.CoreGui
  139. local MainCORE = game.CoreGui["MainGUI"]
  140.  
  141. TopFrame.Name = "TopFrame"
  142. TopFrame.Parent = MainGUI
  143. TopFrame.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5)
  144. TopFrame.BackgroundTransparency = 0
  145. TopFrame.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  146. TopFrame.Active = true
  147. TopFrame.Selectable = true
  148. TopFrame.Draggable = true
  149. TopFrame.Visible = true
  150. TopFrame.Position = UDim2.new(1, -145, 0.5, -100)
  151. TopFrame.Size = UDim2.new(0, 140, 0, 30)
  152.  
  153. PSHeader.Name = "PSHeader"
  154. PSHeader.Parent = TopFrame
  155. PSHeader.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5)
  156. PSHeader.BackgroundTransparency = 1
  157. PSHeader.BorderSizePixel = 0
  158. PSHeader.BorderColor3 = Color3.new(0, 0, 0)
  159. PSHeader.Position = UDim2.new(0, 5, 0, 5)
  160. PSHeader.Size = UDim2.new(0, 105, 0, 20)
  161. PSHeader.Font = Enum.Font.Fantasy
  162. PSHeader.Text = "Pet Simulator By Mise05 and llogq"
  163. PSHeader.TextColor3 = Color3.new(0, 0, 0)
  164. PSHeader.TextScaled = true
  165. PSHeader.TextSize = 17
  166.  
  167. ClosePS.Name = "ClosePS"
  168. ClosePS.Parent = TopFrame
  169. ClosePS.BackgroundColor3 = Color3.new(0.4, 0.4, 0.4)
  170. ClosePS.BorderColor3 = Color3.new(0, 0, 0)
  171. ClosePS.Position = UDim2.new(0, 115, 0, 5)
  172. ClosePS.Size = UDim2.new(0, 20, 0, 20)
  173. ClosePS.Font = Enum.Font.Fantasy
  174. ClosePS.Text = "X"
  175. ClosePS.TextColor3 = Color3.new(1, 0, 0)
  176. ClosePS.TextScaled = true
  177. ClosePS.TextSize = 17
  178.  
  179. MainFrame.Name = "MainFrame"
  180. MainFrame.Parent = TopFrame
  181. MainFrame.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5)
  182. MainFrame.BackgroundTransparency = 0
  183. MainFrame.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  184. MainFrame.Position = UDim2.new(0, 0, 0, 30)
  185. MainFrame.Size = UDim2.new(0, 140, 0, 433)
  186. MainFrame.Visible = true
  187.  
  188. BuyScreen.Name = "BuyScreen"
  189. BuyScreen.Parent = MainFrame
  190. BuyScreen.BackgroundColor3 = Color3.new(0, 0, 0)
  191. BuyScreen.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  192. BuyScreen.Position = UDim2.new(0, 5, 0, 5)
  193. BuyScreen.Size = UDim2.new(0, 60, 0, 25)
  194. BuyScreen.Font = Enum.Font.Fantasy
  195. BuyScreen.TextColor3 = Color3.new(1, 1, 1)
  196. BuyScreen.Text = "SHOP"
  197. BuyScreen.TextSize = 17
  198. BuyScreen.TextWrapped = true
  199.  
  200. FarmCoins.Name = "FarmCoins"
  201. FarmCoins.Parent = MainFrame
  202. FarmCoins.BackgroundColor3 = Color3.new(0, 0, 0)
  203. FarmCoins.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  204. FarmCoins.Position = UDim2.new(0, 75, 0, 5)
  205. FarmCoins.Size = UDim2.new(0, 60, 0, 25)
  206. FarmCoins.Font = Enum.Font.Fantasy
  207. FarmCoins.TextColor3 = Color3.new(1, 1, 1)
  208. FarmCoins.Text = "FARM"
  209. FarmCoins.TextSize = 17
  210. FarmCoins.TextWrapped = true
  211.  
  212. WalkSpeed.Name = "WalkSpeed"
  213. WalkSpeed.Parent = MainFrame
  214. WalkSpeed.BackgroundColor3 = Color3.new(0, 0, 0)
  215. WalkSpeed.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  216. WalkSpeed.Position = UDim2.new(0, 5, 0, 40)
  217. WalkSpeed.Size = UDim2.new(0, 60, 0, 25)
  218. WalkSpeed.Font = Enum.Font.Fantasy
  219. WalkSpeed.TextColor3 = Color3.new(1, 1, 1)
  220. WalkSpeed.Text = "Walk:1"
  221. WalkSpeed.TextSize = 17
  222. WalkSpeed.TextWrapped = true
  223.  
  224. JumpPower.Name = "JumpPower"
  225. JumpPower.Parent = MainFrame
  226. JumpPower.BackgroundColor3 = Color3.new(0, 0, 0)
  227. JumpPower.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  228. JumpPower.Position = UDim2.new(0, 75, 0, 40)
  229. JumpPower.Size = UDim2.new(0, 60, 0, 25)
  230. JumpPower.Font = Enum.Font.Fantasy
  231. JumpPower.TextColor3 = Color3.new(1, 1, 1)
  232. JumpPower.Text = "Jump:1"
  233. JumpPower.TextSize = 17
  234. JumpPower.TextWrapped = true
  235.  
  236. TeleportScreen.Name = "TeleportScreen"
  237. TeleportScreen.Parent = MainFrame
  238. TeleportScreen.BackgroundColor3 = Color3.new(0, 0, 0)
  239. TeleportScreen.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  240. TeleportScreen.Position = UDim2.new(0, 5, 0, 75)
  241. TeleportScreen.Size = UDim2.new(0, 130, 0, 20)
  242. TeleportScreen.Font = Enum.Font.Fantasy
  243. TeleportScreen.TextColor3 = Color3.new(1, 1, 1)
  244. TeleportScreen.Text = "GAME TELEPORT"
  245. TeleportScreen.TextSize = 17
  246. TeleportScreen.TextWrapped = true
  247.  
  248. Spawn.Name = "Spawn"
  249. Spawn.Parent = MainFrame
  250. Spawn.BackgroundColor3 = Color3.new(0, 0, 0)
  251. Spawn.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  252. Spawn.Position = UDim2.new(0, 5, 0, 100)
  253. Spawn.Size = UDim2.new(0, 130, 0, 20)
  254. Spawn.Font = Enum.Font.Fantasy
  255. Spawn.TextColor3 = Color3.new(1, 1, 1)
  256. Spawn.Text = "Spawn Area"
  257. Spawn.TextSize = 17
  258. Spawn.TextWrapped = true
  259.  
  260. Shop.Name = "Shop"
  261. Shop.Parent = MainFrame
  262. Shop.BackgroundColor3 = Color3.new(0, 0, 0)
  263. Shop.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  264. Shop.Position = UDim2.new(0, 5, 0, 125)
  265. Shop.Size = UDim2.new(0, 130, 0, 20)
  266. Shop.Font = Enum.Font.Fantasy
  267. Shop.TextColor3 = Color3.new(1, 1, 1)
  268. Shop.Text = "Egg Shop"
  269. Shop.TextSize = 17
  270. Shop.TextWrapped = true
  271.  
  272. Area2.Name = "Area2"
  273. Area2.Parent = MainFrame
  274. Area2.BackgroundColor3 = Color3.new(0, 0, 0)
  275. Area2.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  276. Area2.Position = UDim2.new(0, 5, 0, 150)
  277. Area2.Size = UDim2.new(0, 130, 0, 20)
  278. Area2.Font = Enum.Font.Fantasy
  279. Area2.TextColor3 = Color3.new(1, 1, 1)
  280. Area2.Text = "25K Area"
  281. Area2.TextSize = 17
  282. Area2.TextWrapped = true
  283.  
  284. Area3.Name = "Area3"
  285. Area3.Parent = MainFrame
  286. Area3.BackgroundColor3 = Color3.new(0, 0, 0)
  287. Area3.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  288. Area3.Position = UDim2.new(0, 5, 0, 175)
  289. Area3.Size = UDim2.new(0, 130, 0, 20)
  290. Area3.Font = Enum.Font.Fantasy
  291. Area3.TextColor3 = Color3.new(1, 1, 1)
  292. Area3.Text = "400K Area"
  293. Area3.TextSize = 17
  294. Area3.TextWrapped = true
  295.  
  296. Area4.Name = "Area4"
  297. Area4.Parent = MainFrame
  298. Area4.BackgroundColor3 = Color3.new(0, 0, 0)
  299. Area4.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  300. Area4.Position = UDim2.new(0, 5, 0, 200)
  301. Area4.Size = UDim2.new(0, 130, 0, 20)
  302. Area4.Font = Enum.Font.Fantasy
  303. Area4.TextColor3 = Color3.new(1, 1, 1)
  304. Area4.Text = "2.5M Area"
  305. Area4.TextSize = 17
  306. Area4.TextWrapped = true
  307.  
  308. Area5.Name = "Area5"
  309. Area5.Parent = MainFrame
  310. Area5.BackgroundColor3 = Color3.new(0, 0, 0)
  311. Area5.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  312. Area5.Position = UDim2.new(0, 5, 0, 225)
  313. Area5.Size = UDim2.new(0, 130, 0, 20)
  314. Area5.Font = Enum.Font.Fantasy
  315. Area5.TextColor3 = Color3.new(1, 1, 1)
  316. Area5.Text = "20M Area"
  317. Area5.TextSize = 17
  318. Area5.TextWrapped = true
  319.  
  320. Area6.Name = "Area6"
  321. Area6.Parent = MainFrame
  322. Area6.BackgroundColor3 = Color3.new(0, 0, 0)
  323. Area6.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  324. Area6.Position = UDim2.new(0, 5, 0, 250)
  325. Area6.Size = UDim2.new(0, 130, 0, 20)
  326. Area6.Font = Enum.Font.Fantasy
  327. Area6.TextColor3 = Color3.new(1, 1, 1)
  328. Area6.Text = "500M Area"
  329. Area6.TextSize = 17
  330. Area6.TextWrapped = true
  331.  
  332. Rocket.Name = "Rocket"
  333. Rocket.Parent = MainFrame
  334. Rocket.BackgroundColor3 = Color3.new(0, 0, 0)
  335. Rocket.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  336. Rocket.Position = UDim2.new(0, 5, 0, 275)
  337. Rocket.Size = UDim2.new(0, 130, 0, 20)
  338. Rocket.Font = Enum.Font.Fantasy
  339. Rocket.TextColor3 = Color3.new(1, 1, 1)
  340. Rocket.Text = "Rocket Area"
  341. Rocket.TextSize = 17
  342. Rocket.TextWrapped = true
  343.  
  344. AreaDivider.Name = "AreaDivider"
  345. AreaDivider.Parent = MainFrame
  346. AreaDivider.BackgroundColor3 = Color3.new(0, 0, 0)
  347. AreaDivider.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  348. AreaDivider.Position = UDim2.new(0, 0, 0, 300)
  349. AreaDivider.Size = UDim2.new(0, 140, 0, 3)
  350. AreaDivider.Font = Enum.Font.Fantasy
  351. AreaDivider.Text = ""
  352. AreaDivider.TextSize = 17
  353.  
  354. Area9.Name = "Area9"
  355. Area9.Parent = MainFrame
  356. Area9.BackgroundColor3 = Color3.new(0, 0, 0)
  357. Area9.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  358. Area9.Position = UDim2.new(0, 5, 0, 308)
  359. Area9.Size = UDim2.new(0, 130, 0, 20)
  360. Area9.Font = Enum.Font.Fantasy
  361. Area9.TextColor3 = Color3.new(1, 1, 1)
  362. Area9.Text = "Moon Spawn Point"
  363. Area9.TextSize = 17
  364. Area9.TextWrapped = true
  365.  
  366. Area8.Name = "Area8"
  367. Area8.Parent = MainFrame
  368. Area8.BackgroundColor3 = Color3.new(0, 0, 0)
  369. Area8.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  370. Area8.Position = UDim2.new(0, 5, 0, 333)
  371. Area8.Size = UDim2.new(0, 130, 0, 20)
  372. Area8.Font = Enum.Font.Fantasy
  373. Area8.TextColor3 = Color3.new(1, 1, 1)
  374. Area8.Text = "Moon Egg Shop"
  375. Area8.TextSize = 17
  376. Area8.TextWrapped = true
  377.  
  378. Area10.Name = "Area10"
  379. Area10.Parent = MainFrame
  380. Area10.BackgroundColor3 = Color3.new(0, 0, 0)
  381. Area10.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  382. Area10.Position = UDim2.new(0, 5, 0, 358)
  383. Area10.Size = UDim2.new(0, 130, 0, 20)
  384. Area10.Font = Enum.Font.Fantasy
  385. Area10.TextColor3 = Color3.new(1, 1, 1)
  386. Area10.Text = "Moon Area 2"
  387. Area10.TextSize = 17
  388. Area10.TextWrapped = true
  389.  
  390. CandyLand.Name = "CandyLand"
  391. CandyLand.Parent = MainFrame
  392. CandyLand.BackgroundColor3 = Color3.new(0, 0, 0)
  393. CandyLand.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  394. CandyLand.Position = UDim2.new(0, 5, 0, 383)
  395. CandyLand.Size = UDim2.new(0, 130, 0, 20)
  396. CandyLand.Font = Enum.Font.Fantasy
  397. CandyLand.TextColor3 = Color3.new(1, 1, 1)
  398. CandyLand.Text = "Candy Land"
  399. CandyLand.TextSize = 17
  400. CandyLand.TextWrapped = true
  401.  
  402. CyborgLand.Name = "CyborgLand"
  403. CyborgLand.Parent = MainFrame
  404. CyborgLand.BackgroundColor3 = Color3.new(0, 0, 0)
  405. CyborgLand.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  406. CyborgLand.Position = UDim2.new(0, 5, 0, 408)
  407. CyborgLand.Size = UDim2.new(0, 130, 0, 20)
  408. CyborgLand.Font = Enum.Font.Fantasy
  409. CyborgLand.TextColor3 = Color3.new(1, 1, 1)
  410. CyborgLand.Text = "Cyborg Land"
  411. CyborgLand.TextSize = 17
  412. CyborgLand.TextWrapped = true
  413.  
  414. BuyScreenFrame.Name = "BuyScreenFrame"
  415. BuyScreenFrame.Parent = TopFrame
  416. BuyScreenFrame.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5)
  417. BuyScreenFrame.BackgroundTransparency = 0
  418. BuyScreenFrame.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  419. BuyScreenFrame.Position = UDim2.new(0, 0, 0, 30)
  420. BuyScreenFrame.Size = UDim2.new(0, 140, 0, 350)
  421. BuyScreenFrame.Visible = false
  422.  
  423. Locations.Name = "Locations"
  424. Locations.Parent = BuyScreenFrame
  425. Locations.BackgroundColor3 = Color3.new(0, 0, 0)
  426. Locations.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  427. Locations.Position = UDim2.new(0, 5, 0, 5)
  428. Locations.Size = UDim2.new(0, 130, 0, 25)
  429. Locations.Font = Enum.Font.Fantasy
  430. Locations.TextColor3 = Color3.new(1, 1, 1)
  431. Locations.Text = "LOCATIONS"
  432. Locations.TextSize = 17
  433. Locations.TextWrapped = true
  434.  
  435. BuyPetTitle1.Name = "BuyPetTitle1"
  436. BuyPetTitle1.Parent = BuyScreenFrame
  437. BuyPetTitle1.BackgroundColor3 = Color3.new(0, 0, 0)
  438. BuyPetTitle1.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  439. BuyPetTitle1.Position = UDim2.new(0, 5, 0, 50)
  440. BuyPetTitle1.Size = UDim2.new(0, 130, 0, 55)
  441. BuyPetTitle1.Font = Enum.Font.Fantasy
  442. BuyPetTitle1.TextColor3 = Color3.new(1, 1, 1)
  443. BuyPetTitle1.Text = "You must have the money to buy what you want"
  444. BuyPetTitle1.TextSize = 17
  445. BuyPetTitle1.TextWrapped = true
  446.  
  447. BuyPetTitle2.Name = "BuyPetTitle2"
  448. BuyPetTitle2.Parent = BuyScreenFrame
  449. BuyPetTitle2.BackgroundTransparency = 1
  450. BuyPetTitle2.BorderSizePixel = 0
  451. BuyPetTitle2.Position = UDim2.new(0, 5, 0, 110)
  452. BuyPetTitle2.Size = UDim2.new(0, 130, 0, 20)
  453. BuyPetTitle2.Font = Enum.Font.Fantasy
  454. BuyPetTitle2.TextColor3 = Color3.new(0, 0, 0)
  455. BuyPetTitle2.Text = "BUY PETS"
  456. BuyPetTitle2.TextSize = 17
  457. BuyPetTitle2.TextWrapped = true
  458.  
  459. BuyPetAmount1.Name = "BuyPetAmount1"
  460. BuyPetAmount1.Parent = BuyScreenFrame
  461. BuyPetAmount1.BackgroundColor3 = Color3.new(0, 0, 0)
  462. BuyPetAmount1.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  463. BuyPetAmount1.Position = UDim2.new(0, 6, 0, 129)
  464. BuyPetAmount1.Size = UDim2.new(0, 89, 0, 21)
  465. BuyPetAmount1.Font = Enum.Font.Fantasy
  466. BuyPetAmount1.TextColor3 = Color3.new(1, 1, 1)
  467. BuyPetAmount1.Text = "Quantity"
  468. BuyPetAmount1.TextSize = 17
  469. BuyPetAmount1.TextWrapped = true
  470.  
  471. BuyPetAmount2.Name = "BuyPetAmount2"
  472. BuyPetAmount2.Parent = BuyScreenFrame
  473. BuyPetAmount2.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  474. BuyPetAmount2.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  475. BuyPetAmount2.Position = UDim2.new(0, 95, 0, 130)
  476. BuyPetAmount2.Size = UDim2.new(0, 40, 0, 20)
  477. BuyPetAmount2.Font = Enum.Font.Fantasy
  478. BuyPetAmount2.TextColor3 = Color3.new(1, 1, 1)
  479. BuyPetAmount2.Text = "1"
  480. BuyPetAmount2.TextSize = 17
  481. BuyPetAmount2.TextWrapped = true
  482.  
  483. BuyPetTier1.Name = "BuyPetTier1"
  484. BuyPetTier1.Parent = BuyScreenFrame
  485. BuyPetTier1.BackgroundColor3 = Color3.new(0, 0, 0)
  486. BuyPetTier1.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  487. BuyPetTier1.Position = UDim2.new(0, 6, 0, 150)
  488. BuyPetTier1.Size = UDim2.new(0, 89, 0, 20)
  489. BuyPetTier1.Font = Enum.Font.Fantasy
  490. BuyPetTier1.TextColor3 = Color3.new(1, 1, 1)
  491. BuyPetTier1.Text = "Tier"
  492. BuyPetTier1.TextSize = 17
  493. BuyPetTier1.TextWrapped = true
  494.  
  495. BuyPetTier2.Name = "BuyPetTier2"
  496. BuyPetTier2.Parent = BuyScreenFrame
  497. BuyPetTier2.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  498. BuyPetTier2.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  499. BuyPetTier2.Position = UDim2.new(0, 95, 0, 150)
  500. BuyPetTier2.Size = UDim2.new(0, 40, 0, 20)
  501. BuyPetTier2.Font = Enum.Font.Fantasy
  502. BuyPetTier2.TextColor3 = Color3.new(1, 1, 1)
  503. BuyPetTier2.Text = "16"
  504. BuyPetTier2.TextSize = 17
  505. BuyPetTier2.TextWrapped = true
  506.  
  507. BuyPetGo.Name = "BuyPetGo"
  508. BuyPetGo.Parent = BuyScreenFrame
  509. BuyPetGo.BackgroundColor3 = Color3.new(0.3, 0, 0)
  510. BuyPetGo.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  511. BuyPetGo.Position = UDim2.new(0, 5, 0, 170)
  512. BuyPetGo.Size = UDim2.new(0, 130, 0, 20)
  513. BuyPetGo.Font = Enum.Font.Fantasy
  514. BuyPetGo.TextColor3 = Color3.new(1, 1, 1)
  515. BuyPetGo.Text = "Buy Eggs"
  516. BuyPetGo.TextSize = 17
  517. BuyPetGo.TextWrapped = true
  518.  
  519. BuyPetTitle3.Name = "BuyPetTitle3"
  520. BuyPetTitle3.Parent = BuyScreenFrame
  521. BuyPetTitle3.BackgroundColor3 = Color3.new(0, 0, 0)
  522. BuyPetTitle3.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  523. BuyPetTitle3.Position = UDim2.new(0, 5, 0, 195)
  524. BuyPetTitle3.Size = UDim2.new(0, 130, 0, 20)
  525. BuyPetTitle3.Font = Enum.Font.Fantasy
  526. BuyPetTitle3.TextColor3 = Color3.new(1, 1, 1)
  527. BuyPetTitle3.Text = "In Tier type 1-16"
  528. BuyPetTitle3.TextSize = 17
  529. BuyPetTitle3.TextWrapped = true
  530.  
  531. BuyHatTitle2.Name = "BuyHatTitle2"
  532. BuyHatTitle2.Parent = BuyScreenFrame
  533. BuyHatTitle2.BackgroundTransparency = 1
  534. BuyHatTitle2.BorderSizePixel = 0
  535. BuyHatTitle2.Position = UDim2.new(0, 5, 0, 225)
  536. BuyHatTitle2.Size = UDim2.new(0, 130, 0, 20)
  537. BuyHatTitle2.Font = Enum.Font.Fantasy
  538. BuyHatTitle2.TextColor3 = Color3.new(0, 0, 0)
  539. BuyHatTitle2.Text = "BUY HATS"
  540. BuyHatTitle2.TextSize = 17
  541. BuyHatTitle2.TextWrapped = true
  542.  
  543. BuyHatAmount1.Name = "BuyHatAmount1"
  544. BuyHatAmount1.Parent = BuyScreenFrame
  545. BuyHatAmount1.BackgroundColor3 = Color3.new(0, 0, 0)
  546. BuyHatAmount1.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  547. BuyHatAmount1.Position = UDim2.new(0, 6, 0, 245)
  548. BuyHatAmount1.Size = UDim2.new(0, 89, 0, 20)
  549. BuyHatAmount1.Font = Enum.Font.Fantasy
  550. BuyHatAmount1.TextColor3 = Color3.new(1, 1, 1)
  551. BuyHatAmount1.Text = "Quantity"
  552. BuyHatAmount1.TextSize = 17
  553. BuyHatAmount1.TextWrapped = true
  554.  
  555. BuyHatAmount2.Name = "BuyHatAmount2"
  556. BuyHatAmount2.Parent = BuyScreenFrame
  557. BuyHatAmount2.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  558. BuyHatAmount2.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  559. BuyHatAmount2.Position = UDim2.new(0, 95, 0, 244)
  560. BuyHatAmount2.Size = UDim2.new(0, 40, 0, 21)
  561. BuyHatAmount2.Font = Enum.Font.Fantasy
  562. BuyHatAmount2.TextColor3 = Color3.new(1, 1, 1)
  563. BuyHatAmount2.Text = "1"
  564. BuyHatAmount2.TextSize = 17
  565. BuyHatAmount2.TextWrapped = true
  566.  
  567. BuyHatTier1.Name = "BuyHatTier1"
  568. BuyHatTier1.Parent = BuyScreenFrame
  569. BuyHatTier1.BackgroundColor3 = Color3.new(0, 0, 0)
  570. BuyHatTier1.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  571. BuyHatTier1.Position = UDim2.new(0, 6, 0, 265)
  572. BuyHatTier1.Size = UDim2.new(0, 60, 0, 20)
  573. BuyHatTier1.Font = Enum.Font.Fantasy
  574. BuyHatTier1.TextColor3 = Color3.new(1, 1, 1)
  575. BuyHatTier1.Text = "Tier"
  576. BuyHatTier1.TextSize = 17
  577. BuyHatTier1.TextWrapped = true
  578.  
  579. BuyHatTier2.Name = "BuyHatTier2"
  580. BuyHatTier2.Parent = BuyScreenFrame
  581. BuyHatTier2.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  582. BuyHatTier2.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  583. BuyHatTier2.Position = UDim2.new(0, 66, 0, 265)
  584. BuyHatTier2.Size = UDim2.new(0, 69, 0, 20)
  585. BuyHatTier2.Font = Enum.Font.Fantasy
  586. BuyHatTier2.TextColor3 = Color3.new(1, 1, 1)
  587. BuyHatTier2.Text = "Golden"
  588. BuyHatTier2.TextSize = 17
  589. BuyHatTier2.TextWrapped = true
  590.  
  591. BuyHatGo.Name = "BuyHatGo"
  592. BuyHatGo.Parent = BuyScreenFrame
  593. BuyHatGo.BackgroundColor3 = Color3.new(0.3, 0, 0)
  594. BuyHatGo.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  595. BuyHatGo.Position = UDim2.new(0, 5, 0, 285)
  596. BuyHatGo.Size = UDim2.new(0, 130, 0, 20)
  597. BuyHatGo.Font = Enum.Font.Fantasy
  598. BuyHatGo.TextColor3 = Color3.new(1, 1, 1)
  599. BuyHatGo.Text = "Buy Hats"
  600. BuyHatGo.TextSize = 17
  601. BuyHatGo.TextWrapped = true
  602.  
  603. BuyHatTitle1.Name = "BuyHatTitle1"
  604. BuyHatTitle1.Parent = BuyScreenFrame
  605. BuyHatTitle1.BackgroundColor3 = Color3.new(0, 0, 0)
  606. BuyHatTitle1.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  607. BuyHatTitle1.Position = UDim2.new(0, 5, 0, 310)
  608. BuyHatTitle1.Size = UDim2.new(0, 130, 0, 35)
  609. BuyHatTitle1.Font = Enum.Font.Fantasy
  610. BuyHatTitle1.TextColor3 = Color3.new(1, 1, 1)
  611. BuyHatTitle1.Text = "In Tier type 1-4 or Golden"
  612. BuyHatTitle1.TextSize = 17
  613. BuyHatTitle1.TextWrapped = true
  614.  
  615. StatsFrame.Name = "StatsFrame"
  616. StatsFrame.Parent = TopFrame
  617. StatsFrame.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5)
  618. StatsFrame.BackgroundTransparency = 0
  619. StatsFrame.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  620. StatsFrame.Position = UDim2.new(0, 0, 0, 30)
  621. StatsFrame.Size = UDim2.new(0, 140, 0, 275)
  622. StatsFrame.Visible = false
  623.  
  624. PetCode.Name = "PetCode"
  625. PetCode.Parent = StatsFrame
  626. PetCode.BackgroundColor3 = Color3.new(0, 0, 0)
  627. PetCode.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  628. PetCode.Position = UDim2.new(0, 5, 0, 50)
  629. PetCode.Size = UDim2.new(0, 130, 0, 40)
  630. PetCode.Font = Enum.Font.Fantasy
  631. PetCode.TextColor3 = Color3.new(1, 1, 1)
  632. PetCode.Text = "1.Show Active Pets Codes"
  633. PetCode.TextSize = 17
  634. PetCode.TextWrapped = true
  635.  
  636. CodeInfoFrame.Name = "CodeInfoFrame"
  637. CodeInfoFrame.Parent = MainGUI
  638. CodeInfoFrame.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5)
  639. CodeInfoFrame.BackgroundTransparency = 0
  640. CodeInfoFrame.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  641. CodeInfoFrame.Position = UDim2.new(0.5, -150, 0.5, -100)
  642. CodeInfoFrame.Size = UDim2.new(0, 250, 0, 150)
  643. CodeInfoFrame.Visible = false
  644.  
  645. CodeInfo1.Name = "CodeInfo1"
  646. CodeInfo1.Parent = CodeInfoFrame
  647. CodeInfo1.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  648. CodeInfo1.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  649. CodeInfo1.Position = UDim2.new(0, 0, 0, 0)
  650. CodeInfo1.Size = UDim2.new(0, 300, 0, 200)
  651. CodeInfo1.Font = Enum.Font.Fantasy
  652. CodeInfo1.TextColor3 = Color3.new(1, 1, 1)
  653. 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!!"
  654. CodeInfo1.TextSize = 20
  655. CodeInfo1.TextScaled = true
  656. CodeInfo1.TextWrapped = true
  657.  
  658. SelectPet.Name = "SelectPet"
  659. SelectPet.Parent = StatsFrame
  660. SelectPet.BackgroundColor3 = Color3.new(0, 0, 0)
  661. SelectPet.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  662. SelectPet.Position = UDim2.new(0, 5, 0, 100)
  663. SelectPet.Size = UDim2.new(0, 130, 0, 25)
  664. SelectPet.Font = Enum.Font.Fantasy
  665. SelectPet.TextColor3 = Color3.new(1, 1, 1)
  666. SelectPet.Text = "2.Select Active Pet"
  667. SelectPet.TextSize = 17
  668.  
  669. SelectPetInput.Name = "SelectPetInput"
  670. SelectPetInput.Parent = StatsFrame
  671. SelectPetInput.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  672. SelectPetInput.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  673. SelectPetInput.Position = UDim2.new(0, 5, 0, 125)
  674. SelectPetInput.Size = UDim2.new(0, 130, 0, 25)
  675. SelectPetInput.Font = Enum.Font.Fantasy
  676. SelectPetInput.TextColor3 = Color3.new(1, 1, 1)
  677. SelectPetInput.Text = "Type Pet Code"
  678. SelectPetInput.TextSize = 17
  679.  
  680. MaxCoins.Name = "MaxCoins"
  681. MaxCoins.Parent = StatsFrame
  682. MaxCoins.BackgroundColor3 = Color3.new(0, 0, 0)
  683. MaxCoins.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  684. MaxCoins.Position = UDim2.new(0, 5, 0, 160)
  685. MaxCoins.Size = UDim2.new(0, 130, 0, 25)
  686. MaxCoins.Font = Enum.Font.Fantasy
  687. MaxCoins.TextColor3 = Color3.new(1, 1, 1)
  688. MaxCoins.Text = "3.Max Coins Stats"
  689. MaxCoins.TextSize = 17
  690.  
  691. MaxC1.Name = "MaxC1"
  692. MaxC1.Parent = StatsFrame
  693. MaxC1.BackgroundColor3 = Color3.new(0.3, 0, 0)
  694. MaxC1.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  695. MaxC1.Position = UDim2.new(0, 5, 0, 185)
  696. MaxC1.Size = UDim2.new(0, 43, 0, 25)
  697. MaxC1.Font = Enum.Font.Fantasy
  698. MaxC1.TextColor3 = Color3.new(1, 1, 1)
  699. MaxC1.Text = "C1"
  700. MaxC1.TextSize = 17
  701.  
  702. MaxC2.Name = "MaxC2"
  703. MaxC2.Parent = StatsFrame
  704. MaxC2.BackgroundColor3 = Color3.new(0.3, 0, 0)
  705. MaxC2.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  706. MaxC2.Position = UDim2.new(0, 48, 0, 185)
  707. MaxC2.Size = UDim2.new(0, 44, 0, 25)
  708. MaxC2.Font = Enum.Font.Fantasy
  709. MaxC2.TextColor3 = Color3.new(1, 1, 1)
  710. MaxC2.Text = "C2"
  711. MaxC2.TextSize = 17
  712.  
  713. MaxC3.Name = "MaxC3"
  714. MaxC3.Parent = StatsFrame
  715. MaxC3.BackgroundColor3 = Color3.new(0.3, 0, 0)
  716. MaxC3.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  717. MaxC3.Position = UDim2.new(0, 92, 0, 185)
  718. MaxC3.Size = UDim2.new(0, 43, 0, 25)
  719. MaxC3.Font = Enum.Font.Fantasy
  720. MaxC3.TextColor3 = Color3.new(1, 1, 1)
  721. MaxC3.Text = "C3"
  722. MaxC3.TextSize = 17
  723.  
  724. MaxAgility.Name = "MaxAgility"
  725. MaxAgility.Parent = StatsFrame
  726. MaxAgility.BackgroundColor3 = Color3.new(0, 0, 0)
  727. MaxAgility.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  728. MaxAgility.Position = UDim2.new(0, 5, 0, 220)
  729. MaxAgility.Size = UDim2.new(0, 130, 0, 25)
  730. MaxAgility.Font = Enum.Font.Fantasy
  731. MaxAgility.TextColor3 = Color3.new(1, 1, 1)
  732. MaxAgility.Text = "4.Max Agility Stats"
  733. MaxAgility.TextSize = 17
  734.  
  735. MaxA1.Name = "MaxA1"
  736. MaxA1.Parent = StatsFrame
  737. MaxA1.BackgroundColor3 = Color3.new(0.3, 0, 0)
  738. MaxA1.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  739. MaxA1.Position = UDim2.new(0, 5, 0, 245)
  740. MaxA1.Size = UDim2.new(0, 43, 0, 25)
  741. MaxA1.Font = Enum.Font.Fantasy
  742. MaxA1.TextColor3 = Color3.new(1, 1, 1)
  743. MaxA1.Text = "A1"
  744. MaxA1.TextSize = 17
  745.  
  746. MaxA2.Name = "MaxA2"
  747. MaxA2.Parent = StatsFrame
  748. MaxA2.BackgroundColor3 = Color3.new(0.3, 0, 0)
  749. MaxA2.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  750. MaxA2.Position = UDim2.new(0, 48, 0, 245)
  751. MaxA2.Size = UDim2.new(0, 44, 0, 25)
  752. MaxA2.Font = Enum.Font.Fantasy
  753. MaxA2.TextColor3 = Color3.new(1, 1, 1)
  754. MaxA2.Text = "A2"
  755. MaxA2.TextSize = 17
  756.  
  757. MaxA3.Name = "MaxA3"
  758. MaxA3.Parent = StatsFrame
  759. MaxA3.BackgroundColor3 = Color3.new(0.3, 0, 0)
  760. MaxA3.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  761. MaxA3.Position = UDim2.new(0, 92, 0, 245)
  762. MaxA3.Size = UDim2.new(0, 43, 0, 25)
  763. MaxA3.Font = Enum.Font.Fantasy
  764. MaxA3.TextColor3 = Color3.new(1, 1, 1)
  765. MaxA3.Text = "A3"
  766. MaxA3.TextSize = 17
  767.  
  768. FarmFrame.Name = "FarmFrame"
  769. FarmFrame.Parent = TopFrame
  770. FarmFrame.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5)
  771. FarmFrame.BackgroundTransparency = 0
  772. FarmFrame.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  773. FarmFrame.Position = UDim2.new(0, 0, 0, 30)
  774. FarmFrame.Size = UDim2.new(0, 140, 0, 351)
  775. FarmFrame.Visible = false
  776.  
  777. Locations2.Name = "Locations2"
  778. Locations2.Parent = FarmFrame
  779. Locations2.BackgroundColor3 = Color3.new(0, 0, 0)
  780. Locations2.BorderColor3 = Color3.new(0.1, 0.1, 0.1)
  781. Locations2.Position = UDim2.new(0, 5, 0, 5)
  782. Locations2.Size = UDim2.new(0, 130, 0, 25)
  783. Locations2.Font = Enum.Font.Fantasy
  784. Locations2.TextColor3 = Color3.new(1, 1, 1)
  785. Locations2.Text = "LOCATIONS"
  786. Locations2.TextSize = 17
  787. Locations2.TextWrapped = true
  788.  
  789. AllHealthLabel.Name = "AllHealthLabel"
  790. AllHealthLabel.Parent = FarmFrame
  791. AllHealthLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  792. AllHealthLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  793. AllHealthLabel.Position = UDim2.new(0, 5, 0, 50)
  794. AllHealthLabel.Size = UDim2.new(0, 130, 0, 20)
  795. AllHealthLabel.Font = Enum.Font.Fantasy
  796. AllHealthLabel.TextColor3 = Color3.new(1, 1, 1)
  797. AllHealthLabel.Text = "Coin/Chest Health"
  798. AllHealthLabel.TextSize = 17
  799. AllHealthLabel.TextWrapped = true
  800.  
  801. AllHealthMinLabel.Name = "AllHealthMinLabel"
  802. AllHealthMinLabel.Parent = FarmFrame
  803. AllHealthMinLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  804. AllHealthMinLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  805. AllHealthMinLabel.Position = UDim2.new(0, 5, 0, 71)
  806. AllHealthMinLabel.Size = UDim2.new(0, 40, 0, 20)
  807. AllHealthMinLabel.Font = Enum.Font.Fantasy
  808. AllHealthMinLabel.TextColor3 = Color3.new(1, 1, 1)
  809. AllHealthMinLabel.Text = "Min"
  810. AllHealthMinLabel.TextSize = 17
  811. AllHealthMinLabel.TextWrapped = true
  812.  
  813. AllHealthMin.Name = "AllHealthMin"
  814. AllHealthMin.Parent = FarmFrame
  815. AllHealthMin.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  816. AllHealthMin.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  817. AllHealthMin.Position = UDim2.new(0, 46, 0, 71)
  818. AllHealthMin.Size = UDim2.new(0, 89, 0, 20)
  819. AllHealthMin.Font = Enum.Font.Fantasy
  820. AllHealthMin.TextColor3 = Color3.new(1, 1, 1)
  821. AllHealthMin.Text = "1"
  822. AllHealthMin.TextSize = 17
  823. AllHealthMin.TextWrapped = true
  824.  
  825. AllHealthMaxLabel.Name = "AllHealthMaxLabel"
  826. AllHealthMaxLabel.Parent = FarmFrame
  827. AllHealthMaxLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  828. AllHealthMaxLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  829. AllHealthMaxLabel.Position = UDim2.new(0, 5, 0, 92)
  830. AllHealthMaxLabel.Size = UDim2.new(0, 40, 0, 20)
  831. AllHealthMaxLabel.Font = Enum.Font.Fantasy
  832. AllHealthMaxLabel.TextColor3 = Color3.new(1, 1, 1)
  833. AllHealthMaxLabel.Text = "Max"
  834. AllHealthMaxLabel.TextSize = 17
  835. AllHealthMaxLabel.TextWrapped = true
  836.  
  837. AllHealthMax.Name = "AllHealthMax"
  838. AllHealthMax.Parent = FarmFrame
  839. AllHealthMax.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  840. AllHealthMax.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  841. AllHealthMax.Position = UDim2.new(0, 46, 0, 92)
  842. AllHealthMax.Size = UDim2.new(0, 89, 0, 20)
  843. AllHealthMax.Font = Enum.Font.Fantasy
  844. AllHealthMax.TextColor3 = Color3.new(1, 1, 1)
  845. AllHealthMax.Text = "10e6"
  846. AllHealthMax.TextSize = 17
  847. AllHealthMax.TextWrapped = true
  848.  
  849. StartFarming.Name = "StartFarming"
  850. StartFarming.Parent = FarmFrame
  851. StartFarming.BackgroundColor3 = Color3.new(0.3, 0, 0)
  852. StartFarming.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  853. StartFarming.Position = UDim2.new(0, 5, 0, 117)
  854. StartFarming.Size = UDim2.new(0, 130, 0, 25)
  855. StartFarming.Font = Enum.Font.Fantasy
  856. StartFarming.TextColor3 = Color3.new(1, 1, 1)
  857. StartFarming.Text = "Mine ALL: OFF"
  858. StartFarming.TextSize = 17
  859. StartFarming.TextWrapped = true
  860.  
  861. EarthHealthLabel.Name = "EarthHealthLabel"
  862. EarthHealthLabel.Parent = FarmFrame
  863. EarthHealthLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  864. EarthHealthLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  865. EarthHealthLabel.Position = UDim2.new(0, 5, 0, 152)
  866. EarthHealthLabel.Size = UDim2.new(0, 130, 0, 20)
  867. EarthHealthLabel.Font = Enum.Font.Fantasy
  868. EarthHealthLabel.TextColor3 = Color3.new(1, 1, 1)
  869. EarthHealthLabel.Text = "Coin/Chest Health"
  870. EarthHealthLabel.TextSize = 17
  871. EarthHealthLabel.TextWrapped = true
  872.  
  873. EarthHealthMinLabel.Name = "EarthHealthMinLabel"
  874. EarthHealthMinLabel.Parent = FarmFrame
  875. EarthHealthMinLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  876. EarthHealthMinLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  877. EarthHealthMinLabel.Position = UDim2.new(0, 5, 0, 173)
  878. EarthHealthMinLabel.Size = UDim2.new(0, 40, 0, 20)
  879. EarthHealthMinLabel.Font = Enum.Font.Fantasy
  880. EarthHealthMinLabel.TextColor3 = Color3.new(1, 1, 1)
  881. EarthHealthMinLabel.Text = "Min"
  882. EarthHealthMinLabel.TextSize = 17
  883. EarthHealthMinLabel.TextWrapped = true
  884.  
  885. EarthHealthMin.Name = "EarthHealthMin"
  886. EarthHealthMin.Parent = FarmFrame
  887. EarthHealthMin.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  888. EarthHealthMin.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  889. EarthHealthMin.Position = UDim2.new(0, 46, 0, 173)
  890. EarthHealthMin.Size = UDim2.new(0, 89, 0, 20)
  891. EarthHealthMin.Font = Enum.Font.Fantasy
  892. EarthHealthMin.TextColor3 = Color3.new(1, 1, 1)
  893. EarthHealthMin.Text = "1"
  894. EarthHealthMin.TextSize = 17
  895. EarthHealthMin.TextWrapped = true
  896.  
  897. EarthHealthMaxLabel.Name = "EarthHealthMaxLabel"
  898. EarthHealthMaxLabel.Parent = FarmFrame
  899. EarthHealthMaxLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  900. EarthHealthMaxLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  901. EarthHealthMaxLabel.Position = UDim2.new(0, 5, 0, 194)
  902. EarthHealthMaxLabel.Size = UDim2.new(0, 40, 0, 20)
  903. EarthHealthMaxLabel.Font = Enum.Font.Fantasy
  904. EarthHealthMaxLabel.TextColor3 = Color3.new(1, 1, 1)
  905. EarthHealthMaxLabel.Text = "Max"
  906. EarthHealthMaxLabel.TextSize = 17
  907. EarthHealthMaxLabel.TextWrapped = true
  908.  
  909. EarthHealthMax.Name = "EarthHealthMax"
  910. EarthHealthMax.Parent = FarmFrame
  911. EarthHealthMax.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  912. EarthHealthMax.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  913. EarthHealthMax.Position = UDim2.new(0, 46, 0, 194)
  914. EarthHealthMax.Size = UDim2.new(0, 89, 0, 20)
  915. EarthHealthMax.Font = Enum.Font.Fantasy
  916. EarthHealthMax.TextColor3 = Color3.new(1, 1, 1)
  917. EarthHealthMax.Text = "20e06"
  918. EarthHealthMax.TextSize = 17
  919. EarthHealthMax.TextWrapped = true
  920.  
  921. StartFarmingEarth.Name = "StartFarmingEarth"
  922. StartFarmingEarth.Parent = FarmFrame
  923. StartFarmingEarth.BackgroundColor3 = Color3.new(0.3, 0, 0)
  924. StartFarmingEarth.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  925. StartFarmingEarth.Position = UDim2.new(0, 5, 0, 219)
  926. StartFarmingEarth.Size = UDim2.new(0, 130, 0, 25)
  927. StartFarmingEarth.Font = Enum.Font.Fantasy
  928. StartFarmingEarth.TextColor3 = Color3.new(1, 1, 1)
  929. StartFarmingEarth.Text = "Mine Earth: OFF"
  930. StartFarmingEarth.TextSize = 17
  931. StartFarmingEarth.TextWrapped = true
  932.  
  933. MoonHealthLabel.Name = "MoonHealthLabel"
  934. MoonHealthLabel.Parent = FarmFrame
  935. MoonHealthLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  936. MoonHealthLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  937. MoonHealthLabel.Position = UDim2.new(0, 5, 0, 254)
  938. MoonHealthLabel.Size = UDim2.new(0, 130, 0, 20)
  939. MoonHealthLabel.Font = Enum.Font.Fantasy
  940. MoonHealthLabel.TextColor3 = Color3.new(1, 1, 1)
  941. MoonHealthLabel.Text = "Coin/Chest Health"
  942. MoonHealthLabel.TextSize = 17
  943. MoonHealthLabel.TextWrapped = true
  944.  
  945. MoonHealthMinLabel.Name = "MoonHealthMinLabel"
  946. MoonHealthMinLabel.Parent = FarmFrame
  947. MoonHealthMinLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  948. MoonHealthMinLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  949. MoonHealthMinLabel.Position = UDim2.new(0, 5, 0, 275)
  950. MoonHealthMinLabel.Size = UDim2.new(0, 40, 0, 20)
  951. MoonHealthMinLabel.Font = Enum.Font.Fantasy
  952. MoonHealthMinLabel.TextColor3 = Color3.new(1, 1, 1)
  953. MoonHealthMinLabel.Text = "Min"
  954. MoonHealthMinLabel.TextSize = 17
  955. MoonHealthMinLabel.TextWrapped = true
  956.  
  957. MoonHealthMin.Name = "MoonHealthMin"
  958. MoonHealthMin.Parent = FarmFrame
  959. MoonHealthMin.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  960. MoonHealthMin.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  961. MoonHealthMin.Position = UDim2.new(0, 46, 0, 275)
  962. MoonHealthMin.Size = UDim2.new(0, 89, 0, 20)
  963. MoonHealthMin.Font = Enum.Font.Fantasy
  964. MoonHealthMin.TextColor3 = Color3.new(1, 1, 1)
  965. MoonHealthMin.Text = "10e04"
  966. MoonHealthMin.TextSize = 17
  967. MoonHealthMin.TextWrapped = true
  968.  
  969. MoonHealthMaxLabel.Name = "MoonHealthMaxLabel"
  970. MoonHealthMaxLabel.Parent = FarmFrame
  971. MoonHealthMaxLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  972. MoonHealthMaxLabel.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  973. MoonHealthMaxLabel.Position = UDim2.new(0, 5, 0, 296)
  974. MoonHealthMaxLabel.Size = UDim2.new(0, 40, 0, 20)
  975. MoonHealthMaxLabel.Font = Enum.Font.Fantasy
  976. MoonHealthMaxLabel.TextColor3 = Color3.new(1, 1, 1)
  977. MoonHealthMaxLabel.Text = "Max"
  978. MoonHealthMaxLabel.TextSize = 17
  979. MoonHealthMaxLabel.TextWrapped = true
  980.  
  981. MoonHealthMax.Name = "MoonHealthMax"
  982. MoonHealthMax.Parent = FarmFrame
  983. MoonHealthMax.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  984. MoonHealthMax.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  985. MoonHealthMax.Position = UDim2.new(0, 46, 0, 296)
  986. MoonHealthMax.Size = UDim2.new(0, 89, 0, 20)
  987. MoonHealthMax.Font = Enum.Font.Fantasy
  988. MoonHealthMax.TextColor3 = Color3.new(1, 1, 1)
  989. MoonHealthMax.Text = "60e06"
  990. MoonHealthMax.TextSize = 17
  991. MoonHealthMax.TextWrapped = true
  992.  
  993. StartFarmingMoon.Name = "StartFarmingMoon"
  994. StartFarmingMoon.Parent = FarmFrame
  995. StartFarmingMoon.BackgroundColor3 = Color3.new(0.3, 0, 0)
  996. StartFarmingMoon.BorderColor3 = Color3.new(0.5, 0.5, 0.5)
  997. StartFarmingMoon.Position = UDim2.new(0, 5, 0, 321)
  998. StartFarmingMoon.Size = UDim2.new(0, 130, 0, 25)
  999. StartFarmingMoon.Font = Enum.Font.Fantasy
  1000. StartFarmingMoon.TextColor3 = Color3.new(1, 1, 1)
  1001. StartFarmingMoon.Text = "Mine Moon: OFF"
  1002. StartFarmingMoon.TextSize = 17
  1003. StartFarmingMoon.TextWrapped = true
  1004.  
  1005. -- Close GUI --
  1006. ClosePS.MouseButton1Down:connect(function()
  1007. MainGUI:destroy()
  1008. end)
  1009.  
  1010. BuyScreen.MouseButton1Click:connect(function()
  1011. MainFrame.Visible = false
  1012. BuyScreenFrame.Visible = true
  1013. end)
  1014.  
  1015. Locations.MouseButton1Click:connect(function()
  1016. MainFrame.Visible = true
  1017. BuyScreenFrame.Visible = false
  1018. end)
  1019.  
  1020. FarmCoins.MouseButton1Click:connect(function()
  1021. MainFrame.Visible = false
  1022. FarmFrame.Visible = true
  1023. end)
  1024.  
  1025. Locations2.MouseButton1Click:connect(function()
  1026. MainFrame.Visible = true
  1027. FarmFrame.Visible = false
  1028. end)
  1029.  
  1030. -- Notify --
  1031. function notify(msg)
  1032. game.StarterGui:SetCore('SendNotification', {
  1033. Title = 'Pets Simulator';
  1034. Text = msg;
  1035. Duration = 5;
  1036. })
  1037. end
  1038.  
  1039. spawn(function()
  1040. while true do
  1041. if showstartmessage then
  1042. hint("-Don't use Moon teleports until you are on the Moon. Use Rocket to reach Moon-", 7)
  1043. hint("-If teleporting back to Earth locations use Rocket to reach Earth first-", 7)
  1044. hint("-If you don't do this your pets will get stuck-", 5)
  1045. showstartmessage = false
  1046. end
  1047. wait(0.5)
  1048. end
  1049. end)
  1050.  
  1051. TeleportScreen.MouseButton1Click:connect(function()
  1052. game.Players.LocalPlayer.PlayerGui.Teleport.Enabled = true
  1053. end)
  1054.  
  1055. -- Farm --
  1056.  
  1057. StartFarming.MouseButton1Click:connect(function()
  1058. if not FarmStart then
  1059. FarmArea = "all"
  1060. FarmCoins.BackgroundColor3 = Color3.new(0, 0.3, 0)
  1061. StartFarming.BackgroundColor3 = Color3.new(0, 0.3, 0)
  1062. StartFarming.Text = "Mine ALL: ON"
  1063. coins = game.Workspace:WaitForChild("__REMOTES"):WaitForChild("Coins")
  1064. save = game.Workspace:WaitForChild("__REMOTES"):WaitForChild("Get Other Stats"):InvokeServer()
  1065. plr = game:GetService("Players").LocalPlayer
  1066. petids = {}
  1067. petAP = {}
  1068. pets = game:GetService("Workspace")["__REMOTES"].Pets
  1069. a = #save[plr.Name]["Save"]["Pets"]
  1070. done = "no"
  1071. p()
  1072. FarmStart = true
  1073. else
  1074. FarmStart = false
  1075. FarmArea = "none"
  1076. FarmCoins.BackgroundColor3 = Color3.new(0, 0, 0)
  1077. StartFarming.BackgroundColor3 = Color3.new(0.3, 0, 0)
  1078. StartFarming.Text = "Mine ALL: OFF"
  1079. end
  1080. end)
  1081.  
  1082. StartFarmingEarth.MouseButton1Click:connect(function()
  1083. if not FarmStart then
  1084. FarmArea = "earth"
  1085. FarmCoins.BackgroundColor3 = Color3.new(0, 0.3, 0)
  1086. StartFarmingEarth.BackgroundColor3 = Color3.new(0, 0.3, 0)
  1087. StartFarmingEarth.Text = "Mine Earth: ON"
  1088. coins = game.Workspace:WaitForChild("__REMOTES"):WaitForChild("Coins")
  1089. save = game.Workspace:WaitForChild("__REMOTES"):WaitForChild("Get Other Stats"):InvokeServer()
  1090. plr = game:GetService("Players").LocalPlayer
  1091. petids = {}
  1092. petAP = {}
  1093. pets = game:GetService("Workspace")["__REMOTES"].Pets
  1094. a = #save[plr.Name]["Save"]["Pets"]
  1095. done = "no"
  1096. p()
  1097. FarmStart = true
  1098. else
  1099. FarmStart = false
  1100. FarmArea = "none"
  1101. FarmCoins.BackgroundColor3 = Color3.new(0, 0, 0)
  1102. StartFarmingEarth.BackgroundColor3 = Color3.new(0.3, 0, 0)
  1103. StartFarmingEarth.Text = "Mine Earth: OFF"
  1104. end
  1105. end)
  1106.  
  1107. StartFarmingMoon.MouseButton1Click:connect(function()
  1108. if not FarmStart then
  1109. FarmArea = "moon"
  1110. FarmCoins.BackgroundColor3 = Color3.new(0, 0.3, 0)
  1111. StartFarmingMoon.BackgroundColor3 = Color3.new(0, 0.3, 0)
  1112. StartFarmingMoon.Text = "Mine Moon: ON"
  1113. coins = game.Workspace:WaitForChild("__REMOTES"):WaitForChild("Coins")
  1114. save = game.Workspace:WaitForChild("__REMOTES"):WaitForChild("Get Other Stats"):InvokeServer()
  1115. plr = game:GetService("Players").LocalPlayer
  1116. petids = {}
  1117. petAP = {}
  1118. pets = game:GetService("Workspace")["__REMOTES"].Pets
  1119. a = #save[plr.Name]["Save"]["Pets"]
  1120. done = "no"
  1121. p()
  1122. FarmStart = true
  1123. else
  1124. FarmStart = false
  1125. FarmArea = "none"
  1126. FarmCoins.BackgroundColor3 = Color3.new(0, 0, 0)
  1127. StartFarmingMoon.BackgroundColor3 = Color3.new(0.3, 0, 0)
  1128. StartFarmingMoon.Text = "Mine Moon: OFF"
  1129. end
  1130. end)
  1131.  
  1132. function mine(b)
  1133. while FarmStart and (b:FindFirstChild"Health" ~= nil) and (b:FindFirstChild"Health".Value > 0) do
  1134. wait(0.1)
  1135. for _,k in pairs(petids) do
  1136. if not FarmStart then break end
  1137. coins:FireServer("Mine",b.Name, petAP[k], k)
  1138. end
  1139. end
  1140. end
  1141.  
  1142. spawn(function()
  1143. while true do
  1144. while FarmStart do
  1145. for _,b in next, workspace.__THINGS.Coins:GetChildren() do
  1146. if (done ~= b) then
  1147. if (FarmArea == "all") then
  1148. if workspace.__THINGS.Coins:FindFirstChild(b.Name) then
  1149. if b.Health.Value > tonumber(AllHealthMin.Text) and b.Health.Value < tonumber(AllHealthMax.Text) then
  1150. mine(b)
  1151. end
  1152. end
  1153. elseif (FarmArea == "earth") then
  1154. if workspace.__THINGS.Coins:FindFirstChild(b.Name) then
  1155. if b.Position.Y < 100 then
  1156. if b.Health.Value > tonumber(EarthHealthMin.Text) and b.Health.Value < tonumber(EarthHealthMax.Text) then
  1157. mine(b)
  1158. end
  1159. end
  1160. end
  1161. elseif (FarmArea == "moon") then
  1162. if workspace.__THINGS.Coins:FindFirstChild(b.Name) then
  1163. if b.Position.Y > 100 then
  1164. if b.Health.Value > tonumber(MoonHealthMin.Text) and b.Health.Value < tonumber(MoonHealthMax.Text) then
  1165. mine(b)
  1166. end
  1167. end
  1168. end
  1169. else
  1170. end
  1171. end
  1172. end
  1173. wait()
  1174. end
  1175. wait()
  1176. end
  1177. end)
  1178.  
  1179. WalkSpeed.MouseButton1Click:connect(function()
  1180. if WalkNumber == "1" then
  1181. WalkSpeed.BackgroundColor3 = Color3.new(0, 0, 0.5)
  1182. WalkSpeed.Text = "Walk:2"
  1183. WalkNumber = "2"
  1184. Walk = 30
  1185. elseif WalkNumber == "2" then
  1186. WalkSpeed.BackgroundColor3 = Color3.new(0.5, 0, 0)
  1187. WalkSpeed.Text = "Walk:3"
  1188. WalkNumber = "3"
  1189. Walk = 80
  1190. elseif WalkNumber == "3" then
  1191. WalkSpeed.BackgroundColor3 = Color3.new(0, 0, 0)
  1192. WalkSpeed.Text = "Walk:1"
  1193. WalkNumber = "1"
  1194. Walk = 16
  1195. else
  1196. WalkSpeed.BackgroundColor3 = Color3.new(0, 0, 0)
  1197. WalkSpeed.Text = "Walk:1"
  1198. WalkNumber = "1"
  1199. Walk = 16
  1200. end
  1201. player = game.Players.LocalPlayer
  1202. player.Character.Humanoid.WalkSpeed = Walk
  1203. end)
  1204.  
  1205. JumpPower.MouseButton1Click:connect(function()
  1206. if JumpNumber == "1" then
  1207. JumpPower.BackgroundColor3 = Color3.new(0, 0, 0.5)
  1208. JumpPower.Text = "Jump:2"
  1209. JumpNumber = "2"
  1210. Jump = 150
  1211. elseif JumpNumber == "2" then
  1212. JumpPower.BackgroundColor3 = Color3.new(0.5, 0, 0)
  1213. JumpPower.Text = "Jump:3"
  1214. JumpNumber = "3"
  1215. Jump = 400
  1216. elseif JumpNumber == "3" then
  1217. JumpPower.BackgroundColor3 = Color3.new(0, 0, 0)
  1218. JumpPower.Text = "Jump:1"
  1219. JumpNumber = "1"
  1220. Jump = 50
  1221. else
  1222. JumpPower.BackgroundColor3 = Color3.new(0, 0, 0)
  1223. JumpPower.Text = "Jump:1"
  1224. JumpNumber = "1"
  1225. Jump = 50
  1226. end
  1227. player = game.Players.LocalPlayer
  1228. player.Character.Humanoid.JumpPower = Jump
  1229. end)
  1230.  
  1231. -- Display pet number in dev console --
  1232. PetCode.MouseButton1Click:connect(function()
  1233. local children = workspace["__DEBRIS"].Pets[game.Players.LocalPlayer.Name]:GetChildren()
  1234. for i = 1, #children do
  1235. print("Active Pet " ..tostring(i).. ": " ..children[i].Name)
  1236. end
  1237. 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!")
  1238. CodeInfoFrame.Visible = true
  1239. wait(15)
  1240. CodeInfoFrame.Visible = false
  1241. end)
  1242.  
  1243. -- Max Pets Stats --
  1244. MaxC1.MouseButton1Click:connect(function()
  1245. local A_1 = "Upgrade"
  1246. local A_2 = tonumber(SelectPetInput.Text)
  1247. local A_3 = "a1"
  1248. local A_4 = "-9e100"
  1249. local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1250. Event:FireServer(A_1, A_2, A_3, A_4)
  1251. wait()
  1252. local A_1 = "Upgrade"
  1253. local A_2 = tonumber(SelectPetInput.Text)
  1254. local A_3 = "c1"
  1255. local A_4 = "9e100"
  1256. local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1257. Event:FireServer(A_1, A_2, A_3, A_4)
  1258. wait()
  1259. local A_1 = "Upgrade"
  1260. local A_2 = tonumber(SelectPetInput.Text)
  1261. local A_3 = "a1"
  1262. local A_4 = "9e100"
  1263. local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1264. Event:FireServer(A_1, A_2, A_3, A_4)
  1265. end)
  1266.  
  1267. MaxA1.MouseButton1Click:connect(function()
  1268. local A_1 = "Upgrade"
  1269. local A_2 = tonumber(SelectPetInput.Text)
  1270. local A_3 = "c1"
  1271. local A_4 = "-9e100"
  1272. local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1273. Event:FireServer(A_1, A_2, A_3, A_4)
  1274. wait()
  1275. local A_1 = "Upgrade"
  1276. local A_2 = tonumber(SelectPetInput.Text)
  1277. local A_3 = "a1"
  1278. local A_4 = "9e100"
  1279. local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1280. Event:FireServer(A_1, A_2, A_3, A_4)
  1281. wait()
  1282. local A_1 = "Upgrade"
  1283. local A_2 = tonumber(SelectPetInput.Text)
  1284. local A_3 = "c1"
  1285. local A_4 = "9e100"
  1286. local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1287. Event:FireServer(A_1, A_2, A_3, A_4)
  1288. end)
  1289.  
  1290. MaxC2.MouseButton1Click:connect(function()
  1291. local A_1 = "Upgrade"
  1292. local A_2 = tonumber(SelectPetInput.Text)
  1293. local A_3 = "a2"
  1294. local A_4 = "-9e100"
  1295. local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1296. Event:FireServer(A_1, A_2, A_3, A_4)
  1297. wait()
  1298. local A_1 = "Upgrade"
  1299. local A_2 = tonumber(SelectPetInput.Text)
  1300. local A_3 = "c2"
  1301. local A_4 = "9e100"
  1302. local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1303. Event:FireServer(A_1, A_2, A_3, A_4)
  1304. wait()
  1305. local A_1 = "Upgrade"
  1306. local A_2 = tonumber(SelectPetInput.Text)
  1307. local A_3 = "a2"
  1308. local A_4 = "9e100"
  1309. local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1310. Event:FireServer(A_1, A_2, A_3, A_4)
  1311. end)
  1312.  
  1313. MaxA2.MouseButton1Click:connect(function()
  1314. local A_1 = "Upgrade"
  1315. local A_2 = tonumber(SelectPetInput.Text)
  1316. local A_3 = "c2"
  1317. local A_4 = "-9e100"
  1318. local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1319. Event:FireServer(A_1, A_2, A_3, A_4)
  1320. wait()
  1321. local A_1 = "Upgrade"
  1322. local A_2 = tonumber(SelectPetInput.Text)
  1323. local A_3 = "a2"
  1324. local A_4 = "9e100"
  1325. local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1326. Event:FireServer(A_1, A_2, A_3, A_4)
  1327. wait()
  1328. local A_1 = "Upgrade"
  1329. local A_2 = tonumber(SelectPetInput.Text)
  1330. local A_3 = "c2"
  1331. local A_4 = "9e100"
  1332. local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1333. Event:FireServer(A_1, A_2, A_3, A_4)
  1334. end)
  1335.  
  1336. MaxC3.MouseButton1Click:connect(function()
  1337. local A_1 = "Upgrade"
  1338. local A_2 = tonumber(SelectPetInput.Text)
  1339. local A_3 = "a3"
  1340. local A_4 = "-9e100"
  1341. local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1342. Event:FireServer(A_1, A_2, A_3, A_4)
  1343. wait()
  1344. local A_1 = "Upgrade"
  1345. local A_2 = tonumber(SelectPetInput.Text)
  1346. local A_3 = "c3"
  1347. local A_4 = "9e100"
  1348. local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1349. Event:FireServer(A_1, A_2, A_3, A_4)
  1350. wait()
  1351. local A_1 = "Upgrade"
  1352. local A_2 = tonumber(SelectPetInput.Text)
  1353. local A_3 = "a3"
  1354. local A_4 = "9e100"
  1355. local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1356. Event:FireServer(A_1, A_2, A_3, A_4)
  1357. end)
  1358.  
  1359. MaxA3.MouseButton1Click:connect(function()
  1360. local A_1 = "Upgrade"
  1361. local A_2 = tonumber(SelectPetInput.Text)
  1362. local A_3 = "c3"
  1363. local A_4 = "-9e100"
  1364. local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1365. Event:FireServer(A_1, A_2, A_3, A_4)
  1366. wait()
  1367. local A_1 = "Upgrade"
  1368. local A_2 = tonumber(SelectPetInput.Text)
  1369. local A_3 = "a3"
  1370. local A_4 = "9e100"
  1371. local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1372. Event:FireServer(A_1, A_2, A_3, A_4)
  1373. wait()
  1374. local A_1 = "Upgrade"
  1375. local A_2 = tonumber(SelectPetInput.Text)
  1376. local A_3 = "c3"
  1377. local A_4 = "9e100"
  1378. local Event = game:GetService("Workspace")["__REMOTES"].Upgrades
  1379. Event:FireServer(A_1, A_2, A_3, A_4)
  1380. end)
  1381.  
  1382. -- Buy Eggs and Hats --
  1383.  
  1384. BuyPetGo.MouseButton1Click:connect(function()
  1385. for i = 1, tonumber(BuyPetAmount2.Text) do
  1386. if tonumber(BuyPetAmount2.Text) == 0 then break end
  1387. game:GetService("Workspace")["__REMOTES"].Shop:InvokeServer("Buy", "Eggs", "Tier " ..BuyPetTier2.Text)
  1388. wait()
  1389. end
  1390. end)
  1391.  
  1392. BuyHatGo.MouseButton1Click:connect(function()
  1393. for i = 1, tonumber(BuyHatAmount2.Text) do
  1394. if tonumber(BuyHatAmount2.Text) == 0 then break end
  1395. if BuyHatTier2.Text:lower() == "golden" then
  1396. game:GetService("Workspace")["__REMOTES"].Shop:InvokeServer("Buy", "Presents", "Golden")
  1397. else
  1398. game:GetService("Workspace")["__REMOTES"].Shop:InvokeServer("Buy", "Presents", "Tier " ..BuyHatTier2.Text)
  1399. end
  1400. wait()
  1401. end
  1402. end)
  1403.  
  1404. -- TP to locations --
  1405. Spawn.MouseButton1Click:connect(function()
  1406. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(526, -36.292, 909)
  1407. notify'Teleported to the Spawn Location'
  1408. end)
  1409.  
  1410. Shop.MouseButton1Click:connect(function()
  1411. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(647.35, -33.6, 890.23)
  1412. notify'Teleported to the Shop'
  1413. end)
  1414.  
  1415. Area2.MouseButton1Click:connect(function()
  1416. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(13, -37, 885)
  1417. notify'Teleported to the 25K Coins Area'
  1418. end)
  1419.  
  1420. Area3.MouseButton1Click:connect(function()
  1421. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-364, -37, 885)
  1422. notify'Teleported to the 400K Coins Area'
  1423. end)
  1424.  
  1425. Area4.MouseButton1Click:connect(function()
  1426. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-760, -37, 885)
  1427. notify'Teleported to the 2.5M Coins Area'
  1428. end)
  1429.  
  1430. Area5.MouseButton1Click:connect(function()
  1431. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1160, -37, 885)
  1432. notify'Teleported to the 20M Coins Area'
  1433. end)
  1434.  
  1435. Area6.MouseButton1Click:connect(function()
  1436. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1500, -37, 885)
  1437. notify'Teleported to the 500M Coins Area'
  1438. end)
  1439.  
  1440. Rocket.MouseButton1Click:connect(function()
  1441. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1828, -37, 897)
  1442. notify'Teleported to the Rocket Area'
  1443. end)
  1444.  
  1445. Area8.MouseButton1Click:connect(function()
  1446. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(616, 146, -1720)
  1447. notify'Teleported to the Moon Shop'
  1448. end)
  1449.  
  1450. Area9.MouseButton1Click:connect(function()
  1451. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(527, 145, -1762)
  1452. notify'Teleported to the Moon Area 1'
  1453. end)
  1454.  
  1455. Area10.MouseButton1Click:connect(function()
  1456. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(124.8, 145, -1718)
  1457. notify'Teleported to the Moon Area 2'
  1458. end)
  1459.  
  1460. CandyLand.MouseButton1Click:connect(function()
  1461. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(13.7, 145, -1449.8)
  1462. notify'Teleported to Candy Land'
  1463. end)
  1464.  
  1465. CyborgLand.MouseButton1Click:connect(function()
  1466. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-283.5, 145, -1704.4)
  1467. notify'Teleported to the Cyborg Area'
  1468. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement