Skip to content

Instantly share code, notes, and snippets.

View Aeplexi's full-sized avatar

Aep Aeplexi

  • aep
  • 19:11 (UTC -04:00)
View GitHub Profile
// null values can be anything
let envelope = {
"Mode": "GameServer",
"Settings": {
"PlaceId": placeId,
"PlaceFetchUrl": `http://${domain}/${null}/`,
"UniverseId": universeId,
"MatchmakingContextId": 1,
"CreatorId": userId,
"CreatorType": "User",
@Aeplexi
Aeplexi / DeleteFromInv.js
Last active April 15, 2024 22:10
UGC Deleter Script
// Aeplexi
var ItemID = IDHERE // change this to the ID of the item you want to delete
$.ajax({
method: "POST",
url: "https://www.roblox.com/asset/delete-from-inventory",
contentType: "application/json",
data: JSON.stringify({
"assetId": ItemID
})