AssetService Place creation help

Hello I am currently trying to make a game that relies on AssetService for place creation

I am trying to have a system like In meepcity Parties

I want the player to be able to build and write scripts (NOT IN LUA)

I just don’t know to use CreatePlaceInPlayerInventoryAsync or CreatePlaceAsync

I want the player to be able to come back to the place.
And have other people be able to join

CreatPlaceAsync() and CreatePlaceInPlayerInventoryAsync() copy a place from a template and place it in either your inventory or your players’ inventories respectively. From there, players can edit and put the game you put in their inventories online and do whatever. To do this, all you need is fill out all of the parameters like this:

game:GetService("AssetService"):CreatePlaceAsync("Test Place Name", 1111, "Test description.")

This creates a place from the template of the place ID 1111 with the name of “Test Place Name” and the description of “Test description.”


If you don’t want players to receive a copy of your place and instead mean to open up a private place in which everything is loaded in, consider using TeleportToPrivateServer() and then loading everything in with a DataStore. Then you can save the private server code to a datastore and have a menu for the people able to join the private server using the code.

Ok thanks for helping me I will do just that thank you!