ADVERTISEMENTREMOVE ADS
Game icon

Call of mini buy all skins (Have the gems first)

Script preview thumbnail
Script Preview

Description

Buys all the skins in the game, you need to have the gems first from my gem script in my profile
(Execute it when you load into main lobby)

ADVERTISEMENTREMOVE ADS
30 Lines • 951 Bytes
Raw
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 ===")
ADVERTISEMENTREMOVE ADS

Comments

0 comments
to add a comment
Loading comments
ADVERTISEMENTREMOVE ADS