T0xicPo1nter 1 Posted June 4 Language: C# Clientside Hey there! I discovered the RAGE.NUI.PauseMenu namespace on clientside and i tried to use some things like TabView and other stuff, but nothing shows up. How do I use them? ~ T0xicPo1nter Share this post Link to post Share on other sites
Smileey 46 Posted June 4 (edited) try this: public static TabView MainMenu; and then private void BuildMainMenu() { MainMenu = new TabView("The Title"); MainMenu.MoneySubtitle = "Lalala my name is jeff"; #region About { var welcomeItem = new TabTextItem("about", "About", "Author: Jeff"); MainMenu.Tabs.Add(welcomeItem); } #endregion } now you can use it with BuildMainMenu(); have fun Edited June 5 by Smileey Share this post Link to post Share on other sites