How to make a bulletin board for people to purchase for robux and write their own things

I want to figure out how to make a bulletin board that people can purchase and write their own things i’m also fairly new to devforum and don’t know how this requesting help thing works.

1 Like

Welcome to the dev forum!
For this category, you’re supposed to provide code for attempts you have tried, and elaborate a bit more.

To have some kind of bulletin board system, you have to think of it like this:
Player buys DevProduct, and has already provided the input
Runs function to create entry:
First, filter the text
Next, add an entry in a table in the datastore
Save the datastore and then return Enum.PurchaseProductDecision.PurchaseGranted

Datastore would look like this:

{
“Hello everyone”,
“How are you doing”,
“I was here”
}

Getting the bulletin boards:

Gets datastore
Iterates through the entries
Clones bulletin board model and then writes the text
Parenting the model to the workspace

I am currently on mobile so I cannot provide any actual code

2 Likes

Thank you! Sorry for the late response