How To Make A Note System?

So in these games…
https://www.roblox.com/games/6209557373/a-dream-youve-had-before
https://www.roblox.com/games/5889471811/your-last-thoughts-at-the-end-of-time
https://www.roblox.com/games/6128349679/secrets-of-myriad-park

They all have a note system or some type of system where you pay robux and you can put something on a wall and customize it or write on it.

I am looking for a quick tutorial or yt video or just a model I could use to help make a system like this. Thank you!

5 Likes

It depends on what way you’d wanna use the pay the robux (Dev Products, Gamepasses, etc)

This service handles all of the purchases & in-game transactions that players buy with robux, you can look at the functions/events that have PromptPurchase in them

After you make your purchase, you can implement a check if they have purchased the item or not & if they have, you can add your GUI’s note to whatever you want to enter using a TextBox I presume

local MarketService = game:GetService("MarketPlaceService")
local ProductID = 00000

MarketService.PromptPurchaseFinished:Connect(function(Player, ProductID, PurchaseCheck)
    if PurchaseCheck == true then
        --Create your note system here
    end
end)
3 Likes

We can tell you how to do it, however we aren’t supposed to spoon-feed you our code. Are you familiar whatsoever with scripting? If not, I’d suggest you hire a scripter, or commission one.

2 Likes

I Could show you how to make one on discord?

5 Likes