Howdy
So basically a while back I copy and pasted this code into my browser console to get emote profile’s early and I am trying to remove it
// ! 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.
Thats the code I used,
I am trying to get my r6 body shot back to how it originally was, it currently looks like this
whenever I try to go to r6, I have seen some workarounds but nothing to get the body shot back to how it originally was
hey there thanks for the reply, I have tried that but I am unable to fix the r6 pose as roblox forces you to change your body type to r15, and you are unable to get the camera angle back to its original position
that’s what I am trying to get it back to, do you see that camera angle?
Sadly the cam works only for R15 I also tested it out with R6 and it quickly changed my pose to a front profile as you said. Sadly that cannot be changed.
oh i have, I looked at different youtube videos and looked on the original github comments no one has been able to restore r6 to exactly how it was before