Advertisement
Gerard_games

Get list script

Oct 2nd, 2021 (edited)
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. _G.NoExclusive = false -- true = ignores exclusives, false = exclusives are included
  2.  
  3. local Library = require(game:GetService("ReplicatedStorage").Framework.Library)
  4. local eeee = {
  5. ["thumbnail"] = {
  6. ['Nums'] = {
  7. ['๐Ÿงป Normal '] = '-1',
  8. ['๐ŸŒˆ Rainbow '] = '-3'
  9. },
  10. },
  11. ["goldenThumbnail"] = {
  12. ['Nums'] = {
  13. ['๐Ÿ‘‘ Golden '] = '-2'
  14. },
  15. },
  16. ["darkMatterThumbnail"] = {
  17. ['Nums'] = {
  18. ['๐ŸŒŒ Dark Matter '] = '-4'
  19. },
  20. }
  21. }
  22.  
  23. local IDsInEggs = {}
  24. for i,v in pairs(Library.Directory.Eggs) do
  25. if v.drops and typeof(v.drops) == 'table' then
  26. for a,b in pairs(v.drops) do
  27. table.insert(IDsInEggs, b[1])
  28. end
  29. end
  30. end
  31.  
  32. local AllPets = {}
  33. for i, v in pairs(Library.Directory.Pets) do
  34. if (v.rarity == 'Exclusive') or (table.find(IDsInEggs, i) and not string.find(v.name, "Pog")) then
  35. if v.rarity ~= 'Exclusive' then
  36. for a,b in pairs(eeee) do
  37. if v[a] and v[a] ~= "" then
  38. for c,d in pairs(b.Nums) do
  39. AllPets[i..d] = i..d
  40. end
  41. end
  42. end
  43. elseif not _G.NoExclusive then
  44. AllPets[i..'-1'] = i..'-1'
  45. end
  46. end
  47. end
  48.  
  49. for i,v in pairs(Library.Save.Get().Collection) do
  50. AllPets[v] = nil
  51. end
  52. local petsneeded = "```lua\n_G.TableOfPets = {\n"
  53. for i,v in pairs(AllPets) do
  54. print(v)
  55. petsneeded = petsneeded .. "'" .. v .. "'".. ";\n"
  56. end
  57. petsneeded = petsneeded .. "}\nloadstring(game:HttpGet('https://pastebin.com/raw/VJi5H8Gd'))()```"
  58.  
  59. setclipboard(petsneeded)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement