Problem with AssetService

Lately I have been making a horror game. But when I use AssetService to create a place for the player it returns an error saying Game:CreatePlace received and error: HTTP 500 (Internal Server Error). Any help is appreciated! Here is my code:

local gameId = "14237082226"
local AssetService = game:GetService("AssetService")

function Touched()
	local placeIdToSend = AssetService:CreatePlaceAsync("Test", gameId, "Description")
	print(placeIdToSend)
end

script.Parent.Touched:Connect(Touched)
1 Like

I guess, you cannot use AssetService:CreatePlaceAsync() method right now, i’ve checked out the DevForum about this and there:

So, you have to wait now until Roblox will fix this issue.

1 Like