Token导航 LogoToken导航TokenDH.com
待分类只读github未标认证来源可访问许可证需确认审计提醒

roblox-monetizationRoblox 货币化

Agent Skill

roblox-monetization 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,443

周安装

62

GitHub Stars

2

下载量

506
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:roblox-monetization(Roblox 货币化)
来源仓库:https://github.com/sentinelcore/roblox-skills
仓库路径:skills/roblox-monetization
安装命令:
npx skills add https://github.com/sentinelcore/roblox-skills --skill roblox-monetization
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/sentinelcore/roblox-skills --skill roblox-monetization

简介

roblox-monetization 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在罗布乐思货币化相关项目中围绕仓库状态进行整理。
  • 支持在 Codex、Claude、Cursor、Gemini CLI 中使用。
  • 安装前建议确认权限范围及是否触发敏感操作如命令执行。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

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

SystemUse ForRepeatable?Min Price
Game PassPermanent perks/accessNo (one-time)1 Robux
Developer ProductConsumables, currency, boostsYes (unlimited)1 Robux
UGC ItemAvatar marketplace salesN/A1 Robux
Premium PayoutPassive playtime incomeAutomaticNo setup

1. Game Passes

One-time purchases granting permanent perks. Player pays once per game per pass.

Dashboard Setup

  1. create.roblox.com → select experience → Monetization → Passes
  2. Create a Pass → upload 512×512 PNG icon, set name, description, price
  3. Save → note the Pass ID

Server Script

local MarketplaceService = game:GetService("MarketplaceService")
local Players = game:GetService("Players")

local PASS_ID = 000000 -- your Pass ID

-- Check ownership on join
Players.PlayerAdded:Connect(function(player)
    local success, hasPass = pcall(function()
        return MarketplaceService:UserOwnsGamePassAsync(player.UserId, PASS_ID)
    end)
    if success and hasPass then
        -- grant perk
    end
end)

-- Prompt purchase (call from server)
local function promptPass(player)
    MarketplaceService:PromptGamePassPurchase(player, PASS_ID)
end

-- Grant immediately after purchase
MarketplaceService.PromptGamePassPurchaseFinished:Connect(function(player, passId, purchased)
    if purchased and passId == PASS_ID then
        -- grant perk
    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

  1. Creator Hub → experience → Monetization → Developer Products
  2. Create a Developer Product → set name, description, icon, price
  3. 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 -- your Product ID
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
        -- Persist to DataStore FIRST — if server crashes after this line, coins are safe
        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 -- Roblox will retry
        end
        -- Now safe to update in-memory value (leaderstats, etc.)
    end

    return Enum.ProductPurchaseDecision.PurchaseGranted
end

MarketplaceService.ProcessReceipt = processReceipt

-- Prompt purchase
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

  1. Design item (follow Roblox mesh/texture specs)
  2. Creator Hub → Avatar Items → Create → upload, set category, tags, price
  3. Submit for moderation (typically 1–3 business days)
  4. Item goes live and appears in Marketplace

Earning Rates

Item TypeCreator Cut
Clothing (t-shirts, shirts, pants)70% of sale
UGC Accessories30% (40% with Premium subscription)
Limited UGC with resaleUp 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.):

-- Inside ProcessReceipt, after DataStore save succeeds
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:

  1. Creator Hub → DevEx (Developer Exchange)
  2. Submit exchange request
  3. Roblox reviews request (typically 1–2 weeks)
  4. 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

MistakeFix
Ownership check in LocalScriptMove to server Script — client checks can be exploited
ProcessReceipt throws an errorWrap logic in pcall; always return a decision enum
Not saving purchase to DataStorePlayer loses item on crash — persist before returning PurchaseGranted
Multiple ProcessReceipt handlersOnly one allowed per server — combine all product logic in one function
Double-granting on receipt retryUse receiptInfo.PurchaseId as a DataStore key to detect already-processed receipts
Selling UGC without program accessApply to UGC program first; uploads will be rejected otherwise
Price below platform minimumMinimum is 1 Robux for most item types
DevEx blocked despite enough RobuxCheck all eligibility: age 13+, verified email, no violations, Premium subscription, earned (not purchased) Robux

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.7%
按下载量换算176

Claude

29.88%
按下载量换算151

Cursor

19.02%
按下载量换算96

Gemini CLI

8.1%
按下载量换算41

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills