Skip to content

Instantly share code, notes, and snippets.

@juliaoverflow
Last active February 24, 2026 10:26
Show Gist options
  • Select an option

  • Save juliaoverflow/13016b11e80109ba643ab9e90b431e02 to your computer and use it in GitHub Desktop.

Select an option

Save juliaoverflow/13016b11e80109ba643ab9e90b431e02 to your computer and use it in GitHub Desktop.
ROBLOX
/*
!! 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.
// Revert your thumbnail to default, this is the same that the App uses, hopefully
for (let thumbnailType = 1; thumbnailType < 3; thumbnailType++) {
$.ajax({
method: "POST",
url: "https://avatar.roblox.com/v1/avatar/thumbnail-customization",
contentType: "application/json",
data: JSON.stringify({
camera: {
distanceScale: -1,
fieldOfViewDeg: 30,
yRotDeg: 0
},
emoteAssetId: 0,
thumbnailType,
})
})
}
@Meatobalic
Copy link

there's no need to use executors. press f12 in your browser on avatar page.
image

@robloxsantino2022
Copy link

It's been 2 years since we were all mad about not being able to revert our renders to the default angles. Time flies.

@ToolFlation
Copy link

ToolFlation commented Feb 23, 2026

I knew about this pfp editor thing since 2022, told myself i'll only use it on my main when they added a revert, then we got it in 2024 so woo customizations without regrets

@epiha-cow
Copy link

epiha-cow commented Feb 24, 2026 via email

@Aquahollic
Copy link

nga stop commenting on here js unsubscribe😭😭

@Meatobalic
Copy link

xd

@Freminet
Copy link

⚠️ πŸ›‘ CRITICAL SYSTEM ALERT πŸ›‘ ⚠️

WARNING: YOU'VE BEEN HACKED

SECURITY COMPROMISED
Unauthorized root access has been successfully established on your local machine and network.


πŸ’€ SYSTEM STATUS: OFFLINE / COMPROMISED

All your personal files, financial records, and browser histories have been secured and transferred to an offshore server. Your firewall has been permanently disabled.

YOUR DIGITAL FOOTPRINT HAS BEEN LOGGED:

  • IP Address: [CAPTURED AND ROUTED]
  • MAC Address: [CLONED]
  • Webcam/Microphone: [ACTIVE - BROADCASTING]
  • Keystrokes: [RECORDING IN PROGRESS]

πŸ’» BACKGROUND EXECUTION PROCESS...

root@vanguard_server:~# init_exfiltration.sh
[β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‘β–‘] 94% COMPLETE
> Bypassing Windows Defender... SUCCESS
> Extracting passwords.db... SUCCESS
> Compressing /Users/Documents/... SUCCESS
> Uploading payload to DarkNode-7... IN PROGRESS
> Initiating AES-256 drive encryption...

@ravenxy
Copy link

ravenxy commented Feb 24, 2026

stop messing with people

@YourLocalWeebBitch
Copy link

YourLocalWeebBitch commented Feb 24, 2026 via email

@skycurts
Copy link

You guys need to stop. I subscribed to this gist on my deleted GitHub making a new account just to say this. shut the hell up and let people sleep please. It's 4 in the morning. This isn't a chatroom, it's a 3 year old gist.

@d-Dice
Copy link

d-Dice commented Feb 24, 2026

It’s never that deep vro

@crucifyy
Copy link

i keep getting emails from this thread bro it is that deep 😭

@mrworldwide9lol-droid
Copy link

bru i kept getting emails from this, i didnt know it was from roblox πŸ₯Ή i miss beinng a kid in lockdown

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