Skip to content

Instantly share code, notes, and snippets.

@Aeplexi
Last active April 15, 2024 22:10
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save Aeplexi/34b6001db9f108aee047b59ce3d166fd to your computer and use it in GitHub Desktop.
Save Aeplexi/34b6001db9f108aee047b59ce3d166fd to your computer and use it in GitHub Desktop.
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
})
}).then(data => console.log(data)).fail(error => alert(error.responseJSON.errors[0].message));
// Logs `{success:true}` if success or website alert if error.
@GoTouchGrassNOW
Copy link

W script

@MossyJack347
Copy link

epic

@Aeplexi
Copy link
Author

Aeplexi commented Sep 23, 2023

hello

@CozmoDev
Copy link

top 10/10

@addinz
Copy link

addinz commented Apr 15, 2024

could you make it so you can delete multiple items at once?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment