Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

CreatePlaceAsync() is creating a HTTP 0 (HTTP 403) error?

Asked by 5 years ago

I don't understand why this error keeps showing, I enabled save and create API, and studio API.

My codes make this error:

 Game:CreatePlace received and error: HTTP 0 (HTTP 403)

My Code:

local StartPlaceCreation = game.ReplicatedStorage:WaitForChild("StartPlaceCreation")

local TeleportService = game:GetService("TeleportService")

local AssetService = game:GetService("AssetService")

local level = 2692727842

local function onStart(Player)
    print("It Works")
    print(Player.Name)

    AssetService:CreatePlaceAsync(Player.Name.." World", level)

    print(level)
end
StartPlaceCreation.OnServerEvent:Connect(onStart)

Answer this question