Experience Events and Updates

As part of your promotional initiatives, the integrated events system lets you create time‑based events for your experience. Players can discover your events on the experience's detail page and through an event details page, and they can opt into notifications that they'll receive when your event begins.

Example event page on the Roblox website

In addition to events, the integrated update announcements system lets you announce experience updates for which opted‑in players receive a notification in their Roblox notifications stream, along with a link to join the experience directly from the notification.

Example update announcement notification on the Roblox website

Creating Events

To create an event, you must have the Edit all group experiences permission in a group‑owned experience, or be the sole owner of a user‑owned experience. Currently, you can publish a maximum of 10 ongoing or upcoming events.

  1. Navigate to an experience's page on the Creator Dashboard.

  2. In the left column, expand the Engagement branch and click Events & Updates.

    Events and Updates button indicated for an experience on the Creator Dashboard
  3. Click the Create Event or Update button.

  4. Add a thumbnail to promote your event. If you don't add any thumbnails for the event, the primary experience thumbnail will be used instead.

  5. Select an event category that most accurately describes your event. The category may be shown alongside your event thumbnail in certain places on Roblox.

  6. Enter the event title, subtitle, and description. The description is optional but it can help provide additional information about the details of your event. If you supply a description, it should follow general best practices and accurately portray the event, including:

    • A summary of the event and how it relates to the overall experience. If you're using the event to promote a major experience update, summarize the key updates.

    • Incentives for players to join such as exclusive event‑specific merch or badges that may be earned during the event.

  7. Set the starting date/time, and an ending date/time.

  8. Select a privacy level; public events will be viewable to all players while private events will only be visible by you and others with elevated access.

  9. When ready, click Create to save your event. If you set the event to public, it will be immediately discoverable on the experience's detail page.

    Example events on the Creator Dashboard

Event Discovery

The following sections detail how you can promote events and how events are discoverable by players on the Roblox platform.

Event Details Page

All published events feature an event details page which you can share with players on and off platform. To access a shareable link, you can use either the event details page itself or the Events page.

From the event details page, click/tap the share button below the event title to open your device's native sharing UI, or to copy the link to your clipboard.

Share button indicated on event details page

Experience Detail Page

All published events also appear in a dedicated Events section on the experience's detail page. Players can join active events directly through the Join Event button, or click Notify Me for upcoming events to receive stream notifications in their Roblox inbox and the ability to opt into push notifications.

Event promoted on experience's detail page

Group Page

If you create events as an admin for a group, the group's events will appear under the Events tab on the group page.

Event listed on group's page under the Events tab.

In addition, you can feature an event in the group's About section for extra visibility:

  1. Go to the group's Events tab.

  2. Find the event you want to feature, click on the button, and select Feature Event.

    Feature Event button indicated on an event's tile on the group's page.

    The event should now appear in the group page's About section:

    Event featured on group's page under the About tab.

Stream/Push Notifications

Players who click Notify Me for an upcoming event will receive stream notifications in their Roblox inbox when the event starts. In addition, they can opt into push notifications to receive a notification on their device that will take them into the experience. Stream notifications remain accessible in the player's Roblox inbox for the duration of the event, making it easy for them to hop back in at any time.

Event notification on phone lock screen
Notification on phone lock screen
Event notification in Roblox app
Notification in Roblox app

Deleting Events

To delete an event and remove its detail page:

  1. On an experience's Events & Updates page, click the tab corresponding to the event's timing (Active, Scheduled, or Finished).

    Events and Updates button indicated for an experience on the Creator Dashboard
  2. Hover over the event thumbnail, click the button, and select Delete Event.

    Event's right-click context menu indicating the selection of Delete Event

Using Event Attribution

When a player joins an experience through an event entry point, such as by clicking on an event notification or through the join button on the event details page, the event ID is added to the player's GameJoinContext. You can use this information in your experience to identify players who have come to participate in the event and show them custom prompts or otherwise personalize their experience.

Script - Reading Event ID from GameJoinContext

local Players = game:GetService("Players")
local function onPlayerAdded(player)
local source = player:GetJoinData()
-- Check if the provided source is valid
if source then
-- Read eventId from GameJoinContext
local eventId = source.GameJoinContext.EventId
if eventId then
print(player.Name, "joined from the event:", eventId)
end
end
end
Players.PlayerAdded:Connect(onPlayerAdded)

Announcing Experience Updates

The integrated announcements system lets you notify opted‑in players about new and exciting updates. When you send an announcement, players receive a notification in their Roblox notifications stream, along with a link to launch the experience directly from the notification.

Example update announcement notification on the Roblox website

Updates have a limit of 60 characters and you can only announce an update once every three days. When drafting your update, consider the following best practices:

  • Focus on announcing new, exciting, and accessible information, such as new areas, skills, and achievements.
  • Be descriptive in your updates. Updates like "bug fixes" are vague and don't inform the reader of what was actually fixed.
  • Avoid overwhelming players with too many updates in a short time period.

To announce an update:

  1. Navigate to the Creator Dashboard.

  2. Click on the thumbnail of the experience you want to associate with the update. The experience's Overview page displays.

  3. In the left-hand navigation, under Engagement, click Events & Updates.

    Events and Updates button indicated for an experience on the Creator Dashboard
  4. Click Create Event or Update.

  5. At the top of the creation form, click on the link to the old updates page.

  6. In the input field, describe what has been updated in your experience, then click the Preview button to see how the update will display for desktop, tablet, and phone users.

  7. When ready, click the Send button. The update is sent to everyone who enabled notifications for your experience and it immediately displays in the History section of your Updates page with the sent date, the update message, and statistics related to the update's performance.

    StatisticDescription
    ViewsNumber of people who have viewed the update.
    Visit RatePercentage of people who have visited the experience from the notification.
    Unfollow RatePercentage of people who have unfollowed the experience from the notification.