As title states, is it possible to edit the look of CoreGuis? (Through ImageLabels and such)
It is not possible to edit the CoreGui. However, it is possible to replace it. Using the method SetCoreGuiEnabled(coreGuiType, enabled) in StarterGui, you can disable parts of the CoreGui. You can then use a ScreenGui to replace the functionality. For a list of available CoreGuiTypes to disable, view this page. The method should be used from a local script.
For example, if you want a custom health gui, you could your custom health ScreenGui in the StarterGui and insert a localscript in it with the following code:
Game:GetService("StarterGui"):SetCoreGuiEnabled(Enum.CoreGuiType.Health, false)
That would disable the health CoreGui so it doesn't get in the way of yours.
Locked by OniiCh_n, Shawnyg, and M39a9am3R
This question has been locked to preserve its current state and prevent spam and unwanted comments and answers.
Why was this question closed?