Roblox has recently restricted the option to set the price of developer products to zero. In response, I’ve dedicated time to creating a customized hub that not only addresses this limitation but also integrates seamlessly with the Gift System.
Free Products System
The installation process is incredibly straightforward, making it a user-friendly solution.
-
Need support? Ping
gandhi20
in the Parcel server! (#general)
How to setup:
-
Change the ID to
15857917900
, this will fetch the forked Module.
-
Make a ModuleScript called
FreeProducts
in ReplicatedStorage!
-
Put this code inside the ModuleScript!
local productIds = {
"ProductId1",
"ProductId2",
"ProductId3",
-- ...
}
function isFree(productId: string)
for i, id in ipairs(productIds) do
if id == productId then
return true
end
end
return false
end
return {
isFree = isFree
}
-
Put the Product Ids of the products that you want to be FREE in the ModuleScript!
-
That’s all, thank you for using the system!