How to Disable CoreGui | Remove Roblox GUI | Roblox Scripting Tutorial
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)
Other Videos By Technex
2022-11-07 | The Apprentice | A Plague Tale: Innocence | Part 4 |
2022-11-06 | Retribution | A Plague Tale: Innocence | Part 3 |
2022-11-05 | The Strangers | A Plague Tale: Innocence | Part 2 |
2022-11-04 | The De Rune Legacy | A Plague Tale: Innocence | Part 1 |
2022-09-11 | The Medium | Sherlock Holmes: Chapter One | Part 2 |
2022-09-10 | Arriving at Cardona | Sherlock Holmes: Chapter One | Part 1 |
2022-07-27 | Michael Jackson's Ghost |
2021-10-07 | Just testing YouTube's live feature! |
2020-08-27 | The Best Learning Resource for Roblox Development! | How to install CKStudio+ | Roblox Tutorial |
2020-08-06 | Lost Ember | Full Playthrough |
2019-12-25 | How to Disable CoreGui | Remove Roblox GUI | Roblox Scripting Tutorial |
2019-09-06 | Dark Souls 3, How hard can it possibly be? |
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.