Group

fun Group(groupId: Int)

Creates a new Group objected provided the group ID of the Group.

Sample

Java

// This represents the Roblox group as a Group
Group group = new Group(7);
// Prints the group's name
System.out.println(group.name);

Parameters

groupId

The group's ID

Throws