└── README.md /README.md: -------------------------------------------------------------------------------- 1 | # Graphical Settings 2 | 3 | ### Disable PostFX 4 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1150655466830041128) 5 | ```json 6 | { 7 | "FFlagDisablePostFx": true 8 | } 9 | ``` 10 | 11 | ### Change Rendering Mode 12 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1173220043266457660) 13 | 14 | For D3D11 (DirectX 11): 15 | ```json 16 | { 17 | "FFlagDebugGraphicsPreferD3D11": true 18 | } 19 | ``` 20 | For D3D11FL10 (DirectX 11 but with the feature list of DirectX 10): 21 | ```json 22 | { 23 | "FFlagDebugGraphicsPreferD3D11FL10": true 24 | } 25 | ``` 26 | For Vulkan: 27 | > [!CAUTION] 28 | > 29 | > Performance may vary (Worse on nvidia cards). Expect visual bugs and crashes. 30 | ```json 31 | { 32 | "FFlagDebugGraphicsPreferVulkan": true 33 | } 34 | ``` 35 | For OpenGL: 36 | ```json 37 | { 38 | "FFlagDebugGraphicsPreferOpenGL": true 39 | } 40 | ``` 41 | For Metal: 42 | > [!IMPORTANT] 43 | > 44 | >Only for MacOS. 45 | 46 | ```json 47 | { 48 | "FFlagDebugGraphicsPreferMetal": true 49 | } 50 | ``` 51 | 52 | ### Better Light Attenuation 53 | > [!WARNING] 54 | > 55 | > May cause lighting artifacts.
56 | 57 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1165003069814226964) 58 | ```json 59 | { 60 | "FFlagNewLightAttenuation": true 61 | } 62 | ``` 63 | 64 | ### Disable Baked Shadows 65 | 66 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1173308420133232750) 67 | ```json 68 | { 69 | "DFFlagDebugPauseVoxelizer": true 70 | } 71 | ``` 72 | 73 | ### Force LOD For All Meshes 74 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1146963091775553536) 75 | ```json 76 | { 77 | "DFIntCSGLevelOfDetailSwitchingDistance":0, 78 | "DFIntCSGLevelOfDetailSwitchingDistanceL12":0, 79 | "DFIntCSGLevelOfDetailSwitchingDistanceL23":0, 80 | "DFIntCSGLevelOfDetailSwitchingDistanceL34":0 81 | } 82 | ``` 83 | 84 | ### Remove Player Clothing Textures 85 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1207722310195486720) 86 | ```json 87 | { 88 | "DFIntTextureCompositorActiveJobs": 0 89 | } 90 | ``` 91 | 92 | ### Skip MipMaps 93 | > [!NOTE] 94 | > 95 | > Set to anything below 0 to basically delete all textures. 96 | 97 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1247944649822441634) 98 | 99 | ```json 100 | { 101 | "FIntDebugTextureManagerSkipMips": 0 102 | } 103 | ``` 104 | 105 | ### Force Texture Quality 106 | > [!NOTE] 107 | > 108 | > Set to any value from 0 to 3. 109 | 110 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1150312397274357871) 111 | 112 | ```json 113 | { 114 | "DFFlagTextureQualityOverrideEnabled": true, 115 | "DFIntTextureQualityOverride": 3 116 | } 117 | ``` 118 | 119 | ### Uncap FPS 120 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1245740082841780224) 121 | ```json 122 | { 123 | "DFIntTaskSchedulerTargetFps": 9999, 124 | "FFlagTaskSchedulerLimitTargetFpsTo2402": false 125 | } 126 | ``` 127 | 128 | ### FRM Quality Level Override 129 | > [!NOTE] 130 | > 131 | > Forces graphics quality. Render distance will still incerase however. Values range from 1 - 10 and 1 - 21 if using 21 bars. 132 | 133 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1184157587562823780) 134 | 135 | ```json 136 | { 137 | "DFIntDebugFRMQualityLevelOverride": 1 138 | } 139 | ``` 140 | 141 | ### Enable MSAA 142 | > [!CAUTION] 143 | > 144 | > Values over 4 will cause viewports (3D Models) to be invisible. 145 | 146 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1145231575173316608) 147 | 148 | ```json 149 | { 150 | "FIntDebugForceMSAASamples": 0 151 | } 152 | ``` 153 | 154 | ### Low Poly Terrain 155 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1194889014981967932) 156 | ```json 157 | { 158 | "FIntTerrainArraySliceSize": 8 159 | } 160 | ``` 161 | 162 | 163 | ### Remove Player Shadows 164 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1147409993302282240) 165 | ```json 166 | { 167 | "FIntRenderShadowIntensity": 0 168 | } 169 | ``` 170 | 171 | ### ShadowMap Bias 172 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1152409274933317712) 173 | ```json 174 | { 175 | "FIntRenderShadowmapBias": 75 176 | } 177 | ``` 178 | 179 | # UI/UX (User Interface) 180 | 181 | ### Rename Charts Tab Back To Discover 182 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1254997424116863048) 183 | ```json 184 | { 185 | "FFlagLuaAppChartsPageRenameIXP": false 186 | } 187 | ``` 188 | 189 | ### Rainbow UI / Viewport 190 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1183833667945103421) 191 | ```json 192 | { 193 | "FFlagDebugDisplayUnthemedInstances": true 194 | } 195 | ``` 196 | 197 | ### Position Update UI/UX 198 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1267153647033384980) 199 | ```json 200 | { 201 | "FFlagAccessoryAdjustmentEnabled2":true, 202 | "FFlagHumanoidDescriptionUseInstances5":true, 203 | "FFlagHumanoidDescriptionFallback":true, 204 | "FFlagEnableNonUAPAccessoryAdjustment":true, 205 | "FFlagAXAccessoryAdjustment": true, 206 | "FFlagAXAccessoryAdjustmentIXPEnabled": true, 207 | "FFlagAXAccessoryAdjustmentIXPEnabledForAll": true, 208 | "FFlagAXAvatarFetchResultCamelCase": true, 209 | "FFlagAccessoryAdjustmentEnabled3": true 210 | } 211 | ``` 212 | 213 | ### Chrome FTUX (First Time User Experience) 214 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1271975274719875104) 215 | ```json 216 | { 217 | "FFlagDebugEnableVRFTUXExperienceInStudio": true, 218 | "FFlagEnableChromeFTUX": true, 219 | "FFlagEnableVRFTUXExperienceV2": true 220 | } 221 | ``` 222 | 223 | ### Revert To Old Report Menu 224 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1204420123260092436) 225 | ```json 226 | { 227 | "FFlagEnableReportAbuseMenuRoactABTest2": false, 228 | "FFlagEnableReportAbuseMenuRoact2": false, 229 | "FFlagEnableReportAbuseMenuLayerOnV3": false 230 | } 231 | ``` 232 | 233 | ### Disable Beta Badge 234 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1194581451857997844) 235 | ```json 236 | { 237 | "FFlagVoiceBetaBadge": false, 238 | "FFlagTopBarUseNewBadge": false, 239 | "FFlagEnableBetaBadgeLearnMore": false, 240 | "FFlagBetaBadgeLearnMoreLinkFormview": false, 241 | "FFlagControlBetaBadgeWithGuac": false, 242 | "FStringVoiceBetaBadgeLearnMoreLink": "" 243 | } 244 | ``` 245 | 246 | ### Disable Chat Translation 247 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1204335548160938025) 248 | ```json 249 | { 250 | "FFlagChatTranslationSettingEnabled3": false 251 | } 252 | ``` 253 | 254 | ### Fix Beta Badge Dupe 255 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1194581451857997844) 256 | ```json 257 | { 258 | "FFlagFixDupeBetaBadge": true 259 | } 260 | ``` 261 | 262 | ### Disable Haptics Toggle 263 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1268891182302494772) 264 | ```json 265 | { 266 | "FFlagAddHapticsToggle": false 267 | } 268 | ``` 269 | 270 | ### Disable Self View 271 | [Link To original Post](https://discord.com/channels/1099468797410283540/1183081644614226012) 272 | ```json 273 | { 274 | "FFlagCoreGuiTypeSelfViewPresent": false 275 | } 276 | ``` 277 | 278 | ### Chat Keylogger 279 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1193962531128102955) 280 | ```json 281 | { 282 | "FFlagDebugTextBoxServiceShowOverlay": true 283 | } 284 | ``` 285 | 286 | ### Remove Home Button 287 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1171224254352732201) 288 | ```json 289 | { 290 | "FFlagInGameMenuHomeButton": false 291 | } 292 | ``` 293 | 294 | ### Chrome Pin Chat 295 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1177942263100362792) 296 | ```json 297 | { 298 | "FFlagEnableChromePinnedChat": true 299 | } 300 | ``` 301 | 302 | ### Hide GUI 303 | > [!NOTE] 304 | > 305 | > Set to a id of a group you are in. 306 | 307 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1149975417818722314) 308 | 309 | ```json 310 | { 311 | "DFIntCanHideGuiGroupId": 0 312 | } 313 | ``` 314 | 315 | ### Set Custom Font Size 316 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1170204803025088512) 317 | ```json 318 | { 319 | "FIntFontSizePadding": 1 320 | } 321 | ``` 322 | 323 | ### Cleaner ESC Settings Menu 324 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1189607691849564230) 325 | ```json 326 | { 327 | "FFlagEnableAudioOutputDevice": false, 328 | "FIntV1MenuLanguageSelectionFeaturePerMillageRollout": 0, 329 | "FFlagChatTranslationSettingEnabled3": false 330 | } 331 | ``` 332 | 333 | ### Disable "Output device" UI from Escape Menu 334 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1184771500558012416) 335 | ```json 336 | { 337 | "FFlagEnableAudioOutputDevice": false 338 | } 339 | ``` 340 | 341 | ### Disable Fullscreen Titlebar 342 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1198606462226792468) 343 | ```json 344 | { 345 | "FIntFullscreenTitleBarTriggerDelayMillis": 3600000 346 | } 347 | ``` 348 | 349 | ### Chrome UI 350 | > [!CAUTION] 351 | > 352 | > May cause the game to not load in certain games. 353 | 354 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1156809517883985960) 355 | ```json 356 | { 357 | "FFlagEnableInGameMenuChrome": true 358 | } 359 | ``` 360 | 361 | # QOL (Quality Of Life) 362 | 363 | ### Disable VR Collision Fade 364 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1258459675314360493) 365 | ```json 366 | { 367 | "FFlagViewCollisionFadeToBlackInVR": "False" 368 | } 369 | ``` 370 | 371 | ### Disable AD Portals 372 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1179502701118230529) 373 | ```json 374 | { 375 | "FFlagAdServiceEnabled": false 376 | } 377 | ``` 378 | 379 | ### Scroll Speed 380 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1142226024281690132) 381 | ```json 382 | { 383 | "FIntScrollWheelDeltaAmount": 0 384 | } 385 | ``` 386 | 387 | ### Disable Telemetry 388 | > [!NOTE] 389 | > 390 | > Does not disable all telemetry. 391 | 392 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1155133604389728396) 393 | 394 | ```json 395 | { 396 | "FFlagDebugDisableTelemetryEphemeralCounter": true, 397 | "FFlagDebugDisableTelemetryEphemeralStat": true, 398 | "FFlagDebugDisableTelemetryEventIngest": true, 399 | "FFlagDebugDisableTelemetryPoint": true, 400 | "FFlagDebugDisableTelemetryV2Counter": true, 401 | "FFlagDebugDisableTelemetryV2Event": true, 402 | "FFlagDebugDisableTelemetryV2Stat": true 403 | } 404 | ``` 405 | 406 | # Voice Chat 407 | 408 | ### Voice Chat Volume 409 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1208100665138745424) 410 | > [!NOTE] 411 | > 412 | > Default value is 1000 (in thousandths). 413 | ```json 414 | { 415 | "DFIntVoiceChatVolumeThousandths": 1000 416 | } 417 | ``` 418 | 419 | ### Return Old Voice Chat Bubble [WARNING: DISABLES AVATAR CHAT] 420 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1139960093132210227) 421 | ```json 422 | { 423 | "DFFlagFacialAnimationStreaming2": false 424 | } 425 | ``` 426 | 427 | # Misc 428 | 429 | ### Enable New Camera Mode 430 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1237065400315805789) 431 | ```json 432 | { 433 | "FFlagNewCameraControls": true 434 | } 435 | ``` 436 | 437 | ### Enable Audio Occlusion 438 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1239510612577620039) 439 | ```json 440 | { 441 | "FFlagDebugEnableDirectAudioOcclusion2": true 442 | } 443 | ``` 444 | 445 | ### Make Your Flags Work On Certain Games Only 446 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1239329199404355584) 447 | 448 | 449 | ### Sky's Flag Collection 450 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1139962301991104582) 451 | 452 | ### Surfing The Web Inside of Roblox 453 | [Link To Original Post](https://discord.com/channels/1099468797410283540/1165211319583117443) 454 | ```json 455 | { 456 | "FFlagTopBarUseNewBadge": true, 457 | "FStringTopBarBadgeLearnMoreLink": "https://example.com", 458 | "FStringVoiceBetaBadgeLearnMoreLink": "https://example.com" 459 | } 460 | ``` 461 | 462 | ### Notes 463 | > Roblox was supposed to kill fastflags like 6 months ago. Now here I am updating this collection again. Roblox really trolled me with this one. --------------------------------------------------------------------------------