| name | roblox-monetization |
| description | Use when developing Roblox games or experiences and need to earn Robux through Game Passes, Developer Products, UGC avatar items, or Premium Payouts โ covers both Studio scripting and Creator Hub dashboard setup. |
Roblox Monetization
Overview
End-to-end guide for earning Robux legitimately through Roblox's monetization systems. Covers dashboard configuration and Lua scripting for both developers and designers.
Quick Reference
| System | Use For | Repeatable? | Min Price |
|---|
| Game Pass | Permanent perks/access | No (one-time) | 1 Robux |
| Developer Product | Consumables, currency, boosts | Yes (unlimited) | 1 Robux |
| UGC Item | Avatar marketplace sales | N/A | 1 Robux |
| Premium Payout | Passive playtime income | Automatic | No setup |
1. Game Passes
One-time purchases granting permanent perks. Player pays once per game per pass.
Dashboard Setup
- create.roblox.com โ select experience โ Monetization โ Passes
- Create a Pass โ upload 512ร512 PNG icon, set name, description, price
- Save โ note the Pass ID
Server Script
local MarketplaceService = game:GetService("MarketplaceService")
local Players = game:GetService("Players")
local PASS_ID = 000000
Players.PlayerAdded:Connect(function(player)
local success, hasPass = pcall(function()
return MarketplaceService:UserOwnsGamePassAsync(player.UserId, PASS_ID)
end)
if success and hasPass then
end
end)
local function promptPass(player)
MarketplaceService:PromptGamePassPurchase(player, PASS_ID)
end
MarketplaceService.PromptGamePassPurchaseFinished:Connect(function(player, passId, purchased)
if purchased and passId == PASS_ID then
end
end)
Always run on server (Script), never LocalScript โ client-side ownership checks can be spoofed.
2. Developer Products
Repeatable purchases โ players can buy unlimited times. Use for coins, potions, boosts, in-game currency.
Dashboard Setup
- Creator Hub โ experience โ Monetization โ Developer Products
- Create a Developer Product โ set name, description, icon, price
- Note the Product ID
Server Script
local MarketplaceService = game:GetService("MarketplaceService")
local DataStoreService = game:GetService("DataStoreService")
local Players = game:GetService("Players")
local PRODUCT_ID = 000000
local coinStore = DataStoreService:GetDataStore("PlayerCoins")
local function processReceipt(receiptInfo)
local player = Players:GetPlayerByUserId(receiptInfo.PlayerId)
if not player then
return Enum.ProductPurchaseDecision.NotProcessedYet
end
if receiptInfo.ProductId == PRODUCT_ID then
local ok, err = pcall(function()
coinStore:UpdateAsync(tostring(player.UserId), function(current)
return (current or 0) + 100
end)
end)
if not ok then
warn("DataStore failed:", err)
return Enum.ProductPurchaseDecision.NotProcessedYet
end
end
return Enum.ProductPurchaseDecision.PurchaseGranted
end
MarketplaceService.ProcessReceipt = processReceipt
local function promptProduct(player)
MarketplaceService:PromptProductPurchase(player, PRODUCT_ID)
end
Critical rules for ProcessReceipt:
- Must return
PurchaseGranted or NotProcessedYet โ never error silently
- Persist to DataStore before returning โ crashes can cause loss
- Return
NotProcessedYet on DataStore failure so Roblox retries the receipt
- Only one
ProcessReceipt handler allowed per server; combine all product IDs inside it
- Roblox may call
ProcessReceipt more than once for the same purchase โ use receiptInfo.PurchaseId as a dedup key if double-granting is a concern
3. UGC / Avatar Items
Sell clothing, accessories, and bundles in the Roblox Marketplace.
Requirements
- UGC Program access โ apply at roblox.com/create/ugc
- ID verification completed on your account
- Roblox Studio or Blender for 3D mesh items
Workflow
- Design item (follow Roblox mesh/texture specs)
- Creator Hub โ Avatar Items โ Create โ upload, set category, tags, price
- Submit for moderation (typically 1โ3 business days)
- Item goes live and appears in Marketplace
Earning Rates
| Item Type | Creator Cut |
|---|
| Clothing (t-shirts, shirts, pants) | 70% of sale |
| UGC Accessories | 30% (40% with Premium subscription) |
| Limited UGC with resale | Up to 70% |
4. Communicating Purchase State to the Client
After granting a product server-side, notify the client via a RemoteEvent so the UI can update (show a boost timer, unlock a button, etc.):
local NotifyClient = game:GetService("ReplicatedStorage").Remotes.PurchaseGranted
local player = Players:GetPlayerByUserId(receiptInfo.PlayerId)
if player then
NotifyClient:FireClient(player, { productId = receiptInfo.ProductId })
end
5. Premium Payouts
Passive Robux from Roblox Premium subscribers spending time in your game. No setup required.
- Roblox tracks Premium member engagement automatically
- You receive a share of the Premium Payout Pool monthly, proportional to Premium playtime
- View earnings: Creator Hub โ Analytics โ Monetization โ Premium Payouts
Maximize Premium Payouts
- Build longer session loops (progression, story, replayability)
- Add Premium-exclusive cosmetics or bonuses to attract Premium players
DevEx: Robux โ Real Money
Eligibility requirements:
- 30,000+ Robux earned (purchased Robux do not count)
- Age 13 or older
- Verified email address on your Roblox account
- No active account violations
- Roblox Premium subscription
Steps:
- Creator Hub โ DevEx (Developer Exchange)
- Submit exchange request
- Roblox reviews request (typically 1โ2 weeks)
- Paid via Tipalti at approximately $0.0035 per Robux (~$122 per 35,000 Robux)
Tipalti: You must create and verify a Tipalti account separately before your first payout. Set this up early to avoid delays.
Common Mistakes
| Mistake | Fix |
|---|
| Ownership check in LocalScript | Move to server Script โ client checks can be exploited |
ProcessReceipt throws an error | Wrap logic in pcall; always return a decision enum |
| Not saving purchase to DataStore | Player loses item on crash โ persist before returning PurchaseGranted |
Multiple ProcessReceipt handlers | Only one allowed per server โ combine all product logic in one function |
| Double-granting on receipt retry | Use receiptInfo.PurchaseId as a DataStore key to detect already-processed receipts |
| Selling UGC without program access | Apply to UGC program first; uploads will be rejected otherwise |
| Price below platform minimum | Minimum is 1 Robux for most item types |
| DevEx blocked despite enough Robux | Check all eligibility: age 13+, verified email, no violations, Premium subscription, earned (not purchased) Robux |