Ctrl + Shift + G and Ctrl + Shift + C work in my games, but don’t when I join other people’s games. Therefore, is it developer only, like the freecam, or is there some kind of setting? Either way, how can I enable the setting so that all players can hide their UI? Thanks!
Yes, these are developer only features as hiding the CoreGui can get you in trouble so it is not implemented in live games.
To hide a UI, you can simply change the Enabled
property of a ScreenGui to false, if you are working with frames change the Visible
property to false.
When I enable the freecam, it also hides my core UI. How does it do that? Thanks!
My game has a screenshot more, and the core UI really gets in the way…
Freecam doesn’t disable CoreGui? I tested it out myself. Are you referring to the correct “freecam” which is activated by pressing Shift + P
I am, let me test it myself, I hope they didn’t change it
You’re right, it doesn’t!
But it disables most of it. How do I disable the maximum amount of coreGui without getting in trouble?
You can only disable CoreGui to a level using StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.CoreGuiType, false)
. I suppose the freecam script disables every gui inside StarterGui
so you can loop through it and disable every gui element, here is an example:
for _, gui in player.PlayerGui:GetChildren() do
if gui:IsA("ScreenGui") then
gui.Enabled = false
end
end
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.