Skip to content

Roblox Profile


The Text element can be used to put text on your card with the option to choose any font from Google fonts

ParameterDescription
idID Parameter that will be used in error messages
typeElement type. In this case it’s “roblox_profile”
userThe target user. Can be their roblox username, display name or user id. Use user id for most accurate detection.
transparencyTransparency of the text. Needs to be a number between 1 and 100. 100 being not transparent and 0 being fully transparent.
layerLayer of the image. Can be any number but is useful to control which Image goes on top of which element.
border_radiusUsed to round the image. Needs to be a number between 1 and 100. 100 being fully round.
positionContains “x” and “y”. Used to specify the position of the image.
sizeContains “width” and “height”. Used to specify the size of the Image. In this case also “auto” for both width and height can be used to use the size of the original image.
{
"id": "4",
"type": "roblox_profile",
"user": "redxxxkiller",
"transparency": "100",
"layer": "2",
"border_radius": "100",
"position": {
"x": 7.5,
"y": 3
},
"size": {
"width": "auto",
"height": 24
}
}