Advertisement
jh31opy

Pet Swarm Simulator

Nov 3rd, 2023 (edited)
361
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 43.34 KB | Gaming | 0 0
  1. _G.autoFarmingBerry1 = false
  2. _G.autoFarmingBerry2 = false
  3. _G.autoFarmingBerry3 = false
  4. _G.autoFarmingBerry4 = false
  5. _G.autoFarmingBerry5 = false
  6. _G.autoFarmingBerry6 = false
  7. _G.autoFarmingBerry7 = false
  8. _G.autoFarmingBerry8 = false
  9. _G.autoFarmingBerry9 = false
  10. _G.autoFarmingBerry10 = false
  11. _G.autoFarmingBerry11 = false
  12. _G.autoFarmingBerry12 = false
  13. _G.autoFarmingBerry13 = false
  14. _G.autoFarmingBerry24 = false
  15. _G.autoFarmingBerry25 = false
  16. _G.autoFarmingBerry26 = false
  17. _G.autoFarmingEgg1 = false
  18. _G.autoFarmingEgg2 = false
  19. _G.autoFarmingEgg3 = false
  20. _G.autoFarmingEgg4 = false
  21. _G.autoFarmingEgg5 = false
  22. _G.autoFarmingEgg6 = false
  23. _G.autoFarmingEgg7 = false
  24. _G.autoFarmingEgg8 = false
  25. _G.autoFarmingEgg9 = false
  26. _G.autoFarmingEgg10 = false
  27. _G.autoFarmingEgg11 = false
  28. _G.autoFarmingEgg12 = false
  29. _G.autoFarmingEgg13 = false
  30. _G.autoFarmingEgg24 = false
  31. _G.autoFarmingEgg25 = false
  32. _G.autoFarmingEgg26 = false
  33. _G.autoFarmingBoss14 = false
  34. _G.autoFarmingBoss15 = false
  35. _G.autoFarmingBoss16 = false
  36. _G.autoFarmingBoss17 = false
  37. _G.autoFarmingBoss18 = false
  38. _G.autoFarmingBoss19 = false
  39. _G.autoFarmingBoss20 = false
  40. _G.autoFarmingBoss21 = false
  41. _G.autoFarmingBoss22 = false
  42. _G.autoFarmingBoss23 = false
  43. _G.autoPlantingEgg = false
  44. _G.autoHatchingEgg = false
  45. _G.selectingEgg = "f1"
  46. _G.autoOpenChest = false
  47. _G.autoGetQuest = false
  48. _G.autoQC = false
  49. local player = game.Players.LocalPlayer
  50. local Stage1 = "Zone1" --The Commons
  51. local Stage2 = "Zone2" --Ancient Desert
  52. local Stage3 = "Zone3" --Frozen Valley
  53. local Stage4 = "Zone4" --Crystal Swamp
  54. local Stage5 = "Zone5" --Cloud Islands
  55. local Stage6 = "Zone6" --The Underworld
  56. local Stage7 = "Zone7" --Atlantis
  57. local Stage8 = "Zone8" --Ocean Depths
  58. local Stage9 = "Zone9" --The Cosmos
  59. local Stage10 = "Zone10" --Tiki Island
  60. local Stage11 = "Zone11" --Enchanted Garden
  61. local Stage12 = "Zone12" --Dracos Tower
  62. local Stage13 = "Zone12.1" --Crystal Cave
  63. local Stage14 = "Zone2B1" --Naga
  64. local Stage15 = "Zone5B1" --Lava Monster
  65. local Stage16 = "Zone8B1" --Ghost Pirate
  66. local Stage17 = "Zone10B1" --Tiki
  67. local Stage18 = "Zone12B1" --The Frozen Ancient
  68. local Stage19 = "Zone12B3" --The Big 100M
  69. local Stage20 = "Zone12B2" --The Ethereal Everia
  70. local Stage21 = "SummerEventZoneB1" --Hornet
  71. local Stage22 = "WinterEventZoneB1" --Ice Serpent
  72. local Stage23 = "ElementEventZoneB1" --Sphinx
  73. local Stage24 = "SummerEventZone"
  74. local Stage25 = "WinterEventZone"
  75. local Stage26 = "ElementEventZone1"
  76.  
  77. -- Berry
  78. local function autoFarmBerry1()
  79. spawn(function()
  80. while wait() do
  81. if _G.autoFarmingBerry1 then
  82. for _, Food in pairs(game:GetService("Workspace").Zones[Stage1].FoodSpawns:GetChildren()) do
  83. local A1 = "CollectFood"
  84. local A2 = Food
  85. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  86. local A3 = Pets
  87. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CollectionRF
  88. Event:InvokeServer(A1, A2, A3)
  89. end
  90. end
  91. wait()
  92. end
  93. end
  94. end)
  95. end
  96. local function autoFarmBerry2()
  97. spawn(function()
  98. while wait() do
  99. if _G.autoFarmingBerry2 then
  100. for _, Food in pairs(game:GetService("Workspace").Zones[Stage2].FoodSpawns:GetChildren()) do
  101. local A1 = "CollectFood"
  102. local A2 = Food
  103. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  104. local A3 = Pets
  105. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CollectionRF
  106. Event:InvokeServer(A1, A2, A3)
  107. end
  108. end
  109. wait()
  110. end
  111. end
  112. end)
  113. end
  114. local function autoFarmBerry3()
  115. spawn(function()
  116. while wait() do
  117. if _G.autoFarmingBerry3 then
  118. for _, Food in pairs(game:GetService("Workspace").Zones[Stage3].FoodSpawns:GetChildren()) do
  119. local A1 = "CollectFood"
  120. local A2 = Food
  121. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  122. local A3 = Pets
  123. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CollectionRF
  124. Event:InvokeServer(A1, A2, A3)
  125. end
  126. end
  127. wait()
  128. end
  129. end
  130. end)
  131. end
  132. local function autoFarmBerry4()
  133. spawn(function()
  134. while wait() do
  135. if _G.autoFarmingBerry4 then
  136. for _, Food in pairs(game:GetService("Workspace").Zones[Stage4].FoodSpawns:GetChildren()) do
  137. local A1 = "CollectFood"
  138. local A2 = Food
  139. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  140. local A3 = Pets
  141. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CollectionRF
  142. Event:InvokeServer(A1, A2, A3)
  143. end
  144. end
  145. wait()
  146. end
  147. end
  148. end)
  149. end
  150. local function autoFarmBerry5()
  151. spawn(function()
  152. while wait() do
  153. if _G.autoFarmingBerry5 then
  154. for _, Food in pairs(game:GetService("Workspace").Zones[Stage5].FoodSpawns:GetChildren()) do
  155. local A1 = "CollectFood"
  156. local A2 = Food
  157. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  158. local A3 = Pets
  159. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CollectionRF
  160. Event:InvokeServer(A1, A2, A3)
  161. end
  162. end
  163. wait()
  164. end
  165. end
  166. end)
  167. end
  168. local function autoFarmBerry6()
  169. spawn(function()
  170. while wait() do
  171. if _G.autoFarmingBerry6 then
  172. for _, Food in pairs(game:GetService("Workspace").Zones[Stage6].FoodSpawns:GetChildren()) do
  173. local A1 = "CollectFood"
  174. local A2 = Food
  175. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  176. local A3 = Pets
  177. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CollectionRF
  178. Event:InvokeServer(A1, A2, A3)
  179. end
  180. end
  181. wait()
  182. end
  183. end
  184. end)
  185. end
  186. local function autoFarmBerry7()
  187. spawn(function()
  188. while wait() do
  189. if _G.autoFarmingBerry7 then
  190. for _, Food in pairs(game:GetService("Workspace").Zones[Stage7].FoodSpawns:GetChildren()) do
  191. local A1 = "CollectFood"
  192. local A2 = Food
  193. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  194. local A3 = Pets
  195. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CollectionRF
  196. Event:InvokeServer(A1, A2, A3)
  197. end
  198. end
  199. wait()
  200. end
  201. end
  202. end)
  203. end
  204. local function autoFarmBerry8()
  205. spawn(function()
  206. while wait() do
  207. if _G.autoFarmingBerry8 then
  208. for _, Food in pairs(game:GetService("Workspace").Zones[Stage8].FoodSpawns:GetChildren()) do
  209. local A1 = "CollectFood"
  210. local A2 = Food
  211. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  212. local A3 = Pets
  213. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CollectionRF
  214. Event:InvokeServer(A1, A2, A3)
  215. end
  216. end
  217. wait()
  218. end
  219. end
  220. end)
  221. end
  222. local function autoFarmBerry9()
  223. spawn(function()
  224. while wait() do
  225. if _G.autoFarmingBerry9 then
  226. for _, Food in pairs(game:GetService("Workspace").Zones[Stage9].FoodSpawns:GetChildren()) do
  227. local A1 = "CollectFood"
  228. local A2 = Food
  229. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  230. local A3 = Pets
  231. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CollectionRF
  232. Event:InvokeServer(A1, A2, A3)
  233. end
  234. end
  235. wait()
  236. end
  237. end
  238. end)
  239. end
  240. local function autoFarmBerry10()
  241. spawn(function()
  242. while wait() do
  243. if _G.autoFarmingBerry10 then
  244. for _, Food in pairs(game:GetService("Workspace").Zones[Stage10].FoodSpawns:GetChildren()) do
  245. local A1 = "CollectFood"
  246. local A2 = Food
  247. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  248. local A3 = Pets
  249. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CollectionRF
  250. Event:InvokeServer(A1, A2, A3)
  251. end
  252. end
  253. wait()
  254. end
  255. end
  256. end)
  257. end
  258. local function autoFarmBerry11()
  259. spawn(function()
  260. while wait() do
  261. if _G.autoFarmingBerry11 then
  262. for _, Food in pairs(game:GetService("Workspace").Zones[Stage11].FoodSpawns:GetChildren()) do
  263. local A1 = "CollectFood"
  264. local A2 = Food
  265. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  266. local A3 = Pets
  267. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CollectionRF
  268. Event:InvokeServer(A1, A2, A3)
  269. end
  270. end
  271. wait()
  272. end
  273. end
  274. end)
  275. end
  276. local function autoFarmBerry12()
  277. spawn(function()
  278. while wait() do
  279. if _G.autoFarmingBerry12 then
  280. for _, Food in pairs(game:GetService("Workspace").Zones[Stage12].FoodSpawns:GetChildren()) do
  281. local A1 = "CollectFood"
  282. local A2 = Food
  283. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  284. local A3 = Pets
  285. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CollectionRF
  286. Event:InvokeServer(A1, A2, A3)
  287. end
  288. end
  289. wait()
  290. end
  291. end
  292. end)
  293. end
  294. local function autoFarmBerry13()
  295. spawn(function()
  296. while wait() do
  297. if _G.autoFarmingBerry13 then
  298. for _, Food in pairs(game:GetService("Workspace").Zones[Stage13].FoodSpawns:GetChildren()) do
  299. local A1 = "CollectFood"
  300. local A2 = Food
  301. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  302. local A3 = Pets
  303. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CollectionRF
  304. Event:InvokeServer(A1, A2, A3)
  305. end
  306. end
  307. wait()
  308. end
  309. end
  310. end)
  311. end
  312. local function autoFarmBerry24()
  313. spawn(function()
  314. while wait() do
  315. if _G.autoFarmingBerry24 then
  316. for _, Food in pairs(game:GetService("Workspace").Zones[Stage24].FoodSpawns:GetChildren()) do
  317. local A1 = "CollectFood"
  318. local A2 = Food
  319. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  320. local A3 = Pets
  321. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CollectionRF
  322. Event:InvokeServer(A1, A2, A3)
  323. end
  324. end
  325. wait()
  326. end
  327. end
  328. end)
  329. end
  330. local function autoFarmBerry25()
  331. spawn(function()
  332. while wait() do
  333. if _G.autoFarmingBerry24 then
  334. for _, Food in pairs(game:GetService("Workspace").Zones[Stage25].FoodSpawns:GetChildren()) do
  335. local A1 = "CollectFood"
  336. local A2 = Food
  337. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  338. local A3 = Pets
  339. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CollectionRF
  340. Event:InvokeServer(A1, A2, A3)
  341. end
  342. end
  343. wait()
  344. end
  345. end
  346. end)
  347. end
  348. local function autoFarmBerry26()
  349. spawn(function()
  350. while wait() do
  351. if _G.autoFarmingBerry26 then
  352. for _, Food in pairs(game:GetService("Workspace").Zones[Stage26].FoodSpawns:GetChildren()) do
  353. local A1 = "CollectFood"
  354. local A2 = Food
  355. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  356. local A3 = Pets
  357. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CollectionRF
  358. Event:InvokeServer(A1, A2, A3)
  359. end
  360. end
  361. wait()
  362. end
  363. end
  364. end)
  365. end
  366.  
  367. -- Egg
  368. local function autoFarmEgg1()
  369. spawn(function()
  370. while wait() do
  371. if _G.autoFarmingEgg1 then
  372. for _, Enemies in pairs(game:GetService("Workspace").Zones[Stage1].Enemies:GetChildren()) do
  373. local A1 = "AttackEnemy"
  374. local A2 = Enemies
  375. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  376. local A3 = Pets
  377. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CombatRF
  378. Event:InvokeServer(A1, A2, A3)
  379. end
  380. end
  381. wait()
  382. end
  383. end
  384. end)
  385. end
  386. local function autoFarmEgg2()
  387. spawn(function()
  388. while wait() do
  389. if _G.autoFarmingEgg2 then
  390. for _, Enemies in pairs(game:GetService("Workspace").Zones[Stage2].Enemies:GetChildren()) do
  391. local A1 = "AttackEnemy"
  392. local A2 = Enemies
  393. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  394. local A3 = Pets
  395. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CombatRF
  396. Event:InvokeServer(A1, A2, A3)
  397. end
  398. end
  399. wait()
  400. end
  401. end
  402. end)
  403. end
  404. local function autoFarmEgg3()
  405. spawn(function()
  406. while wait() do
  407. if _G.autoFarmingEgg3 then
  408. for _, Enemies in pairs(game:GetService("Workspace").Zones[Stage3].Enemies:GetChildren()) do
  409. local A1 = "AttackEnemy"
  410. local A2 = Enemies
  411. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  412. local A3 = Pets
  413. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CombatRF
  414. Event:InvokeServer(A1, A2, A3)
  415. end
  416. end
  417. wait()
  418. end
  419. end
  420. end)
  421. end
  422. local function autoFarmEgg4()
  423. spawn(function()
  424. while wait() do
  425. if _G.autoFarmingEgg4 then
  426. for _, Enemies in pairs(game:GetService("Workspace").Zones[Stage4].Enemies:GetChildren()) do
  427. local A1 = "AttackEnemy"
  428. local A2 = Enemies
  429. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  430. local A3 = Pets
  431. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CombatRF
  432. Event:InvokeServer(A1, A2, A3)
  433. end
  434. end
  435. wait()
  436. end
  437. end
  438. end)
  439. end
  440. local function autoFarmEgg5()
  441. spawn(function()
  442. while wait() do
  443. if _G.autoFarmingEgg5 then
  444. for _, Enemies in pairs(game:GetService("Workspace").Zones[Stage5].Enemies:GetChildren()) do
  445. local A1 = "AttackEnemy"
  446. local A2 = Enemies
  447. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  448. local A3 = Pets
  449. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CombatRF
  450. Event:InvokeServer(A1, A2, A3)
  451. end
  452. end
  453. wait()
  454. end
  455. end
  456. end)
  457. end
  458. local function autoFarmEgg6()
  459. spawn(function()
  460. while wait() do
  461. if _G.autoFarmingEgg6 then
  462. for _, Enemies in pairs(game:GetService("Workspace").Zones[Stage6].Enemies:GetChildren()) do
  463. local A1 = "AttackEnemy"
  464. local A2 = Enemies
  465. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  466. local A3 = Pets
  467. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CombatRF
  468. Event:InvokeServer(A1, A2, A3)
  469. end
  470. end
  471. wait()
  472. end
  473. end
  474. end)
  475. end
  476. local function autoFarmEgg7()
  477. spawn(function()
  478. while wait() do
  479. if _G.autoFarmingEgg7 then
  480. for _, Enemies in pairs(game:GetService("Workspace").Zones[Stage7].Enemies:GetChildren()) do
  481. local A1 = "AttackEnemy"
  482. local A2 = Enemies
  483. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  484. local A3 = Pets
  485. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CombatRF
  486. Event:InvokeServer(A1, A2, A3)
  487. end
  488. end
  489. wait()
  490. end
  491. end
  492. end)
  493. end
  494. local function autoFarmEgg8()
  495. spawn(function()
  496. while wait() do
  497. if _G.autoFarmingEgg8 then
  498. for _, Enemies in pairs(game:GetService("Workspace").Zones[Stage8].Enemies:GetChildren()) do
  499. local A1 = "AttackEnemy"
  500. local A2 = Enemies
  501. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  502. local A3 = Pets
  503. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CombatRF
  504. Event:InvokeServer(A1, A2, A3)
  505. end
  506. end
  507. wait()
  508. end
  509. end
  510. end)
  511. end
  512. local function autoFarmEgg9()
  513. spawn(function()
  514. while wait() do
  515. if _G.autoFarmingEgg9 then
  516. for _, Enemies in pairs(game:GetService("Workspace").Zones[Stage9].Enemies:GetChildren()) do
  517. local A1 = "AttackEnemy"
  518. local A2 = Enemies
  519. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  520. local A3 = Pets
  521. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CombatRF
  522. Event:InvokeServer(A1, A2, A3)
  523. end
  524. end
  525. wait()
  526. end
  527. end
  528. end)
  529. end
  530. local function autoFarmEgg10()
  531. spawn(function()
  532. while wait() do
  533. if _G.autoFarmingEgg10 then
  534. for _, Enemies in pairs(game:GetService("Workspace").Zones[Stage10].Enemies:GetChildren()) do
  535. local A1 = "AttackEnemy"
  536. local A2 = Enemies
  537. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  538. local A3 = Pets
  539. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CombatRF
  540. Event:InvokeServer(A1, A2, A3)
  541. end
  542. end
  543. wait()
  544. end
  545. end
  546. end)
  547. end
  548. local function autoFarmEgg11()
  549. spawn(function()
  550. while wait() do
  551. if _G.autoFarmingEgg11 then
  552. for _, Enemies in pairs(game:GetService("Workspace").Zones[Stage11].Enemies:GetChildren()) do
  553. local A1 = "AttackEnemy"
  554. local A2 = Enemies
  555. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  556. local A3 = Pets
  557. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CombatRF
  558. Event:InvokeServer(A1, A2, A3)
  559. end
  560. end
  561. wait()
  562. end
  563. end
  564. end)
  565. end
  566. local function autoFarmEgg12()
  567. spawn(function()
  568. while wait() do
  569. if _G.autoFarmingEgg12 then
  570. for _, Enemies in pairs(game:GetService("Workspace").Zones[Stage12].Enemies:GetChildren()) do
  571. local A1 = "AttackEnemy"
  572. local A2 = Enemies
  573. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  574. local A3 = Pets
  575. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CombatRF
  576. Event:InvokeServer(A1, A2, A3)
  577. end
  578. end
  579. wait()
  580. end
  581. end
  582. end)
  583. end
  584. local function autoFarmEgg13()
  585. spawn(function()
  586. while wait() do
  587. if _G.autoFarmingEgg13 then
  588. for _, Enemies in pairs(game:GetService("Workspace").Zones[Stage13].Enemies:GetChildren()) do
  589. local A1 = "AttackEnemy"
  590. local A2 = Enemies
  591. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  592. local A3 = Pets
  593. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CombatRF
  594. Event:InvokeServer(A1, A2, A3)
  595. end
  596. end
  597. wait()
  598. end
  599. end
  600. end)
  601. end
  602. local function autoFarmEgg24()
  603. spawn(function()
  604. while wait() do
  605. if _G.autoFarmingEgg24 then
  606. for _, Enemies in pairs(game:GetService("Workspace").Zones[Stage24].Enemies:GetChildren()) do
  607. local A1 = "AttackEnemy"
  608. local A2 = Enemies
  609. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  610. local A3 = Pets
  611. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CombatRF
  612. Event:InvokeServer(A1, A2, A3)
  613. end
  614. end
  615. wait()
  616. end
  617. end
  618. end)
  619. end
  620. local function autoFarmEgg25()
  621. spawn(function()
  622. while wait() do
  623. if _G.autoFarmingEgg25 then
  624. for _, Enemies in pairs(game:GetService("Workspace").Zones[Stage25].Enemies:GetChildren()) do
  625. local A1 = "AttackEnemy"
  626. local A2 = Enemies
  627. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  628. local A3 = Pets
  629. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CombatRF
  630. Event:InvokeServer(A1, A2, A3)
  631. end
  632. end
  633. wait()
  634. end
  635. end
  636. end)
  637. end
  638. local function autoFarmEgg26()
  639. spawn(function()
  640. while wait() do
  641. if _G.autoFarmingEgg26 then
  642. for _, Enemies in pairs(game:GetService("Workspace").Zones[Stage26].Enemies:GetChildren()) do
  643. local A1 = "AttackEnemy"
  644. local A2 = Enemies
  645. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  646. local A3 = Pets
  647. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CombatRF
  648. Event:InvokeServer(A1, A2, A3)
  649. end
  650. end
  651. wait()
  652. end
  653. end
  654. end)
  655. end
  656.  
  657. -- Boss
  658. local function autoFarmBoss14()
  659. spawn(function()
  660. while wait() do
  661. if _G.autoFarmingBoss14 then
  662. for _, Enemies in pairs(game:GetService("Workspace").Zones[Stage14].Enemies:GetChildren()) do
  663. local A1 = "AttackEnemy"
  664. local A2 = Enemies
  665. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  666. local A3 = Pets
  667. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CombatRF
  668. Event:InvokeServer(A1, A2, A3)
  669. end
  670. end
  671. wait()
  672. end
  673. end
  674. end)
  675. end
  676. local function autoFarmBoss15()
  677. spawn(function()
  678. while wait() do
  679. if _G.autoFarmingBoss15 then
  680. for _, Enemies in pairs(game:GetService("Workspace").Zones[Stage15].Enemies:GetChildren()) do
  681. local A1 = "AttackEnemy"
  682. local A2 = Enemies
  683. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  684. local A3 = Pets
  685. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CombatRF
  686. Event:InvokeServer(A1, A2, A3)
  687. end
  688. end
  689. wait()
  690. end
  691. end
  692. end)
  693. end
  694. local function autoFarmBoss16()
  695. spawn(function()
  696. while wait() do
  697. if _G.autoFarmingBoss16 then
  698. for _, Enemies in pairs(game:GetService("Workspace").Zones[Stage16].Enemies:GetChildren()) do
  699. local A1 = "AttackEnemy"
  700. local A2 = Enemies
  701. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  702. local A3 = Pets
  703. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CombatRF
  704. Event:InvokeServer(A1, A2, A3)
  705. end
  706. end
  707. wait()
  708. end
  709. end
  710. end)
  711. end
  712. local function autoFarmBoss17()
  713. spawn(function()
  714. while wait() do
  715. if _G.autoFarmingBoss17 then
  716. for _, Enemies in pairs(game:GetService("Workspace").Zones[Stage17].Enemies:GetChildren()) do
  717. local A1 = "AttackEnemy"
  718. local A2 = Enemies
  719. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  720. local A3 = Pets
  721. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CombatRF
  722. Event:InvokeServer(A1, A2, A3)
  723. end
  724. end
  725. wait()
  726. end
  727. end
  728. end)
  729. end
  730. local function autoFarmBoss18()
  731. spawn(function()
  732. while wait() do
  733. if _G.autoFarmingBoss18 then
  734. for _, Enemies in pairs(game:GetService("Workspace").Zones[Stage18].Enemies:GetChildren()) do
  735. local A1 = "AttackEnemy"
  736. local A2 = Enemies
  737. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  738. local A3 = Pets
  739. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CombatRF
  740. Event:InvokeServer(A1, A2, A3)
  741. end
  742. end
  743. wait()
  744. end
  745. end
  746. end)
  747. end
  748. local function autoFarmBoss19()
  749. spawn(function()
  750. while wait() do
  751. if _G.autoFarmingBoss19 then
  752. for _, Enemies in pairs(game:GetService("Workspace").Zones[Stage19].Enemies:GetChildren()) do
  753. local A1 = "AttackEnemy"
  754. local A2 = Enemies
  755. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  756. local A3 = Pets
  757. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CombatRF
  758. Event:InvokeServer(A1, A2, A3)
  759. end
  760. end
  761. wait()
  762. end
  763. end
  764. end)
  765. end
  766. local function autoFarmBoss20()
  767. spawn(function()
  768. while wait() do
  769. if _G.autoFarmingBoss20 then
  770. for _, Enemies in pairs(game:GetService("Workspace").Zones[Stage20].Enemies:GetChildren()) do
  771. local A1 = "AttackEnemy"
  772. local A2 = Enemies
  773. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  774. local A3 = Pets
  775. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CombatRF
  776. Event:InvokeServer(A1, A2, A3)
  777. end
  778. end
  779. wait()
  780. end
  781. end
  782. end)
  783. end
  784. local function autoFarmBoss21()
  785. spawn(function()
  786. while wait() do
  787. if _G.autoFarmingBoss21 then
  788. for _, Enemies in pairs(game:GetService("Workspace").Zones[Stage21].Enemies:GetChildren()) do
  789. local A1 = "AttackEnemy"
  790. local A2 = Enemies
  791. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  792. local A3 = Pets
  793. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CombatRF
  794. Event:InvokeServer(A1, A2, A3)
  795. end
  796. end
  797. wait()
  798. end
  799. end
  800. end)
  801. end
  802. local function autoFarmBoss22()
  803. spawn(function()
  804. while wait() do
  805. if _G.autoFarmingBoss22 then
  806. for _, Enemies in pairs(game:GetService("Workspace").Zones[Stage22].Enemies:GetChildren()) do
  807. local A1 = "AttackEnemy"
  808. local A2 = Enemies
  809. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  810. local A3 = Pets
  811. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CombatRF
  812. Event:InvokeServer(A1, A2, A3)
  813. end
  814. end
  815. wait()
  816. end
  817. end
  818. end)
  819. end
  820. local function autoFarmBoss23()
  821. spawn(function()
  822. while wait() do
  823. if _G.autoFarmingBoss23 then
  824. for _, Enemies in pairs(game:GetService("Workspace").Zones[Stage23].Enemies:GetChildren()) do
  825. local A1 = "AttackEnemy"
  826. local A2 = Enemies
  827. for _, Pets in pairs(game:GetService("Workspace")[player.Name].Pets:GetChildren()) do
  828. local A3 = Pets
  829. local Event = game:GetService("ReplicatedStorage").Remotes.Functions.CombatRF
  830. Event:InvokeServer(A1, A2, A3)
  831. end
  832. end
  833. wait()
  834. end
  835. end
  836. end)
  837. end
  838.  
  839. --MISC
  840. local function autoPlant()
  841. spawn(function()
  842. while wait() do
  843. if _G.autoPlantingEgg then
  844. game:GetService("ReplicatedStorage").Remotes.Events.PlantEggEvent:FireServer(_G.selectingEgg, f1)
  845. wait()
  846. end
  847. end
  848. end)
  849. end
  850. local function autoHatch()
  851. spawn(function()
  852. while wait() do
  853. if _G.autoHatchingEgg then
  854. game:GetService("ReplicatedStorage").Remotes.Events.HatchEggEvent:FireServer()
  855. wait()
  856. end
  857. end
  858. end)
  859. end
  860. local function autoOpenChests()
  861. spawn(function()
  862. while wait() do
  863. if _G.autoOpenChest then
  864. game:GetService("ReplicatedStorage").Remotes.Functions.RewardChestRF:InvokeServer("OpenChest", "Zone1S1")
  865. game:GetService("ReplicatedStorage").Remotes.Functions.RewardChestRF:InvokeServer("OpenChest", "Zone3S1")
  866. game:GetService("ReplicatedStorage").Remotes.Functions.RewardChestRF:InvokeServer("OpenChest", "SummerEventZone")
  867. end
  868. end
  869. end)
  870. end
  871.  
  872. local function autoQCs()
  873. spawn(function()
  874. while wait() do
  875. if _G.autoQC then
  876. game:GetService("ReplicatedStorage").Remotes.Events.GiveQuest:FireServer("Ignacio")
  877. game:GetService("ReplicatedStorage").Remotes.Events.QuestCompleted:FireServer("1S1")
  878. game:GetService("ReplicatedStorage").Remotes.Events.QuestCompleted:FireServer("1S1.1")
  879. game:GetService("ReplicatedStorage").Remotes.Events.QuestCompleted:FireServer("1S1.2")
  880. game:GetService("ReplicatedStorage").Remotes.Events.QuestCompleted:FireServer("1S1.3")
  881. game:GetService("ReplicatedStorage").Remotes.Events.QuestCompleted:FireServer("1S1.4")
  882. game:GetService("ReplicatedStorage").Remotes.Events.QuestCompleted:FireServer("1S1.5")
  883. game:GetService("ReplicatedStorage").Remotes.Events.QuestCompleted:FireServer("1S1.6")
  884. game:GetService("ReplicatedStorage").Remotes.Events.QuestCompleted:FireServer("1S1.7")
  885. game:GetService("ReplicatedStorage").Remotes.Events.QuestCompleted:FireServer("1S1.8")
  886. game:GetService("ReplicatedStorage").Remotes.Events.QuestCompleted:FireServer("1S1.9")
  887. end
  888. end
  889. end)
  890. end
  891.  
  892. local lib = loadstring(game:HttpGet("https://pastebin.com/raw/aEYUKSL0"))()
  893. local win = lib:Load("PET SWARM SIMULATOR", "Default")
  894.  
  895. -- Berry
  896. local tab1 = lib.newTab("BERRY", "rbxassetid://4483345998")
  897. tab1.newToggle("THE COMMONS", "", false, function(bool)
  898. _G.autoFarmingBerry1 = bool
  899. autoFarmBerry1()
  900. end)
  901. tab1.newToggle("ANCIENT DESERT", "", false, function(bool)
  902. _G.autoFarmingBerry2 = bool
  903. autoFarmBerry2()
  904. end)
  905. tab1.newToggle("FROZEN VALLEY", "", false, function(bool)
  906. _G.autoFarmingBerry3 = bool
  907. autoFarmBerry3()
  908. end)
  909. tab1.newToggle("CRYSTAL SWAMP", "", false, function(bool)
  910. _G.autoFarmingBerry4 = bool
  911. autoFarmBerry4()
  912. end)
  913. tab1.newToggle("CLOUD ISLANDS", "", false, function(bool)
  914. _G.autoFarmingBerry5 = bool
  915. autoFarmBerry5()
  916. end)
  917. tab1.newToggle("THE UNDERWORLD", "", false, function(bool)
  918. _G.autoFarmingBerry6 = bool
  919. autoFarmBerry6()
  920. end)
  921. tab1.newToggle("ATLANTIS", "", false, function(bool)
  922. _G.autoFarmingBerry7 = bool
  923. autoFarmBerry7()
  924. end)
  925. tab1.newToggle("OCEAN DEPTHS", "", false, function(bool)
  926. _G.autoFarmingBerry8 = bool
  927. autoFarmBerry8()
  928. end)
  929. tab1.newToggle("THE COSMOS", "", false, function(bool)
  930. _G.autoFarmingBerry9 = bool
  931. autoFarmBerry9()
  932. end)
  933. tab1.newToggle("TIKI ISLAND", "", false, function(bool)
  934. _G.autoFarmingBerry10 = bool
  935. autoFarmBerry10()
  936. end)
  937. tab1.newToggle("ENCHANTED GARDEN", "", false, function(bool)
  938. _G.autoFarmingBerry11 = bool
  939. autoFarmBerry11()
  940. end)
  941. tab1.newToggle("DRACO'S TOWER", "", false, function(bool)
  942. _G.autoFarmingBerry12 = bool
  943. autoFarmBerry12()
  944. end)
  945. tab1.newToggle("CRYSTAL CAVE", "", false, function(bool)
  946. _G.autoFarmingBerry13 = bool
  947. autoFarmBerry13()
  948. end)
  949. tab1.newToggle("SUMMER EVENT", "", false, function(bool)
  950. _G.autoFarmingBerry24 = bool
  951. autoFarmBerry24()
  952. end)
  953. tab1.newToggle("WINTER EVENT", "", false, function(bool)
  954. _G.autoFarmingBerry25 = bool
  955. autoFarmBerry25()
  956. end)
  957. tab1.newToggle("ELEMENT EVENT", "", false, function(bool)
  958. _G.autoFarmingBerry26 = bool
  959. autoFarmBerry26()
  960. end)
  961.  
  962. -- Egg
  963. local tab2 = lib.newTab("EGG", "rbxassetid://4483345998")
  964. tab2.newToggle("THE COMMONS", "", false, function(bool)
  965. _G.autoFarmingEgg1 = bool
  966. autoFarmEgg1()
  967. end)
  968. tab2.newToggle("ANCIENT DESERT", "", false, function(bool)
  969. _G.autoFarmingEgg2 = bool
  970. autoFarmEgg2()
  971. end)
  972. tab2.newToggle("FROZEN VALLEY", "", false, function(bool)
  973. _G.autoFarmingEgg3 = bool
  974. autoFarmEgg3()
  975. end)
  976. tab2.newToggle("CRYSTAL SWAMP", "", false, function(bool)
  977. _G.autoFarmingEgg4 = bool
  978. autoFarmEgg4()
  979. end)
  980. tab2.newToggle("CLOUD ISLANDS", "", false, function(bool)
  981. _G.autoFarmingEgg5 = bool
  982. autoFarmEgg5()
  983. end)
  984. tab2.newToggle("THE UNDERWORLD", "", false, function(bool)
  985. _G.autoFarmingEgg6 = bool
  986. autoFarmEgg6()
  987. end)
  988. tab2.newToggle("ATLANTIS", "", false, function(bool)
  989. _G.autoFarmingEgg7 = bool
  990. autoFarmEgg7()
  991. end)
  992. tab2.newToggle("OCEAN DEPTHS", "", false, function(bool)
  993. _G.autoFarmingEgg8 = bool
  994. autoFarmEgg8()
  995. end)
  996. tab2.newToggle("THE COSMOS", "", false, function(bool)
  997. _G.autoFarmingEgg9 = bool
  998. autoFarmEgg9()
  999. end)
  1000. tab2.newToggle("TIKI ISLAND", "", false, function(bool)
  1001. _G.autoFarmingEgg10 = bool
  1002. autoFarmEgg10()
  1003. end)
  1004. tab2.newToggle("ENCHANTED GARDEN", "", false, function(bool)
  1005. _G.autoFarmingEgg11 = bool
  1006. autoFarmEgg11()
  1007. end)
  1008. tab2.newToggle("DRACO'S TOWER", "", false, function(bool)
  1009. _G.autoFarmingEgg12 = bool
  1010. autoFarmEgg12()
  1011. end)
  1012. tab2.newToggle("CRYSTAL CAVE", "", false, function(bool)
  1013. _G.autoFarmingEgg13 = bool
  1014. autoFarmEgg13()
  1015. end)
  1016. tab2.newToggle("SUMMER EVENT", "", false, function(bool)
  1017. _G.autoFarmingEgg24 = bool
  1018. autoFarmEgg24()
  1019. end)
  1020. tab2.newToggle("WINTER EVENT", "", false, function(bool)
  1021. _G.autoFarmingEgg25 = bool
  1022. autoFarmEgg25()
  1023. end)
  1024. tab2.newToggle("ELEMENT EVENT", "", false, function(bool)
  1025. _G.autoFarmingEgg26 = bool
  1026. autoFarmEgg26()
  1027. end)
  1028.  
  1029. -- Boss
  1030. local tab3 = lib.newTab("BOSS", "rbxassetid://4483345998")
  1031. tab3.newToggle("NAGA", "", false, function(bool)
  1032. _G.autoFarmingBoss14 = bool
  1033. autoFarmBoss14()
  1034. end)
  1035. tab3.newToggle("LAVA MONSTER", "", false, function(bool)
  1036. _G.autoFarmingBoss15 = bool
  1037. autoFarmBoss15()
  1038. end)
  1039. tab3.newToggle("GHOST PIRATE", "", false, function(bool)
  1040. _G.autoFarmingBoss16 = bool
  1041. autoFarmBoss16()
  1042. end)
  1043. tab3.newToggle("TIKI", "", false, function(bool)
  1044. _G.autoFarmingBoss17 = bool
  1045. autoFarmBoss17()
  1046. end)
  1047. tab3.newToggle("THE FROZEN ANCIENT", "", false, function(bool)
  1048. _G.autoFarmingBoss18 = bool
  1049. autoFarmBoss18()
  1050. end)
  1051. tab3.newToggle("THE BIG 100M", "", false, function(bool)
  1052. _G.autoFarmingBoss19 = bool
  1053. autoFarmBoss19()
  1054. end)
  1055. tab3.newToggle("THE ETHEREAL EVERIA", "", false, function(bool)
  1056. _G.autoFarmingBoss20 = bool
  1057. autoFarmBoss20()
  1058. end)
  1059. tab3.newToggle("HORNET", "", false, function(bool)
  1060. _G.autoFarmingBoss21 = bool
  1061. autoFarmBoss21()
  1062. end)
  1063. tab3.newToggle("ICE SERPENT", "", false, function(bool)
  1064. _G.autoFarmingBoss23 = bool
  1065. autoFarmBoss22()
  1066. end)
  1067. tab3.newToggle("SPHINX", "", false, function(bool)
  1068. _G.autoFarmingBoss23 = bool
  1069. autoFarmBoss23()
  1070. end)
  1071.  
  1072. -- Misc
  1073. local tab4 = lib.newTab("MISC", "rbxassetid://4483345998")
  1074. tab4.newLabel("AUTO PLANT AND HATCH")
  1075. tab4.newDropdown("SELECT EGG", "", {"1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "12.1", "SummerEvent1", "WinterEvent1", "EleEgg1"}, function(name)
  1076. _G.selectingEgg = name
  1077. print(_G.selectingEgg)
  1078. end)
  1079. tab4.newToggle("AUTO PLANT EGG", "", false, function(bool)
  1080. _G.autoPlantingEgg = bool
  1081. autoPlant()
  1082. end)
  1083. tab4.newToggle("AUTO HATCH EGG", "", false, function(bool)
  1084. _G.autoHatchingEgg = bool
  1085. autoHatch()
  1086. end)
  1087.  
  1088. tab4.newLabel("TELEPORT")
  1089. tab4.newButton("FROZEN VALLEY OBBY CHEST", "Teleport to Frozen Valley Obby Chest", function()
  1090. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-560.960022, -48.5579987, 2984.28491, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1091. end)
  1092. tab4.newButton("SUMMER EVENT ZONE", "Teleport to Summer Event Zone", function()
  1093. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(3358.14111, -158.889023, 216.56218, -0.422592998, 0, -0.906319618, 0, 1, 0, 0.906319618, 0, -0.422592998)
  1094. end)
  1095. tab4.newButton("WINTER EVENT ZONE", "Teleport to Winter Event Zone", function()
  1096. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(5467.65039, -166.132172, 3141.85791, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  1097. end)
  1098. tab4.newLabel("UNLOCK ZONE")
  1099. tab4.newButton("WINTER EVENT ZONE", "Unlock Winter Event." ,function()
  1100.  
  1101. game:GetService("ReplicatedStorage").Remotes.Events.ZonesRE:FireServer("PurchaseZone", "WinterEventZone")
  1102. end)
  1103. tab4.newButton("SUMMER EVENT ZONE", "Unlock Summer Event.", function()
  1104. game:GetService("ReplicatedStorage").Remotes.Events.ZonesRE:FireServer("PurchaseZone", "SummerEventZone")
  1105. end)
  1106. tab4.newButton("FROZEN VALLEY OBBY", "Unlock Frozen Valley Obby.", function()
  1107. game:GetService("ReplicatedStorage").Remotes.Events.ZonesRE:FireServer("PurchaseZone", "Zone3S1")
  1108. end)
  1109.  
  1110. tab4.newLabel("OTHER")
  1111. tab4.newToggle("AUTO CHEST REWARD", "", false, function(bool)
  1112. _G.autoOpenChest = bool
  1113. autoOpenChests()
  1114. end)
  1115. tab4.newToggle("IGNACIO QUEST", "", false, function(bool)
  1116. _G.autoQC = bool
  1117. autoQCs()
  1118. end)
  1119.  
  1120. local tab5 = lib.newTab("BACKPACK", "rbxassetid://4483345998")
  1121. tab5.newLabel("BACKPACKS")
  1122. tab5.newButton("Backpack 1", "PRICE: 1200 • CAPACITY: 480", function()
  1123. game:GetService("ReplicatedStorage").Remotes.Events.BuyBackpackEvent:FireServer("1")
  1124. game:GetService("ReplicatedStorage").Remotes.Events.EquipBackpackEvent:FireServer("1")
  1125. end)
  1126. tab5.newButton("Backpack 2", "PRICE: 3000 • CAPACITY: 1080", function()
  1127. game:GetService("ReplicatedStorage").Remotes.Events.BuyBackpackEvent:FireServer("2")
  1128. game:GetService("ReplicatedStorage").Remotes.Events.EquipBackpackEvent:FireServer("2")
  1129. end)
  1130. tab5.newButton("Backpack 3", "PRICE: 28.8K • CAPACITY: 6000", function()
  1131. game:GetService("ReplicatedStorage").Remotes.Events.BuyBackpackEvent:FireServer("3")
  1132. game:GetService("ReplicatedStorage").Remotes.Events.EquipBackpackEvent:FireServer("3")
  1133. end)
  1134. tab5.newButton("Backpack 4", "PRICE: 400K • CAPACITY: 50K", function()
  1135. game:GetService("ReplicatedStorage").Remotes.Events.BuyBackpackEvent:FireServer("4")
  1136. game:GetService("ReplicatedStorage").Remotes.Events.EquipBackpackEvent:FireServer("4")
  1137. end)
  1138. tab5.newButton("Backpack 5", "PRICE: 5M • CAPACITY: 307K", function()
  1139. game:GetService("ReplicatedStorage").Remotes.Events.BuyBackpackEvent:FireServer("5")
  1140. game:GetService("ReplicatedStorage").Remotes.Events.EquipBackpackEvent:FireServer("5")
  1141. end)
  1142. tab5.newButton("Backpack 6", "PRICE: 60M • CAPACITY: 5M", function()
  1143. game:GetService("ReplicatedStorage").Remotes.Events.BuyBackpackEvent:FireServer("6")
  1144. game:GetService("ReplicatedStorage").Remotes.Events.EquipBackpackEvent:FireServer("6")
  1145. end)
  1146. tab5.newButton("Backpack 7", "PRICE: 200M • CAPACITY: 160M", function()
  1147. game:GetService("ReplicatedStorage").Remotes.Events.BuyBackpackEvent:FireServer("7")
  1148. game:GetService("ReplicatedStorage").Remotes.Events.EquipBackpackEvent:FireServer("7")
  1149. end)
  1150. tab5.newButton("Backpack 8", "PRICE: 2.5B • CAPACITY: 1.26B", function()
  1151. game:GetService("ReplicatedStorage").Remotes.Events.BuyBackpackEvent:FireServer("8")
  1152. game:GetService("ReplicatedStorage").Remotes.Events.EquipBackpackEvent:FireServer("8")
  1153. end)
  1154. tab5.newButton("Backpack 9", "PRICE: 20B • CAPACITY: 10B", function()
  1155. game:GetService("ReplicatedStorage").Remotes.Events.BuyBackpackEvent:FireServer("9")
  1156. game:GetService("ReplicatedStorage").Remotes.Events.EquipBackpackEvent:FireServer("9")
  1157. end)
  1158. tab5.newButton("Backpack 10", "PRICE: 160B • CAPACITY: 80B", function()
  1159. game:GetService("ReplicatedStorage").Remotes.Events.BuyBackpackEvent:FireServer("10")
  1160. game:GetService("ReplicatedStorage").Remotes.Events.EquipBackpackEvent:FireServer("10")
  1161. end)
  1162. tab5.newButton("Backpack 11", "PRICE: 1.3T • CAPACITY: 646B", function()
  1163. game:GetService("ReplicatedStorage").Remotes.Events.BuyBackpackEvent:FireServer("11")
  1164. game:GetService("ReplicatedStorage").Remotes.Events.EquipBackpackEvent:FireServer("11")
  1165. end)
  1166. tab5.newButton("Backpack 12", "PRICE: 10.3T • CAPACITY: 5.2T", function()
  1167. game:GetService("ReplicatedStorage").Remotes.Events.BuyBackpackEvent:FireServer("12")
  1168. game:GetService("ReplicatedStorage").Remotes.Events.EquipBackpackEvent:FireServer("12")
  1169. end)
  1170. tab5.newButton("Backpack 13", "PRICE: 164T • CAPACITY: 82.4T", function()
  1171. game:GetService("ReplicatedStorage").Remotes.Events.BuyBackpackEvent:FireServer("13")
  1172. game:GetService("ReplicatedStorage").Remotes.Events.EquipBackpackEvent:FireServer("13")
  1173. end)
  1174. tab5.newButton("Backpack 14", "PRICE: 13.5q • CAPACITY: 2.70q", function()
  1175. game:GetService("ReplicatedStorage").Remotes.Events.BuyBackpackEvent:FireServer("14")
  1176. game:GetService("ReplicatedStorage").Remotes.Events.EquipBackpackEvent:FireServer("14")
  1177. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement