How to make a custom roblox avatar? Script in description!

Channel:
Subscribers:
11,600
Published on ● Video Link: https://www.youtube.com/watch?v=NMNE5BflVB8



Duration: 9:08
159 views
1


$.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
"fieldOfViewDeg": 30, // 15 to 45
"xRotDeg": 0, // -20 to 20
"yRotDeg": 0 // -60 to 60
},
"emoteAssetId": 0, // emote asset id
// idleAnimationAssetId used to exist here, it has since been removed.
"thumbnailType": 1 // 1 = Closeup (headshot), 2 = FullBody (bodyshot). Closeup and FullBody can have different configurations.
})
});