print("=== AUTO BUY ALL CHARACTER SKINS ===")
local charactersFolder = game:GetService("ReplicatedStorage").CHARACTERS
local shopRemote = game:GetService("ReplicatedStorage").ShopPurchase
-- Function to buy a skin
local function buySkin(characterName, skinName)
local args = {
"CHARACTER_SKINS",
"BUY",
skinName,
characterName
}
shopRemote:FireServer(unpack(args))
print("Purchased: " .. skinName .. " for " .. characterName)
end
-- Buy all skins for all characters
for _, character in pairs(charactersFolder:GetChildren()) do
local characterName = character.Name
print("Buying all skins for: " .. characterName)
-- Buy every skin in this character's folder
for _, skin in pairs(character:GetChildren()) do
buySkin(characterName, skin.Name)
wait(0.2) -- Small delay to avoid spamming
end
end
print("=== AUTO-BUY COMPLETED ===")
Comments
No comments yet
Be the first to share your thoughts!