Advertisement
aesnike

auto sell

Oct 28th, 2024 (edited)
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. getgenv().Rarity_To_Sell = {
  2. ['Uncommon'] = {
  3. ['Sell'] = true;
  4. ['MaxAmount'] = 9999;
  5. ['Items'] = {
  6. ['chest'] = true;
  7. ['helmet'] = true;
  8. ['ability'] = true;
  9. ['ring'] = true;
  10. ['weapon'] = true;
  11. }
  12. },
  13. ['Common'] = {
  14. ['Sell'] = true;
  15. ['MaxAmount'] = 9999;
  16. ['Items'] = {
  17. ['chest'] = true;
  18. ['helmet'] = true;
  19. ['ability'] = true;
  20. ['ring'] = true;
  21. ['weapon'] = true;
  22. }
  23. },
  24. ['Rare'] = {
  25. ['Sell'] = true;
  26. ['MaxAmount'] = 9999;
  27. ['Items'] = {
  28. ['chest'] = false;
  29. ['helmet'] = false;
  30. ['ability'] = true;
  31. ['ring'] = true;
  32. ['weapon'] = true;
  33. }
  34. },
  35. ['Epic'] = {
  36. ['Sell'] = true;
  37. ['MaxAmount'] = 9999;
  38. ['Items'] = {
  39. ['chest'] = false;
  40. ['helmet'] = false;
  41. ['ability'] = true;
  42. ['ring'] = false;
  43. ['weapon'] = true;
  44. }
  45. },
  46. ['Legendary'] = {
  47. ['Sell'] = false;
  48. ['MaxAmount'] = 9999;
  49. ['Items'] = {
  50. ['chest'] = false;
  51. ['helmet'] = false;
  52. ['ability'] = false;
  53. ['ring'] = false;
  54. ['weapon'] = false;
  55. }
  56. }
  57. }
  58.  
  59. loadstring(game:HttpGet("https://api.luarmor.net/files/v3/loaders/2cce29d7ce170b9fec29eea7a39462d2.lua"))()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement