Obtaining URL For UserThumbnail

Back in about December I’ve made a system that relies on the game.Players:GetUserThumbnailAsync() function to obtain a website URL for a player’s bust shot. After a recent change to this, the function no longer will return a website URL and rather another type of URL used inside of Roblox.
I’m trying to find an alternative means of obtaining a website URL for a player’s bust shot. The reason I’m looking for a way to do this is because the URL is shared outside of Roblox and the image cannot be viewed outside of the engine. I’ve been looking around for a few hours now and I’ve turned up short with ideas so any help would be appreciated dearly.

https://thumbnails.roblox.com/docs#!/Avatar/get_v1_users_avatar_bust

Send a GET request to https://thumbnails.roblox.com/v1/users/avatar-bust?userIds=USERID&size=420x420&format=Png&isCircular=false
And then parse the json and imageUrl would be the field you’re looking for

1 Like