Skip to content

A guide to FastFlags

pizzaboxer edited this page Feb 3, 2024 · 79 revisions

Caution

FastFlags are extremely powerful, being that they are intended to only be used by Roblox engineers. While they can be very useful, they can cause issues with stability and functionality if you don't know what you're doing.

If you choose to use the flag list editor, you should only configure flags of which you fully know what they do.

We especially do not recommend importing any large lists of flags, for all the reasons stated above.


FastFlags are Roblox's implementation of feature flags, and their intention is for Roblox to remotely alter how aspects of the game engine/client function, without needing to push out a whole new client update every time. They are essentially controlling how pre-defined sections of code in the Roblox game client function. Whether it's defining what values they work with, enabling a feature, or even skipping over them entirely, etc.

While they are always loaded online, they can be manually overriden by the user, allowing for you to similarly alter how Roblox functions. Bloxstrap features the ability to easily do this through the handy FastFlag editor.

For a list of every FastFlag that Roblox makes available, see this scraped FastVariable list, or Roblox's official ClientSettings configuration list.

A further look at presets

Bloxstrap provides a number of FastFlag presets, which are simplified functions that handle the FastFlag management for you. This section provides additional information and context on what they do, and how to use them.

Exclusive Fullscreen

Relevant flag(s): FFlagHandleAltEnterFullscreenManually

This preset is always enabled by default, and allows you to use exclusive fullscreen with Direct3D by pressing Alt + Enter instead of F11. Vulkan will always use exclusive fullscreen regardless. You can verify if you're in exclusive fullscreen by switching to another window on the same display with Alt + Tab. If Roblox flashes black momentarily, or un-fullscreens itself, then you were just in exclusive fullscreen.

Please note that you will very likely run into issues using Exclusive Fullscreen. This includes, but is not limited to:

  • It may cap itself to an arbitrary framerate of its own regardless of what you have chosen (though disabling VSync in your GPU settings should fix that).
  • Your mouse cursor may not be visible.
  • The embedded web browser (used for displaying server lists, etc) will not appear (in which case just exit it if you need to use it).

That's sort of just how it is. If the issues you face with it affect you enough, then you'll just have to not use it.

DPI scaling fixes

Relevant flag(s): DFFlagDisableDPIScale

This preset fixes the problem of Roblox's rendering quality decreasing when your display scaling is greater than 100%. Here's a before and after for comparison, at 4K with 300% scaling. If you're more focused on performance, or battery life, you might not want to enable this.

Framerate limit

Relevant flag(s): DFIntTaskSchedulerTargetFps

By default, Roblox's frame rendering rate is capped to 60 FPS. This flag allows you to change that cap.

Caution

This is actually doing more than just raising your framerate limit. So, there's a very rare chance that configuring this may cause unintended side-effects, namely in increased network latency, and possible crashes. It doesn't happen for everyone, but at least check if it happens for you.

Besides, some games may use your framerate for carefully timing stuff, which raising this higher than 60 can affect.

For these reasons, ignore the subtext in the menu, this ideally shouldn't be set to anything higher than 300.

If you encounter any issues, set the framerate limit as 0 to set it back to defaults, and see if your issues are resolved.

Preferred lighting technology

Roblox offers a selection of lighting technologies for developers to use in their games. They have introduced a few over the years, with each phase typically looking better, but also more performance-heavy than the previous one.

A game can only be configured to use one technology. Developers will often choose an older lighting technology to accomodate players on less-performant hardware. If your hardware can handle it though, you may be interested in forcing a newer one to make things look better.

Caution

A game's lighting design is specific to the lighting technology that they've chosen. Be aware that if you override it yourself, you may encounter issues with lighting (things being too bright, things being too dark, etc).

In most cases, this isn't really an issue as things often work well enough. In some cases, really well. However, if you ever encounter issues with game lighting like this, keep this in mind and set the option back to "Chosen by game".

Escape menu version

Important

Roblox has started rolling out the new Chrome UI for a select percentage of the userbase. If you have this new UI, the the Version 4 menu will be force enabled no matter what you choose to use. We are not yet aware of a way to get around this, sorry.

Relevant flag(s): FFlagDisableNewIGMinDUA, FFlagEnableInGameMenuControls

Fairly self explanatory. Also, if you're wondering, here's what they all look like.

Menu

Keep in mind that Roblox does not maintain any menu versions older than 2023 anymore, so some of the buttons and controls may not work properly. Minor visual or usability problems with them are to be expected.

GUI hiding

Relevant flag(s): DFIntCanHideGuiGroupId

This is a group-based FastFlag, therefore you must be in a Roblox group for it to work. It can be made to work with any group you're currently in - see the flag editor for that, but if you don't feel like doing that, and want to avoid confusion, you can just join the Bloxstrap group. Here are the following keyboard shortcuts it provides for toggling the visibility of GUI elements.

Key combination Action
Ctrl + Shift + B Toggles GUIs in 3D space (BillboardGuis, SurfaceGuis, etc)
Ctrl + Shift + C Toggles game-defined ScreenGuis
Ctrl + Shift + G Toggles Roblox CoreGuis
Ctrl + Shift + N Toggles player names, and other BillboardGuis that show up above a player

Pro tip: Ctrl + Shift + G + C + N makes for a nice screenshot :D

Old material textures

Relevant flag(s): FStringPartTexturePackTable2022

Brings back the old material textures that were in use prior to 2022.

Materials

Clone this wiki locally