How to Disable CoreGui | Remove Roblox GUI | Roblox Scripting Tutorial

Channel:
Subscribers:
197
Published on ● Video Link: https://www.youtube.com/watch?v=fkCPK1_KBJY



Roblox
Game:
Roblox (2006)
Category:
Tutorial
Duration: 3:26
22,320 views
346


A short tutorial to help disable aspects of CoreGui/Roblox's GUI, including Health, Chat, Emotes Menu, Backpack, Playerlist and the black bar at the top of your screen.
*Click Read More To See The Scripts*

Inside of StarterPlayer, in the StarterPlayerScripts folder, create a local script.
Inside this script, input the following:

wait()
pcall(
function()
local DisableGUI = game:GetService("StarterGui")
--(Replace this line with a line of code listed below)
end)

Add the following lines of code inside of the function based on what aspects you want to disable.

Disable everything and the black bar:
DisableGUI:SetCore("TopbarEnabled", false)

Disable everything except for the black bar:
DisableGUI:SetCoreGuiEnabled(Enum.CoreGuiType.All, false)

Disable Backpack:
DisableGUI:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false)

Disable Chat:
DisableGUI:SetCoreGuiEnabled(Enum.CoreGuiType.Chat, false)

Disable Emotes Menu:
DisableGUI:SetCoreGuiEnabled(Enum.CoreGuiType.EmotesMenu, false)

Disable Health:
DisableGUI:SetCoreGuiEnabled(Enum.CoreGuiType.Health, false)

Disable Playerlist:
DisableGUI:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, false)







Tags:
Roblox
Programming
Scripting
Tutorial
Remove GUI
Remove Backpack
Remove Black Bar
Remove Health



Other Statistics

Roblox Statistics For Technex

Technex presently has 25,403 views for Roblox across 2 videos, with his channel publishing less than an hour of Roblox content. This makes up less than 0.34% of the total overall content on Technex's YouTube channel.