CreateAssetResult
Indicates the outcome of a call to AssetService:CreateAssetAsync() or AssetService:CreateAssetVersionAsync().
Items 4
| History | Name | Value | Description | |
|---|---|---|---|---|
| 652 | Success | 1 | The asset was created or updated successfully. | |
| 652 | PermissionDenied | 2 | The caller does not have permission to create or update an asset in the target inventory. | |
| 652 | UploadFailed | 3 | The upload request to the Roblox asset service failed for a reason other than a permission error. | |
| 652 | Unknown | 4 | An unexpected error occurred and the operation could not complete. |
Description
CreateAssetResult is returned as the first element of the tuple from
AssetService:CreateAssetAsync() and
AssetService:CreateAssetVersionAsync(). It indicates whether the asset
was created or updated successfully, or why the operation failed. On success,
the second tuple element is the new asset ID (for CreateAssetAsync) or the
new version number (for CreateAssetVersionAsync); on failure, the second
element is a string with additional diagnostic information.
History 5
- 652 Add UploadFailed
- 652 Add Unknown
- 652 Add Success
- 652 Add PermissionDenied
- 652 Add CreateAssetResult