ADVERTISEMENTREMOVE ADS
Call of mini buy all skins (Have the gems first)
14,558 views
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)
Tested with
ADVERTISEMENTREMOVE ADS
30 Lines • 951 Bytes
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
ADVERTISEMENTREMOVE ADS





Comments