Captures Inaccessible in-game

In my game Notoriety, captures is available from the main menu like so, as expected


However, joining any of the games (using a reserved server teleport API) will not show captures as an option, meaning our users cannot take advantage of Captures to share gameplay with their friends.

According to the documentation, Captures are intended to be viewed by all users.

1 Like


After testing your game, I can confirm I am able to replicate this issue and seems to be specific only to reserved servers, as I was not able to replicate this bug with normal universal places.

1 Like

I think this might be on our end!

game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.All, false)
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Chat, true)

We had above code running on clients, which was designed to turn off everything but chat. Back then, the Enum.CoreGuiType.Captures was not present, so we didn’t account for that. It works now :smiley:

game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.All, false)
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Chat, true)
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Captures, true)