Hello everyone! I know probably all of us were excited for Parcel’s new Roblox hub.
Some of us might be using @Gandhi20’s Free Products System, which is currently using the old Roblox hub.
That’s why we at Atelier made our own Free Products System, using the new Roblox hub.
How to set up:
- Locate the ParcelLoader script in
ServerScriptService
and change the loader ID to18805948674
.
– If you are already using @Gandhi20’s Free Products System, your setup is already complete –
- Insert a
ModuleScript
inReplicatedStorage
and rename it toFreeProducts
.
- Add this code to the module.
local productIds = {
"product id here",
}
local function isFree(productId)
if table.find(productIds, productId) then
return true
else
return false
end
end
return isFree
- Done!