Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I hide the top menu correctly?

Asked by 9 years ago

So I am trying to hide the top menu with the player list, health bar and that stuff and this script works

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

But it only works in roblox studio how would I make it work in the actual game?

0
Are you using it in a LocalScript? Is there a need for that v at the end? Also, if your intending to completely remove the top bar, you can't. Roblox has not released a function for people to remove it and probably won't (I think bad decision on their part for not allowing user choice). M39a9am3R 3210 — 9y

1 answer

Log in to vote
0
Answered by 9 years ago

Nobody answered but I figured it out.

--LocalScript
--Put script in StarterPack
game.StarterGui:SetCoreGuiEnabled(2, false)
game.StarterGui:SetCoreGuiEnabled(3, false)
Ad

Answer this question