Skip to content
Troptop edited this page Feb 7, 2025 · 2 revisions

User

represents a User returned from the Roblox API

Property Type Description
name string The username of the user.
displayName string The display name of the user.
id number The ID of the user.
description string The description of the user.
avatar string The user's profile picture URL.
verified boolean Whether or not the user has the verified checkmark.
banned boolean Whether or not the user's account is banned/terminated.
created number The unix epoch representing the date the user was created.
profile string The URL to the user's profile.
hyperlink string The URL to the user's profile hyperlinked to their username with markdown.

A User object is returned upon a request to fetch a user via ropi. Example:

{
	name = "NickyPlayz2011",
	displayName = "Troptop",
	id = 1038671897,
	description = "colombiano ☕💖",
	avatar = "https://t3.rbxcdn.com/30DAY-AvatarHeadshot-C0EB12559509C7A1083480199042BFEA-Png",
	verified = false,
	banned = false,
	created = 1555162890.283,
	profile = "https://roblox.com/users/123456789/profile",
	hyperlink = "[NickyPlayz2011](https://roblox.com/users/1038671897/profile)"
}

Clone this wiki locally