Hello,
I’m currently trying to allow a user to create a Place via a button. However, I’m getting the error “HTTP 403 (TemplatePlaceCannotBeCopied).” I’ve made sure copying is enabled for this Place. The place is within a Universe. Here’s my code:
Button code:
local player = game.Players.LocalPlayer
local newPlace = game.ReplicatedStorage.Functions.CreatePlace:InvokeServer(player.Name.."'s Place", player.Name.."'s Place")
Function code:
functions.CreatePlace.OnServerInvoke = function(player, name, description)
local newPlace = game:GetService("AssetService"):CreatePlaceAsync(name, 0, description) -- blanked out PlaceId for this post
return newPlace
end
