biostunt Posted November 22, 2019 Posted November 22, 2019 Hi, guys! I need to disable showing this: Can you help me? I tried to use this but it is not working: mp.game.ui.displayAreaName(false);
Captien Posted November 22, 2019 Posted November 22, 2019 You should use mp.game.ui.hideHudComponentThisFrame instead and add it on render. For hiding Area name: mp.events.add('render', () => { mp.game.ui.hideHudComponentThisFrame(7); // area name mp.game.ui.hideHudComponentThisFrame(9); // street name }); If you need to hide more components, you should check hud components 4
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now