YT_PatricioTGN

idk

Aug 20th, 2022
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. // VIEW YOUR AVATAR THUMBNAIL CUSTOMIZATIONS: https://avatar.roblox.com/v1/avatar/thumbnail-customizations
  2.  
  3. // doing ajax because easy csrf handling w/their middleware lol
  4. $.ajax({
  5. method: "POST",
  6. url: "https://avatar.roblox.com/v1/avatar/thumbnail-customization",
  7. contentType: "application/json",
  8. data: JSON.stringify({
  9. "camera": {
  10. // Ranges are inclusive.
  11. "distanceScale": 2, // 0.5 to 4
  12. "fieldOfViewDeg": 30, // 15 to 45
  13. "xRotDeg": 0, // -20 to 20
  14. "yRotDeg": 0 // -60 to 60
  15. },
  16. "emoteAssetId": 0, // emote asset id
  17. // idleAnimationAssetId used to exist here, it has since been removed.
  18. "thumbnailType": 1 // 1 = Closeup (headshot), 2 = FullBody (bodyshot). Closeup and FullBody can have different configurations.
  19. })
  20. });
Add Comment
Please, Sign In to add comment