Error 403 AssetService:CreatePlaceAsync()

local AssetService = game:GetService("AssetService")

local description = "World generated by an user"

local TeleportService = game:GetService("TeleportService")

script.Parent.RemoteEvent.OnServerEvent:Connect(function(player,name)

local PlaceID = AssetService:CreatePlaceAsync(name,1240467309,description)

end)

Output error: Game:CreatePlace received and error: HTTP 403 (Forbidden).

How do I gain those permissions?

i meant The error message “HTTP 403 (Forbidden)” indicates that the request to create a place using the AssetService:CreatePlaceAsync() function is being blocked by the server due to insufficient permissions. This error occurs when the user making the request does not have the necessary authorization to perform the requested action. To resolve this issue, make sure that the user making the request has the necessary permissions to create places through the AssetService API.

I apologize for deleting the last message. I realized that I had forgotten to include something important.

The problem is, I enabled every feature including Create Place API and Save Place API in configure your place settings.