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)