What does the new CoreGui "SelfView" mean?

I havent seen it before, and I don’t know what it means. Also there’s no documentation for it.

game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.SelfView, false)

It meanst the visibility of your character, just like local transparencymodifier

A player’s perspective of their own character is referred to as the “SelfView” CoreGui in Roblox. The player can view their own character on the screen when the SelfView CoreGui is activated. The player won’t be able to see their character on the screen if it is disabled.

The SelfView CoreGui can be enabled or disabled using the SetCoreGuiEnabled function. Setting the second option to false in the example you gave disables the SelfView CoreGui.

It’s important to keep in mind that the SelfView CoreGui is only pertinent in specific game genres, including simulation or role-playing games. It might not be required or even make sense in other sorts of games to display the player’s own character on screen.

3 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.