So i have a question. how to show only the head not the avatar thats all i want to ask pls help me!
script.Parent.ImageLabel.Image = "http://www.roblox.com/Thumbs/Avatar.ashx?x=420&y=420&username="..Game.Players.LocalPlayer.Name
thanks for your time
Make sure this script is in a LocalScript.
local player = game.Players.LocalPlayer local userid = player.UserId local label = script.Parent.ImageLabel label.Image = ("https://www.roblox.com/bust-thumbnail/image?userId="..userid.."&width=420&height=420&format=png")
For other formats read this post:
https://devforum.roblox.com/t/new-image-endpoints-that-can-be-used-in-game/28182