gethui gethui returns a hidden Instance container used for safely storing UI elements. This container is mainly designed to avoid detections. function gethui(): BasePlayerGui | Folder Parameters Parameter Description (none) This function takes no parameters. Example Creating undetectable UI in gethui 1 2 3 4 5 6 7 8 9 10local gui = Instance.new("ScreenGui") gui.Parent = gethui() gui.Name = "GUI" local label = Instance.new("TextLabel") label.Size = UDim2.fromOffset(200, 50) label.Text = "Hello from gethui!" label.Parent = gui print(gethui():FindFirstChild(gui)) -- Output: GUI