How can I acquire all StarterGui:SetCore types?

Recently Roblox published an update that ruined VR games which use custom camera manipulation.
Basically, the screen goes black when you’re even remotely close to walls or bring something close to your face like the sights of a gun.

The reason I’m asking this question is because I want to check if there’s a settable core through StarterGui to disable this effect. With :SetCoreGuiEnabled (not to be confused with :SetCore), you can view all the settable coreguis through the script auto filler since they’re Enum types, but with :SetCore , it only uses strings, which means there’s no preview to show the possible entries. Is there somewhere on the Roblox site that has an up-to-date list of these, or is there another way to view them?

1 Like

All possible SetCore types are viewable on the Developer Wiki, along with parameters you can use for each to do actions

https://create.roblox.com/docs/reference/engine/classes/StarterGui#SetCore

Not sure if there’s a way to grab all of them like what you can do with SetCoreGuiEnabled

2 Likes

Unfortunately this doesn’t list all of them. The reason I know this is because here, I set 2 different cores, neither of which are listed anywhere on the wiki.
image

5 Likes
game:GetService("StarterGui"):SetCoreGuiEnabled(Enum.CoreGuiType.All, false)

this disables all roblox default guis

3 Likes

The post is old, but hopefully it will help someone. Disabling this feature does not happen using StarterGui:SetCore

local VRs = game:GetService("VRService")

VRs.FadeOutViewOnCollision = false
1 Like