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

Is there a way to use SavePlaceAsync() that doesn't return errors? [closed]

Asked by 6 years ago

I want to save the place when the remote event is called. Currently I get the error HTTP 403 (HTTP/1.1 403 Forbidden) [Yes I am testing in-game not in studio] [Yes 'Allow this place to be copied as a template using the Create Place API in your game.' and 'Allow this place to be updated using the Save Place API in your game.' are enabled.] [Yes this is a server script] [The script is in ServerScriptService]

01local ReplicatedStorage = game:GetService("ReplicatedStorage")
02local saveWorldEvent = Instance.new("RemoteEvent", ReplicatedStorage)
03saveWorldEvent.Name = "SaveWorldEvent"
04local canSave = game.ServerStorage.canSave
05 
06function savePlace(player)
07    print("Save Requested")
08    if canSave.Value == true then
09        game:GetService("AssetService"):SavePlaceAsync()
10        canSave.Value = false
11        local chat = game:GetService("Chat")
12        chat:Chat(script.Parent, "Saving World")
13        print("World Saving")
14        wait(3)
15        chat:Chat(script.Parent, "World Saved")
View all 26 lines...

Marked as Duplicate by User#19524

This question has been asked before, and already has an answer. If those answers do not fully address your question, then please ask a new question here.

Why was this question closed?