Рет қаралды 339
Follow my profile 🤯:www.roblox.com...
Script:
-- script made by coolgo_lite😎
-- like and subscribe
local modelID = 10441045920 -- Your model ID
local starterPack = game:GetService("StarterPack")
-- Load the model from Roblox
local success, model = pcall(function()
return game:GetService("InsertService"):LoadAsset(modelID)
end)
if success and model then
for _, item in ipairs(model:GetChildren()) do
if item:IsA("Tool") then
item.Parent = starterPack -- Add the model to StarterPack
end
end
else
warn("Failed to load the model. Please check the model ID.")
end