I know this is against the rules since am not asking about scripting, but can someone help me?
http://robloxdev.com/articles/Web-APIs
There, all the API's are there.
Just do like
Eg: https://www.roblox.com/Thumbs/Avatar.ashx?x=100&y=100&username=Roblox
1 | script.Parent.ImageLabel.Image = https://www.roblox.com/Thumbs/Avatar.ashx?x = 100 &y = 100 &username = pedroquitas 1 |
Like pedroquitas1 said, use 'https://www.roblox.com/Thumbs/Avatar.ashx?x=100&y=100&username='
like this
1 | local plr = game.Players.LocalPlayer |
2 | local fr = script.Parent |
3 | fr.Image = "https://www.roblox.com/Thumbs/Avatar.ashx?x=100&y=100&username=" ..plr.Name |