Looking for a way to remove profile picture thumbnail customization

Customized this a while back when it first initially released using some code in inspect element, and I am now looking for a way to revert these changes.
As an example, I would like to get my avatar to look exactly like the old Werewolf Idle, however I am unable to achieve this as I don’t know how to revert the modifications.
My avatar:
image
Werewolf Idle:
image

I would also like to revert this so I can go back to the old R6 thumbnail.

The code I used:

/*
!! The feature that uses this endpoint has recently started rolling out to users.
!! See `App > Avatar > Profile Picture Editor`
!!
!! You may continue using this script, the only advantage is being able to
!! customize FullBody and Closeup independently.
*/



// ! VIEW YOUR CURRENT AVATAR THUMBNAIL CUSTOMIZATIONS: https://avatar.roblox.com/v1/avatar/thumbnail-customizations

/*
!! After your first time of setting a thumbnail configuration, the thumbnail of that type can not go back to how it was originally.
!! (i.e.: using Idle Animations, camera position). It can only be temporarily reverted if Roblox disables this feature again.
*/

// doing ajax because easy csrf handling w/their middleware lol
$.ajax({
  method: "POST",
  url: "https://avatar.roblox.com/v1/avatar/thumbnail-customization",
  contentType: "application/json",
  data: JSON.stringify({
    "camera": {
        // Ranges are inclusive.
        "distanceScale": 2, // 0.5 to 4 (Closeup) 1 (FullBody) - Camera distance scale from the avatar
        "fieldOfViewDeg": 30, // 15 to 45 - Camera Field Of View (FOV) in degrees, slight effect
        // xRotDeg used to exist here.
        "yRotDeg": 0 // -60 to 60 - Camera Y rotation in degrees
    },
    "emoteAssetId": 0, /* The assetId of an emote you own. 0 for no emote. 
    * example: 3696763549 in https://www.roblox.com/catalog/3696763549/Heisman-Pose
    */
    // idleAnimationAssetId used to exist here, it has since been removed.
    "thumbnailType": 1 /* The thumbnailType
    * 1 = Closeup (headshot)
    * 2 = FullBody (bodyshot)
    
    Closeup and Fullbody can have separate configurations.
    */
  })
}).then(data => console.log(data)).fail(error => alert(error.responseJSON.errors[0].message));
// Logs `{success:true}` if success or website alert if error.

did you follow this tutorial?

My code looks practically identical. I am looking for a way to revert, not a workaround. Hopefully Roblox actually adds a way to revert this

1 Like

Bump. Still looking for a way to do this

2 Likes