Skip to content

creatortype

roblox.creatortype

Contains shared enums. fixme: this should be deprecated!

CreatorType (Enum)

Represents the type of creator for objects that can be owned by either a group or a user, like Assets.

Source code in roblox/creatortype.py
class CreatorType(Enum):
    """
    Represents the type of creator for objects that can be owned by either a group or a user, like Assets.
    """

    group = "Group"
    """The creator is a group."""
    user = "User"
    """The creator is a user."""

group

The creator is a group.

user

The creator is a user.