-
Notifications
You must be signed in to change notification settings - Fork 2
/
flags.json
1304 lines (1304 loc) · 61 KB
/
flags.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"FFlagUseInGameTopBar": "True",
"FFlagEnableSetCoreTopbarEnabled": "True",
"FFlagLegacyMessageBox": "True",
"FFlagLegacyForceField": "True",
"DFFlagLegacyHumanoidEmulation": "True",
"GoogleAnalyticsAccountPropertyID": "G-925B3Z5JRL",
"GoogleAnalyticsAccountPropertyIDPlayer": "G-2LKEWQY56H",
"AllowVideoPreRoll": "True",
"FLogDataStore": "0",
"FLogAsserts": "1",
"FLogCloseDataModel": "3",
"CaptureQTStudioCountersEnabled": "True",
"CaptureMFCStudioCountersEnabled": "True",
"CaptureCountersIntervalInMinutes": "5",
"FLogServiceVectorResize": "4",
"FLogServiceCreation": "4",
"AxisAdornmentGrabSize": "12",
"FFlagProcessAllPacketsPerStep": "True",
"FFlagUS14116": "True",
"FLogUS14116": "3",
"FFlagBlockBlockNarrowPhaseRefactor": "True",
"FFlagEnableRubberBandSelection": "True",
"FFlagQtStudioScreenshotEnabled": "True",
"FFlagFixNoPhysicsGlitchWithGyro": "True",
"FLogFullRenderObjects": "0",
"PublishedProjectsPageHeight": "535",
"PublishedProjectsPageUrl": "/ide/publish",
"StartPageUrl": "/studio/places",
"FFlagOpenNewWindowsInDefaultBrowser": "True",
"FFlagOnScreenProfiler": "True",
"FFlagInitializeNewPlace": "True",
"PrizeAssetIDs": "0=110718551=Congratulations! Your success at publishing a place has earned you the Eggcellent Builder hat. You can find this in your inventory on the website. Keep building to find more ROBLOX Studio Eggs!;1=110719580=Congratulations! Your exploration of ROBLOX Studio's models has led you to the Eggstreme Builder hat. You can find this in your inventory on the website. Keep building to find more ROBLOX Studio Eggs!;2=110720049=Congratulations! Your contribution to ROBLOX's content catalog has earned you the Eggsultant Contributor hat. You can find this in your inventory on the website. Keep building to find more ROBLOX Studio Eggs!;3=110790044=Congratulations! Your large experience in scripting has earned you the rare Eggscruciatingly Deviled Scripter hat. You can find this in your inventory on the website. Keep building to find more ROBLOX Studio Eggs!;4=110790072=Congratulations! Your flexibility at finding eggs has led you to the Yolk's on Us hat! You can find this in your inventory on the website. Keep building to find more ROBLOX Studio Eggs!;5=110790103=Congratulations! You've found the Eggsplosion hat! You can find this in your inventory on the website. Keep building to find more ROBLOX Studio Eggs!",
"PrizeAwarderURL": "/ostara/boon",
"MinNumberScriptExecutionsToGetPrize": "500",
"FFlagDebugCrashEnabled": "False",
"FLogHangDetection": "3",
"FFlagCharAnimationStats": "False",
"FFlagRenderOpenGLForcePOTTextures": "True",
"FFlagUseNewCameraZoomPath": "True",
"FFlagQTStudioPublishFailure": "True",
"ExcludeContactWithInteriorTerrainMinusYFace": "True",
"FFlagFixUphillClimb": "True",
"FFlagUseAveragedFloorHeight": "True",
"FFlagScaleExplosionLifetime": "True",
"PublishedProjectsPageWidth": "950",
"FFlagRenderFastClusterEverywhere": "True",
"FLogPlayerShutdownLuaTimeoutSeconds": "1",
"FFlagQtFixToolDragging": "True",
"FFlagSelectPartOnUndoRedo": "True",
"FFlagStatusBarProgress": "True",
"FFlagStudioCheckForUpgrade": "True",
"FFlagStudioInsertModelCounterEnabled": "True",
"FFlagStudioAuthenticationFailureCounterEnabled": "True",
"FFlagRenderCheckTextureContentProvider": "True",
"FFlagRenderLightGridEnabled": "True",
"FFlagStudioLightGridAPIVisible": "True",
"FFlagBetterSleepingJobErrorComputation": "True",
"FLogDXVideoMemory": "4",
"FFlagRenderNoLegacy": "True",
"FFlagStudioLightGridOnForNewPlaces": "True",
"FFlagPhysicsSkipRedundantJoinAll": "True",
"FFlagTerrainOptimizedLoad": "True",
"FFlagTerrainOptimizedStorage": "True",
"FFlagTerrainOptimizedCHS": "True",
"FFlagRenderGLES2": "True",
"FFlagStudioMacAddressValidationEnabled": "True",
"FFlagDoNotPassSunkEventsToPlayerMouse": "True",
"FFlagQtAutoSave": "True",
"FFlagRenderLoopExplicit": "True",
"FFlagStudioUseBinaryFormatForPlay": "True",
"FFlagPhysicsRemoveWorldAssemble_US16512": "True",
"FFlagNativeSafeChatRendering": "True",
"FFlagRenderNewMegaCluster": "True",
"FFlagAutoJumpForTouchDevices": "True",
"FLogOutlineBrightnessMin": "50",
"FLogOutlineBrightnessMax": "160",
"FLogOutlineThickness": "40",
"FFlagDE5511FixEnabled": "True",
"FFlagDE4423Fixed": "True",
"FFlagSymmetricContact": "True",
"FFlagLocalMD5": "True",
"FFlagStudioCookieParsingDisabled": "False",
"FFlagLastWakeTimeSleepingJobError": "True",
"FFlagPhysicsAllowAutoJointsWithSmallParts_DE6056": "True",
"FFlagPhysicsLockGroupDraggerHitPointOntoSurface_DE6174": "True",
"FFlagOutlineControlEnabled": "True",
"FFlagAllowCommentedScriptSigs": "True",
"FFlagDataModelUseBinaryFormatForSave": "True",
"FFlagStudioUseBinaryFormatForSave": "True",
"FFlagDebugAdornableCrash": "True",
"FFlagOverlayDataModelEnabled": "True",
"DFFlagFixInstanceParentDesyncBug": "True",
"FFlagPromoteAssemblyModifications": "False",
"FFlagFontSourceSans": "True",
"DFFlagCreateHumanoidRootNode": "True",
"FFlagRenderNewFonts": "True",
"FFlagStudioCookieDesegregation": "True",
"FFlagResponsiveJump": "True",
"FFlagGoogleAnalyticsTrackingEnabled": "True",
"FFlagNoCollideLadderFilter": "True",
"FFlagFlexibleTipping": "True",
"FFlagUseStrongerBalancer": "True",
"FFlagClampControllerVelocityMag": "True",
"DFFlagUseSaferChatMetadataLoading": "True",
"FFlagSinkActiveGuiObjectMouseEvents": "False",
"FLogLuaBridge": "2",
"DFFlagPromoteAssemblyModifications": "True",
"FFlagDeferredContacts": "True",
"FFlagFRMUse60FPSLockstepTable": "True",
"FFlagFRMAdjustForMultiCore": "True",
"FFlagPhysics60HZ": "True",
"FFlagQtRightClickContextMenu": "True",
"FFlagUseTopmostSettingToBringWindowToFront": "True",
"FFlagNewLightAPI": "True",
"FFlagRenderLightGridShadows": "True",
"FFlagRenderLightGridShadowsSmooth": "True",
"DFFlagSanitizeKeyframeUrl": "True",
"DFFlagDisableGetKeyframeSequence": "False",
"FFlagCreateServerScriptServiceInStudio": "True",
"FFlagCreateServerStorageInStudio": "True",
"FFlagCreateReplicatedStorageInStudio": "True",
"FFlagFilterEmoteChat": "True",
"DFFlagUseCharacterRootforCameraTarget": "True",
"FFlagImageRectEnabled": "True",
"FFlagNewWaterMaterialEnable": "True",
"DFFlagUserHttpAPIEnabled": "True",
"DFIntUserHttpAccessUserId0": "0",
"FFlagUserHttpAPIVisible": "True",
"FFlagCameraChangeHistory": "True",
"FFlagDE4640Fixed": "True",
"FFlagShowStreamingEnabledProp": "True",
"FFlagOptimizedDragger": "True",
"FFlagRenderNewMaterials": "True",
"FFlagRenderAnisotropy": "True",
"FFlagStudioInitializeViewOnPaint": "True",
"DFFlagPartsStreamingEnabled": "True",
"FFlagStudioLuaDebugger": "True",
"FFlagStudioLocalSpaceDragger": "True",
"FFlagGuiRotationEnabled": "True",
"FFlagDataStoreEnabled": "True",
"DFFlagDisableTeleportConfirmation": "True",
"DFFlagAllowTeleportFromServer": "True",
"DFFlagNonBlockingTeleport": "True",
"FFlagD3D9CrashOnError": "False",
"FFlagRibbonBarEnabled": "True",
"SFFlagInfiniteTerrain": "True",
"FFlagStudioScriptBlockAutocomplete": "True",
"FFlagRenderFixAnchoredLag": "True",
"DFFlagAllowAllUsersToUseHttpService": "True",
"GoogleAnalyticsAccountPropertyIDClient": "",
"FFlagSurfaceGuiVisible": "True",
"FFlagStudioIntellesenseEnabled": "True",
"FFlagAsyncPostMachineInfo": "True",
"FFlagModuleScriptsVisible": "True",
"FFlagModelPluginsEnabled": "True",
"FFlagGetUserIdFromPluginEnabled": "True",
"FFlagStudioPluginUIActionEnabled": "True",
"DFFlagRemoveAdornFromBucketInDtor": "True",
"FFlagRapidJSONEnabled": "True",
"DFFlagDE6959Fixed": "True",
"DFFlagScopedMutexOnJSONParser": "True",
"FFlagSupressNavOnTextBoxFocus": "True",
"DFFlagExplicitPostContentType": "True",
"DFFlagAddPlaceIdToAnimationRequests": "True",
"FFlagCreatePlaceEnabled": "True",
"DFFlagClientAdditionalPOSTHeaders": "True",
"FFlagEnableAnimationExport": "True",
"DFFlagAnimationAllowProdUrls": "True",
"FFlagGetUserIDFromPluginEnabled": "True",
"FFlagStudioContextualHelpEnabled": "True",
"FFlagLogServiceEnabled": "True",
"FFlagQtPlaySoloOptimization": "True",
"FFlagStudioBuildGui": "True",
"DFFlagListenForZVectorChanges": "True",
"DFFlagUserInputServiceProcessOnRender": "True",
"FFlagDE7421Fixed": "True",
"FFlagStudioExplorerActionsEnabledInScriptView": "True",
"FFlagHumanoidNetworkOptEnabled": "False",
"DFFlagEnableNPCServerAnimation": "True",
"DFFlagDataStoreUseUForGlobalDataStore": "True",
"DFFlagDataStoreAllowedForEveryone": "True",
"DFFlagBadTypeOnConnectErrorEnabled": "True",
"FFlagStudioRemoveUpdateUIThread": "True",
"FFlagPhysicsSkipUnnecessaryContactCreation": "False",
"FFlagUseNewHumanoidCache": "True",
"FFlagSecureReceiptsBackendEnabled": "True",
"FFlagOrderedDataStoreEnabled": "True",
"FFlagStudioLuaDebuggerGA": "True",
"FFlagNPSSetScriptDocsReadOnly": "True",
"FFlagRDBGHashStringComparison": "True",
"FFlagStudioDebuggerVisitDescendants": "True",
"FFlagDeprecateScriptInfoService": "True",
"FFlagIntellisenseScriptContextDatamodelSearchingEnabled": "True",
"FFlagSecureReceiptsFrontendEnabled": "True",
"DFFlagCreatePlaceEnabledForEveryone": "True",
"FFlagCreatePlaceInPlayerInventoryEnabled": "True",
"DFFlagAddRequestIdToDeveloperProductPurchases": "True",
"DFFlagUseYPCallInsteadOfPCallEnabled": "True",
"FFlagStudioMouseOffsetFixEnabled": "True",
"DFFlagPlaceValidation": "True",
"FFlagReconstructAssetUrl": "True",
"FFlagUseNewSoundEngine": "True",
"FIntMinMillisecondLengthForLongSoundChannel": "5000",
"FFlagStudioHideInsertedServices": "True",
"FFlagStudioAlwaysSetActionEnabledState": "True",
"FFlagRenderNew": "True",
"FIntRenderNewPercentWin": "100",
"FIntRenderNewPercentMac": "100",
"FLogGraphics": "6",
"FFlagStudioInSyncWebKitAuthentication": "False",
"DFFlagDisallowHopperServerScriptReplication": "True",
"FFlagInterpolationFix": "False",
"FFlagHeartbeatAt60Hz": "False",
"DFFlagFixProcessReceiptValueTypes": "True",
"DFFlagPhysicsSkipUnnecessaryContactCreation": "True",
"FFlagStudioLiveCoding": "True",
"FFlagPlayerHumanoidStep60Hz": "True",
"DFFlagCrispFilteringEnabled": "False",
"SFFlagProtocolSynchronization": "True",
"FFlagUserInputServicePipelineStudio": "True",
"FFlagUserInputServicePipelineWindowsClient": "True",
"FFlagUserInputServicePipelineMacClient": "True",
"FFlagStudioKeyboardMouseConfig": "True",
"DFFlagLogServiceEnabled": "True",
"DFFlagLoadAnimationsThroughInsertService": "True",
"FFlagFRMFogEnabled": "True",
"FLogBrowserActivity": "3",
"DFFlagPhysicsPacketAlwaysUseCurrentTime": "True",
"FFlagFixedStudioRotateTool": "True",
"FFlagRibbonBarEnabledGA": "True",
"FFlagRenderSafeChat": "False",
"DFFlagPhysicsAllowSimRadiusToDecreaseToOne": "True",
"DFFlagPhysicsAggressiveSimRadiusReduction": "True",
"DFFlagLuaYieldErrorNoResumeEnabled": "True",
"DFFlagEnableJointCache": "False",
"DFFlagOnCloseTimeoutEnabled": "True",
"FFlagStudioQuickInsertEnabled": "True",
"FFlagStudioPropertiesRespectCollisionToggle": "True",
"FFlagTweenServiceUsesRenderStep": "True",
"FFlagUseNewSoundEngine3dFix": "True",
"FFlagDebugUseDefaultGlobalSettings": "True",
"FFlagStudioMiddleMouseTrackCamera": "False",
"FFlagTurnOffiOSNativeControls": "True",
"DFFlagUseNewHumanoidHealthGui": "True",
"DFFlagLoggingConsoleEnabled": "True",
"DFFlagAllowModuleLoadingFromAssetId": "True",
"FFlagStudioZoomExtentsExplorerFixEnabled": "True",
"FFlagLuaDebuggerBreakOnError": "True",
"FFlagRetentionTrackingEnabled": "True",
"FFlagShowAlmostAllItemsInExplorer": "True",
"FFlagStudioFindInAllScriptsEnabled": "True",
"FFlagImprovedNameOcclusion": "True",
"FFlagHumanoidMoveToDefaultValueEnabled": "True",
"FFlagEnableDisplayDistances": "True",
"FFlagUseMinMaxZoomDistance": "True",
"SFFlagAllowPhysicsPacketCompression": "False",
"FFlagStudioOneClickColorPickerEnabled": "True",
"DFFlagHumanoidMoveToDefaultValueEnabled": "True",
"VideoPreRollWaitTimeSeconds": "45",
"FFlagBalancingRateLimit": "True",
"FFlagLadderCheckRate": "True",
"FFlagStateSpecificAutoJump": "True",
"SFFlagOneWaySimRadiusReplication": "True",
"DFFlagApiDictionaryCompression": "True",
"SFFlagPathBasedPartMovement": "True",
"FFlagEnsureInputIsCorrectState": "False",
"DFFlagLuaLoadStringStrictSecurity": "True",
"DFFlagCrossPacketCompression": "True",
"FFlagWorkspaceLoadStringEnabledHidden": "True",
"FFlagStudioPasteAsSiblingEnabled": "True",
"FFlagStudioDuplicateActionEnabled": "True",
"FFlagPreventInterpolationOnCFrameChange": "True",
"FLogNetworkPacketsReceive": "5",
"FFlagPlayPauseFix": "True",
"DFFlagCrashOnNetworkPacketError": "False",
"FFlagHumanoidStateInterfaces": "True",
"FFlagRenderDownloadAssets": "True",
"FFlagBreakOnErrorConfirmationDialog": "True",
"FFlagStudioAnalyticsEnabled": "True",
"FFlagAutoRotateFlag": "True",
"DFFlagUseImprovedLadderClimb": "True",
"FFlagUseCameraOffset": "True",
"FFlagRenderBlobShadows": "True",
"DFFlagWebParserDisableInstances": "False",
"FFlagStudioNewWiki": "True",
"DFFlagLogPacketErrorDetails": "False",
"FFlagLimitHorizontalDragForce": "True",
"FFlagEnableNonleathalExplosions": "True",
"DFFlagCreateSeatWeldOnServer": "True",
"FFlagGraphicsUseRetina": "True",
"FFlagDynamicEnvmapEnabled": "True",
"DFFlagDeferredTouchReplication": "True",
"DFFlagCreatePlayerGuiEarlier": "True",
"DFFlagProjectileOwnershipOptimization": "True",
"DFFlagLoadSourceForCoreScriptsBeforeInserting": "False",
"GoogleAnalyticsLoadStudio": "1",
"DFFlagTaskSchedulerFindJobOpt": "True",
"SFFlagPreventInterpolationOnCFrameChange": "True",
"DFIntNumPhysicsPacketsPerStep": "2",
"DFFlagDataStoreUrlEncodingEnabled": "True",
"FFlagShowWebPlaceNameOnTabWhenOpeningFromWeb": "True",
"DFFlagTrackTimesScriptLoadedFromLinkedSource": "True",
"FFlagToggleDevConsoleThroughChatCommandEnabled": "True",
"FFlagEnableFullMonitorsResolution": "True",
"DFFlagAlwaysUseHumanoidMass": "True",
"DFFlagUseStrongerGroundControl": "True",
"DFFlagCorrectlyReportSpeedOnRunStart": "True",
"FFlagLuaDebuggerImprovedToolTip": "True",
"FFlagLuaDebuggerPopulateFuncName": "True",
"FFlagLuaDebuggerNewCodeFlow": "True",
"DFFlagValidateCharacterAppearanceUrl": "false",
"FFlagStudioQuickAccessCustomization": "True",
"DFFlagTaskSchedulerUpdateJobPriorityOnWake": "True",
"DFFlagTaskSchedulerNotUpdateErrorOnPreStep": "True",
"FFlagWikiSelectionSearch": "True",
"DFIntTaskSchedularBatchErrorCalcFPS": "1200",
"FFlagSuppressNavOnTextBoxFocus": "False",
"FFlagEnabledMouseIconStack": "True",
"DFFlagFastClone": "True",
"DFFlagLuaNoTailCalls": "True",
"DFFlagFilterStreamingProps": "True",
"DFFlagNetworkOwnerOptEnabled": "True",
"DFFlagPathfindingEnabled": "True",
"FFlagEnableiOSSettingsLeave": "True",
"FFlagUseFollowCamera": "True",
"FFlagDefaultToFollowCameraOnTouch": "True",
"DFFlagAllowMoveToInMouseLookMove": "True",
"DFFlagAllowHumanoidDecalTransparency": "True",
"DFFlagSupportCsrfHeaders": "True",
"DFFlagConfigureInsertServiceFromSettings": "True",
"FFlagPathfindingClientComputeEnabled": "True",
"DFFlagLuaResumeSupportsCeeCalls": "True",
"DFFlagPhysicsSenderErrorCalcOpt": "True",
"DFFlagClearPlayerReceivingServerLogsOnLeave": "True",
"DFFlagConsoleCodeExecutionEnabled": "True",
"DFFlagCSGDictionaryReplication": "True",
"FFlagCSGToolsEnabled": "True",
"FFlagCSGDictionaryServiceEnabled": "True",
"FFlagCSGMeshRenderEnable": "True",
"FFlagCSGChangeHistory": "True",
"FFlagCSGMeshColorEnable": "True",
"FFlagCSGMeshColorToolsEnabled": "True",
"FFlagCSGScaleEnabled": "True",
"FFlagCSGPhysicsLevelOfDetailEnabled": "True",
"FFlagCylinderUsesConstantTessellation": "True",
"FFlagStudioDraggersScaleFixes": "True",
"FFlagCSGDecalsEnabled": "True",
"FFlagCSGMigrateChildData": "True",
"SFFlagBinaryStringReplicationFix": "True",
"FFlagHummanoidScaleEnable": "True",
"FFlagStudioDataModelIsStudioFix": "True",
"DFFlagWebParserEnforceASCIIEnabled": "True",
"DFFlagScriptDefaultSourceIsEmpty": "True",
"FFlagFixCaptureFocusInput": "True",
"FFlagFireUserInputServiceEventsAfterDMEvents": "True",
"FFlagVectorErrorOnNilArithmetic": "True",
"FFlagFontSmoothScalling": "True",
"DFFlagUseImageColor": "True",
"FFlagStopNoPhysicsStrafe": "True",
"DFFlagDebugLogNetworkErrorToDB": "False",
"FFlagLowQMaterialsEnable": "True",
"FFLagEnableFullMonitorsResolution": "True",
"FFlagStudioChildProcessCleanEnabled": "True",
"DFFlagAllowFullModelsWhenLoadingModules": "True",
"DFFlagRealWinInetHttpCacheBypassingEnabled": "True",
"FFlagNewUniverseInfoEndpointEnabled": "True",
"FFlagGameExplorerEnabled": "True",
"FFlagStudioUseBinaryFormatForModelPublish": "True",
"FFlagGraphicsFeatureLvlStatsEnable": "True",
"FFlagStudioEnableWebKitPlugins": "True",
"DFFlagSendHumanoidTouchedSignal": "True",
"DFFlagReduceHumanoidBounce": "True",
"DFFlagUseNewSounds": "True",
"FFlagFixHumanoidRootPartCollision": "True",
"FFlagEnableAndroidMenuLeave": "True",
"FFlagOnlyProcessGestureEventsWhenSunk": "True",
"FFlagAdServiceReportImpressions": "True",
"FFlagStudioUseExtendedHTTPTimeout": "True",
"FFlagStudioSeparateActionByActivationMethod": "False",
"DFFlagPhysicsSenderThrottleBasedOnBufferHealth": "True",
"DFFlagGetGroupInfoEnabled": "True",
"DFFlagGetGroupRelationsEnabled": "True",
"FStringPlaceFilter_StateBasedAnimationReplication": "True;175953385;174810327;181219650",
"SFFlagTopRepContSync": "True",
"FFlagStudioUseBinaryFormatForModelSave": "True",
"EnableFullMonitorsResolution": "True",
"DFFlagRenderSteppedServerExceptionEnabled": "True",
"FFlagUseWindowSizeFromGameSettings": "True",
"DFFlagCheckStudioApiAccess": "True",
"FFlagGameExplorerPublishEnabled": "True",
"DFFlagKeepXmlIdsBetweenLoads": "True",
"DFFlagReadXmlCDataEnabled": "True",
"FFlagStudioRemoveToolSounds": "True",
"FFlagStudioOneStudGridDefault": "True",
"FFlagStudioPartSymmetricByDefault": "True",
"FFlagStudioIncreasedBaseplateSize": "True",
"FFlagSkipSilentAudioOps": "True",
"SFFlagGuid64Bit": "False",
"FIntValidateLauncherPercent": "100",
"FFlagCSGDataLossFixEnabled": "True",
"DFFlagRobloxAnalyticsTrackingEnabled": "False",
"FFlagStudioOpenLastSaved": "False",
"FFlagStudioShowTutorialsByDefault": "True",
"FFlagStudioForceToolboxSize": "True",
"FFlagStudioExplorerDisabledByDefault": "True",
"FFlagStudioDefaultWidgetSizeChangesEnabled": "True",
"FFlagStudioUseScriptAnalyzer": "True",
"FFlagNoClimbPeople": "True",
"DFFlagAnimationFormatAssetId": "True",
"FFlagGetCorrectScreenResolutionFaster": "True",
"DFFlagFixTouchEndedReporting": "False",
"FFlagStudioTeleportPlaySolo": "True",
"FFlagCSGRemoveScriptScaleRestriction": "True",
"FFlagStudioDE7928FixEnabled": "True",
"FFlagDE8768FixEnabled": "True",
"FFlagStudioDE9108FixEnabled": "True",
"FFlagStudioPlaySoloMapDebuggerData": "True",
"FFlagLuaDebuggerCloneDebugger": "True",
"FFlagRenderLightgridInPerformEnable": "True",
"SFFlagStateBasedAnimationReplication": "True",
"FFlagVolumeControlInGameEnabled": "True",
"FFlagGameConfigurerUseStatsService": "True",
"FFlagStudioUseHttpAuthentication": "True",
"FFlagDetectTemplatesWhenSettingUpGameExplorerEnabled": "True",
"FFlagEntityNameEditingEnabled": "True",
"FFlagNewCreatePlaceFlowEnabled": "True",
"FFlagFakePlayableDevices": "False",
"FFlagMutePreRollSoundService": "True",
"DFFlagBodyMoverParentingFix": "True",
"DFFlagBroadcastServerOnAllInterfaces": "True",
"HttpUseCurlPercentageWinClient": "100",
"HttpUseCurlPercentageMacClient": "100",
"HttpUseCurlPercentageWinStudio": "100",
"HttpUseCurlPercentageMacStudio": "100",
"SFFlagReplicatedFirstEnabled": "True",
"DFFlagCSGShrinkForMargin": "True",
"FFlagPhysicsBulletConnectorPointRecalc": "True",
"DFIntBulletContactBreakThresholdPercent": "200",
"DFIntBulletContactBreakOrthogonalThresholdPercent": "200",
"FFlagPhysicsBulletConnectorMatching": "True",
"FFlagPhysicsBulletUseProximityMatching": "False",
"FFlagPhysicsCSGUsesBullet": "True",
"DFFlagCSGPhysicsDeserializeRefactor": "True",
"FFlagWedgeEnableDecalOnTop": "True",
"FFlagFrustumTestGUI": "True",
"FFlagFeatureLvlsDX11BeforeDeviceCreate": "True",
"FFlagStudioPasteSyncEnabled": "True",
"FFlagResetMouseCursorOnToolUnequip": "True",
"DFFlagUpdateCameraTarget": "True",
"DFFlagFixGhostClimb": "True",
"DFFlagUseStarterPlayer": "True",
"FFlagStudioFindCrashFixEnabled": "True",
"FFlagFixPartOffset": "True",
"DFFlagLuaCloseUpvalues": "True",
"FFlagRenderTextureCompositorUseBudgetForSize": "True",
"FFlagAllowOutOfBoxAssets": "False",
"FFlagRemoveTintingWhenActiveIsFalseOnImageButton": "True",
"FFlagStudioModuleScriptDefaultContents": "True",
"FFlagStudioHomeKeyChangeEnabled": "True",
"FFlagStudioOpenStartPageForLogin": "True",
"FFlagStudioNativeKeepSavedChanges": "True",
"FFlagSerializeCurrentlyOpenPlaceWhenPublishingGame": "True",
"FFlagGameNameLabelEnabled": "True",
"FFlagStudioValidateBootstrapper": "True",
"FFlagRakNetReadFast": "True",
"DFFlagPhysicsSenderSleepingUpdate": "True",
"FFlagUseShortShingles": "True",
"FFlagKKTChecks": "False",
"DFFlagUseApiProxyThrottling": "True",
"DFFlagValidateSetCharacter": "True",
"DFFlagUpdateHumanoidSimBodyInComputeForce": "True",
"DFFlagNetworkPendingItemsPreserveTimestamp": "True",
"FFlagStudioCSGRotationalFix": "True",
"FFlagNewLoadingScreen": "True",
"FFlagScrollingFrameOverridesButtonsOnTouch": "True",
"DFFlagStreamLargeAudioFiles": "True",
"DFFlagNewLuaChatScript": "True",
"DFFlagLoopedDefaultHumanoidAnimation": "True",
"FFlagSoundsRespectDelayedStop": "False",
"DFFlagCSGPhysicsErrorCatchingEnabled": "True",
"DFFlagFireStoppedAnimSignal": "True",
"FFlagStudioFixToolboxReload": "True",
"FFlagCSGDecalsV2": "True",
"FFlagLocalOptimizer": "True",
"DFFlagClearFailedUrlsWhenClearingCacheEnabled": "True",
"DFFlagSupportNamedAssetsShortcutUrl": "True",
"DFFlagUseW3CURIParser": "True",
"DFFlagContentProviderHttpCaching": "True",
"FFlagNoWallClimb": "False",
"FFlagSmoothMouseLock": "False",
"DFFlagCSGPhysicsNanPrevention": "True",
"FFlagStudioDE9818FixEnabled": "True",
"FFlagGameExplorerImagesEnabled": "True",
"FFlagStudioInsertOrientationFix": "True",
"FFlagStudioTabOrderingEnabled": "True",
"FFlagFramerateDeviationDroppedReport": "True",
"FFlagModuleScriptsPerVmEnabled": "False",
"FFlagGameExplorerImagesInsertEnabled": "True",
"FFlagTexturePropertyWidgetEnabled": "True",
"FFlagReloadAllImagesOnDataReload": "True",
"FFlagModuleScriptsPerVmEnabledFix2": "True",
"DFFlagFixBufferZoneContainsCheck": "False",
"FFlagStudioPlaceAssetFromToolbox": "True",
"FFlagChannelMasterMuting": "True",
"FFlagStudioUseDelayedSyntaxCheck": "True",
"FFlagStudioCommandLineSaveEditText": "True",
"FFlagStudioAddHelpInContextMenu": "True",
"DFIntHttpCacheCleanMinFilesRequired": "10000",
"DFIntHttpCacheCleanMaxFilesToKeep": "7500",
"FFlagCSGVoxelizer": "True",
"DFFlagCheckApiAccessInTransactionProcessing": "True",
"FFlagBindPurchaseValidateCallbackInMarketplaceService": "True",
"FFlagSetDataModelUniverseIdAfterPublishing": "True",
"FFlagOpenScriptWorksOnModulesEnabled": "True",
"FFlagStudioRibbonBarNewLayout": "True",
"FFlagStudioRibbonBarLayoutFixes": "True",
"FFlagStudioPlaceOnlineIndicator": "True",
"FFlagRenderWangTiles": "True",
"FFlagDisableBadUrl": "True",
"FFlagPrimalSolverLogBarrierIP": "True",
"FFlagDualSolverSimplex": "True",
"FFlagPrimalSolverSimplex": "True",
"FIntNumSmoothingPasses": "3",
"FFlagVerifyConnection": "True",
"FIntRegLambda": "1400",
"FFlagScriptAnalyzerPlaceholder": "True",
"FFlagStudioCSGAssets": "True",
"FFlagCSGStripPublishedData": "True",
"DFFlagRaycastReturnSurfaceNormal": "True",
"FFlagMoveGameExplorerActionsIntoContextMenu": "True",
"FFlagStudioAdvanceCookieExpirationBugFixEnabled": "True",
"FFlagNewBackpackScript": "True",
"FFlagNewPlayerListScript": "True",
"FFlagGameNameAtTopOfExplorer": "True",
"FFlagStudioActActionsAsTools": "True",
"FFlagStudioInsertAtMouseClick": "True",
"FFlagStopLoadingStockSounds": "True",
"DFFlagFixTimePositionReplication": "True",
"DFFlagHttpReportStatistics": "True",
"DFFlagEnableChatTestingInStudio": "True",
"DFIntHttpSendStatsEveryXSeconds": "300",
"FLogStepAnimatedJoints": "5",
"DFFlagLuaDisconnectFailingSlots": "False",
"DFFlagEnsureSoundPosIsUpdated": "True",
"DFFlagLoadStarterGearEarlier": "False",
"DFFlagBlockUsersInLuaChat": "True",
"FFlagRibbonPartInsertNotAllowedInModel": "True",
"DFFlagUsePlayerScripts": "True",
"DFFlagUserAccessUserSettings": "True",
"DFFlagUseLuaCameraAndControl": "True",
"DFFlagUseLuaPCInput": "True",
"DFFlagFixLuaMoveDirection": "True",
"DFFlagUseDecalLocalTransparencyModifier": "True",
"DFFlagUseFolder": "True",
"DFFlagUsePreferredSpawnInPlaySoloTeleport": "True",
"DFFlagFilterAddSelectionToSameDataModel": "False",
"FFlagGameExplorerAutofillImageNameFromFileName": "True",
"FFlagGameExplorerBulkImageUpload": "True",
"FFlagStudioAllowAudioSettings": "True",
"DFFlagUsePlayerInGroupLuaChat": "True",
"FFlagStudioDecalPasteFix": "True",
"FFlagStudioCtrlTabDocSwitchEnabled": "True",
"DFIntDraggerMaxMovePercent": "60",
"FFlagUseUniverseGetInfoCallToDetermineUniverseAccess": "True",
"FFlagMaxFriendsCount": "True",
"DFIntPercentApiRequestsRecordGoogleAnalytics": "0",
"FFlagSelectSpinlock": "True",
"FFlagFastZlibPath": "True",
"DFFlagWriteXmlCDataEnabled": "True",
"DFFlagUseSpawnPointOrientation": "True",
"DFFlagUsePlayerSpawnPoint": "True",
"DFFlagCSGPhysicsRecalculateBadContactsInConnectors": "True",
"FFlagStudioPartAlignmentChangeEnabled": "True",
"FFlagStudioToolBoxModelDragFix": "True",
"DFFlagOrder66": "False",
"FFlagCloudIconFixEnabled": "True",
"DFFlagFixHealthReplication": "True",
"DFFlagReplicateAnimationSpeed": "True",
"FFlagSurfaceLightEnabled": "True",
"FFlagLuaFollowers": "True",
"FFlagNewNotificationsScript": "True",
"FFlagStudioSendMouseIdleToPluginMouse": "True",
"DFFlagPhysicsOptimizeAssemblyHistory": "True",
"DFFlagPhysicsOptimizeBallBallContact": "True",
"DFFlagUseNewBubbleSkin": "True",
"DFFlagUse9FrameBackgroundTransparency": "True",
"DFFlagCheckForHeadHit": "False",
"DFFlagUseHttpsForAllCalls": "True",
"DFFlagLoadCoreModules": "True",
"FFlagStudioRecentSavesEnabled": "True",
"FFlagStudioToolBoxInsertUseRayTrace": "True",
"FFlagInterpolationUseWightedDelay": "True",
"FFlagNewPurchaseScript": "True",
"FFlagStudioEnableGamepadSupport": "True",
"FFlagStudioRemoveDuplicateParts": "True",
"FFlagStudioLaunchDecalToolAfterDrag": "True",
"DFFlagHumanoidFloorPVUpdateSignal": "True",
"DFFlagHumanoidFloorDetectTeleport": "True",
"DFFlagHumanoidFloorForceBufferZone": "False",
"DFFlagHumanoidFloorManualDeltaUpdateManagment": "True",
"DFFlagHumanoidFloorManualFrictionLimitation": "True",
"FStringPlaceFilter_InterpolationTimingFix": "True;208770506",
"DFFlagUpdateHumanoidNameAndHealth": "True",
"DFFlagEnableHumanoidDisplayDistances": "True",
"FFlagFixTouchInputEventStates": "False",
"DFFlagInterpolationTimingFix": "True",
"FIntRenderGBufferMinQLvl": "16",
"FFlagResizeGuiOnStep": "True",
"FFlagDontFireFakeMouseEventsOnUIS": "True",
"FFlagCameraUseOwnViewport": "True",
"FFlagGameExplorerMoveImagesUnderAssetsGroup": "True",
"DFFlagNetworkFilterAllowToolWelds": "True",
"DFIntHttpInfluxHundredthsPercentage": "5",
"DFStringHttpInfluxURL": "http://ec2-54-84-170-153.compute-1.amazonaws.com:8086",
"DFStringHttpInfluxDatabase": "prod",
"DFStringHttpInfluxUser": "rob",
"DFStringHttpInfluxPassword": "faster1Play",
"FFlagStudioSpawnLocationsDefaultValues": "True",
"FFlagStudioDE11536FixEnabled": "True",
"FFlagStudioRibbonGroupResizeFixEnabled": "True",
"FFlagGradientStep": "True",
"FFlagUseNewContentProvider": "False",
"SFFlagEquipToolOnClient": "True",
"FFlagStartWindowMaximizedDefault": "True",
"FFlagUseNewKeyboardHandling": "True",
"FFlagCameraZoomNoModifier": "True",
"DFFlagRemoteValidateSubscribersError": "True",
"FFlagNewMenuSettingsScript": "True",
"DFFlagHttpCurlSanitizeUrl": "True",
"DFFlagRemoveDataModelDependenceInWaitForChild": "True",
"FFlagFilterAddSelectionToSameDataModel": "True",
"DFFlagUseCanManageApiToDetermineConsoleAccess": "True",
"DFIntMoveInGameChatToTopPlaceId": "1",
"FFlagStudioProgressIndicatorForInsertEnabled": "True",
"FFlagTerrainLazyGrid": "True",
"FFlagHintsRenderInUserGuiRect": "True",
"DFFlagCustomEmitterInstanceEnabled": "True",
"FFlagCustomEmitterRenderEnabled": "True",
"FFlagCustomEmitterLuaTypesEnabled": "True",
"FFlagCallSetFocusFromCorrectThread": "True",
"FFlagFastRevert": "True",
"FFlagSleepBeforeSpinlock": "True",
"FFlagSparseCheckFastFail": "True",
"FFlagStudioSmoothTerrainPlugin": "True",
"FFlagStudioLoadPluginsLate": "True",
"FFlagStudioInsertIntoStarterPack": "True",
"FFlagStudioIgnoreSSLErrors": "True",
"DFFlagFixJointReparentingDE11763": "True",
"DFFlagPhysicsInvalidateContactCache": "True",
"FFlagLuaMathNoise": "True",
"FFlagArcHandlesBidirectional": "True",
"FFlagChangeHistoryFixPendingChanges": "True",
"DFFlagWorkspaceSkipTerrainRaycastForSurfaceGui": "True",
"FFlagStudioBatchItemMapAddChild": "True",
"FFlagRenderCameraFocusFix": "True",
"DFFlagReplicatorWorkspaceProperties": "True",
"FFlagDirectX11Enable": "True",
"FFlagCheckDegenerateCases": "True",
"DFFlagUseServerCoreScripts": "True",
"DFFlagCorrectFloorNormal": "True",
"FFlagNewBadgeServiceUrlEnabled": "True",
"FFlagBubbleChatbarDocksAtTop": "True",
"FFlagSmoothTerrainClient": "True",
"FFlagLuaUseBuiltinEqForEnum": "True",
"FFlagPlaceLauncherThreadCheckDmClosed": "True",
"DFFlagAppendTrackerIdToTeleportUrl": "True",
"FFlagPlayerMouseRespectGuiOffset": "True",
"DFFlagReportElevatedPhysicsFPSToGA": "True",
"DFFlagPreventReturnOfElevatedPhysicsFPS": "True",
"FFlagStudioIgnoreMouseMoveOnIdle": "True",
"FFlagStudioDraggerFixes": "True",
"FLogUseLuaMemoryPool": "0",
"FFlagCSGNewTriangulate": "True",
"DFFlagLuaFixResumeWaiting": "True",
"FFlagFRMInStudio": "True",
"DFFlagFixLadderClimbSpeed": "True",
"DFFlagNoWalkAnimWeld": "False",
"DFFlagImprovedKick": "True",
"FFlagRenderFixLightGridDirty": "True",
"FFlagLoadLinkedScriptsOnDataModelLoad": "True",
"FFlagFixMeshOffset": "True",
"FIntLaunchInfluxHundredthsPercentage": "0",
"DFIntJoinInfluxHundredthsPercentage": "100",
"FFlagSmoothTerrain": "True",
"FFlagNewVehicleHud": "True",
"DFFlagHumanoidStandOnSeatDestroyed": "True",
"DFFlagGuiBase3dReplicateColor3WithBrickColor": "True",
"FFlagTaskSchedulerCyclicExecutiveStudio": "True",
"DFIntElevatedPhysicsFPSReportThresholdTenths": "585",
"DFIntExpireMarketPlaceServiceCacheSeconds": "60",
"DFFlagEnableMarketPlaceServiceCaching": "True",
"DFFlagUseNewAnalyticsApi": "True",
"DFFlagSmoothTerrainDebounceUpdates": "True",
"FFlagStudioAuthenticationCleanup": "True",
"FFlagRenderFixGBufferLOD": "True",
"FFlagStudioDraggerCrashFixEnabled": "True",
"FFlagDraggerCrashFixEnabled": "True",
"DFFlagEnableRapidJSONParser": "True",
"DFFlagPushLuaWorldRayOriginToNearClipPlane": "True",
"FFlagLoadTimeModificationTestFlag": "True",
"DFFlagPhysicsFastSmoothTerrainUpdate": "True",
"DFFlagSmoothTerrainPhysicsExpandPrimitiveOptimal": "True",
"DFFlagFixBytesOnJoinReporting": "True",
"FFlagRenderGBufferEverywhere": "False",
"DFFlagSmoothTerrainPhysicsRayAabbExact": "True",
"DFIntSmoothTerrainPhysicsRayAabbSlop": "1",
"DFIntMaxClusterKBPerSecond": "300",
"FLogLuaAssert": "0",
"FFlagSmoothTerrainCountCellVolume": "True",
"DFFlagSmoothTerrainWorldToCellUseDiagonals": "True",
"DFFlagFireSelectionChangeOncePerChange": "True",
"FIntLuaAssertCrash": "0",
"FFlagAlternateFontKerning": "True",
"FFlagRenderFixCameraFocus": "False",
"DFFlagCSGPhysicsSphereRotationIdentity": "True",
"DFFlagCSGPhysicsRefreshContactsManually": "True",
"FFlagStudioUndoEnabledForEdit": "True",
"DFIntLuaChatFloodCheckMessages": "7",
"DFIntLuaChatFloodCheckInterval": "15",
"FFlagLuaChatFiltering": "True",
"FFlagMobileToggleChatVisibleIcon": "True",
"FFlagGlowEnabled": "True",
"FFlagStudioDE9132FixEnabled": "True",
"DFFlagHttpCurlHandle301": "True",
"FFlagClientABTestingEnabled": "False",
"FFlagStudioSmoothTerrainForNewPlaces": "True",
"FFlagUsePGSSolver": "True",
"FFlagSimplifyKeyboardInputPath": "False",
"FFlagNewInGameDevConsole": "True",
"DFFlagUseNewFullscreenLogic": "True",
"DFFlagGetUserIdEnabled": "True",
"DFFlagGetUserNameEnabled": "True",
"DFFlagEnableAnimationInformationAccess": "True",
"DFFlagEnableAnimationTrackExtendedAPI": "True",
"FFlagRequestServerStatsV2Enabled": "True",
"FFlagPhysicsPreventGroupDraggerPlacementToMinus400_DE6267": "True",
"FFlagSpecificUserdataTypeErrors": "True",
"DFFlagScrollingFrameDraggingFix": "True",
"FFlagAutodetectCPU": "True",
"DFFlagSetRenderedFrameOnClumpChanged": "True",
"DFFlagDisableTimeoutDuringJoin": "True",
"DFFlagDesiredAltitudeDefaultInf": "True",
"DFFlagRCCDE13316CrashFix": "True",
"DFFlagUseStarterPlayerGA": "True",
"FFlagScrollingFrameMouseUpFix": "True",
"DFFlagDebrisServiceUseDestroy": "True",
"DFFlagAccessUserFeatureSetting": "True",
"DFFlagAllowBindActivate": "True",
"FFlagEnableControllerGuiSelection": "True",
"FFlagUseNewSoftwareMouseRender": "True",
"DFFlagDoNotHoldTagItemsForInitialData": "True",
"FFlagAltSpinlock": "True",
"FFlagSpinlock": "True",
"FFlagGraphicsGLReduceLatency": "True",
"DFFlagMovingHumananoidWakesFloor": "True",
"DFFlagSetNetworkOwnerAPIEnabled": "True",
"DFFlagSetNetworkOwnerAPIEnabledV2": "True",
"DFFlagGetFriendsEnabled": "True",
"DFFlagGetFriendsOnlineEnabled": "True",
"DFFlagUseNewTextBoxLogic": "True",
"FFlagOnScreenProfilerGPU": "True",
"FFlagConfigurableLineThickness": "True",
"DFFlagSpawnPointEnableProperty": "True",
"DFFlagConfigurableFallenPartDestroyHeight": "True",
"DFFlagMiddleMouseButtonEvent": "True",
"DFFlagEnablePreloadAsync": "True",
"DFFlagFoldersInGUIs": "True",
"DFFlagUserUseLuaVehicleController": "True",
"DFIntAndroidInfluxHundredthsPercentage": "0",
"FStringPlaceFilter_SetNetworkOwnerAPIEnabled": "True;13822889;257857728",
"FStringPlaceFilter_SetNetworkOwnerAPIEnabledV2": "True;13822889;257857728",
"DFFlagNoOwnershipLogicOnKernelJoint": "True",
"DFFlagEnableGetPlayingAnimationTracks": "True",
"FFlagCyclicExecutivePriorityJobs": "True",
"DFIntMaxMissedWorldStepsRemembered": "16",
"DFIntMacInfluxHundredthsPercentage": "0",
"DFIntiOSInfluxHundredthsPercentage": "100",
"FFlagStudioLockServiceParents": "True",
"DFFlagFirePlayerAddedAndPlayerRemovingOnClient": "True",
"DFFlagRecursiveWakeForBodyMovers": "True",
"DFFlagEnableHumanoidSetStateEnabled": "True",
"DFFlagSoundEndedEnabled": "True",
"DFFlagUseIntersectingOthersForSpawnEnabled": "True",
"DFFlagMoveToDontAlignToGrid": "True",
"DFFlagIsBestFriendsWithReturnFriendsWith": "True",
"DFFlagPlayerOwnsAssetFalseForInvalidUsers": "True",
"DFFlagIsUrlCheckAssetStringLength": "True",
"DFFlagEnableGoodbyeDialog": "True",
"DFFlagEnableReverseAnimations": "True",
"DFFlagEnableAnimationSetTimePosition": "True",
"DFFlagEnableMobileAutoJumpFlag": "True",
"DFFlagHttpDelaySendInfluxStats": "True",
"DFFlagDisableRequestMarker": "True",
"DFFlagDisableCharacterRequest": "True",
"FFlagStudioCollapsibleTutorials": "True",
"FStringStudioTutorialsUrl": "http://wiki.tadah.rocks/index.php?title=Studio_Tutorials_Test&studiomode=true",
"FStringStudioTutorialsTOCUrl": "http://wiki.tadah.rocks/index.php?title=Studio_Tutorials_Landing&studiomode=true",
"FFlagSandboxHash": "True",
"FFlagDE14316CrashFix": "True",
"FFlagDE14317CrashFix": "True",
"DFFlagSetNetworkOwnerCanSetCheck": "True",
"DFFlagLiveColorUpdatesCanceling": "True",
"DFFlagLuaGcPerVm": "True",
"FFlagGraphicsGLDisableDiscard": "True",
"FFlagStudioDeviceEmulationTouchInputFix": "True",
"FFlagTaskSchedulerCyclicExecutive": "True",
"DFFlagMakeWebPendingFriendRequests": "True",
"DFFlagGetLastestAssetVersionEnabled": "True",
"FFlagHideDeprecatedEnums": "True",
"FFlagSubmitEditedColor3WhenFocusLost": "True",
"DFFlagFixScriptableCameraRoll": "True",
"DFFlagSeparateBulletNarrowPhaseAndMidStepUpdates": "True",
"DFFlagUsePGSSolverSpringConstantScale": "True",
"DFFlagToolRequiresHandleProperty": "True",
"FFlagPlayerScriptsNotArchivable": "True",
"DFFlagClearAllChildrenUseDestroy": "True",
"DFFlagMaxPlayersEnabled": "True",
"DFFlagPreferredPlayersEnabled": "True",
"DFFlagLocalHumanoidSoundsEnabled": "True",
"DFFlagIncreaseSoundPositionClampLimit": "True",
"DFFlagNameOcculsionIgnoreTransparent": "True",
"DFFlagReconstructAssetUrlNew": "True",
"DFFlagAdjustFloorForce": "True",
"DFFlagFixAnimationPhaseInitialization": "True",
"FFlagLuaChatPhoneFontSize": "True",
"DFFlagUseAssetTypeHeader": "True",
"FStringPlaceFilter_ReservedServersEnabled": "True;107715348",
"FFlagCSGUnionCatchUnknownExceptions": "False",
"FIntGamePerfMonitorPercentage": "10",
"FFlagSoundTypeCheck": "True",
"DFFlagIncreaseScrollWheelMultiplyTime": "True",
"FFlagMacRemoveUserInputJob": "True",
"FFlagStudioNewFonts": "True",
"DFFlagApiCapitalizationChanges": "True",
"FFlagParticleCullFix": "True",
"DFFlagVideoCaptureTeleportFix": "False",
"DFFlagCoreGuiCustomizationApi": "True",
"DFFlagCustomTeleportLoadingScreen": "True",
"DFFlagCharacterAppearanceLoadedEnabled": "True",
"DFFlagVIPServerOwnerIdEnabled": "True",
"DFFlagEnableParticleVelocityInheritance": "True",
"DFFlagEnableParticleEmissionDirection": "True",
"DFFlagFixParticleDistribution": "True",
"DFFlagEnableParticleNewBoundingBox": "True",
"DFFlagEnableParticlePartLock": "True",
"DFFlagEnableParticleBurst": "True",
"DFFlagNoRunSteepSlope": "True",
"DFFlagHumanoidJumpPower": "True",
"FFlagControllerMenu": "True",
"FFlagFlyCamOnRenderStep": "True",
"DFFlagFullscreenEnabledWhileRecording": "True",
"DFFlagPreProcessTextBoxEvents": "True",
"DFFlagAllowHideHudShortcut": "False",
"DFFlagFixBallInsideBlockCollision": "True",
"FFlagPGSSolverBodyCacheLeakFix": "True",
"FFlagFixCrashAtShutdown": "True",
"DFFlagEquipClonedToolFix": "True",
"FFlagGamepadCursorChanges": "True",
"DFFlagCreatePlayerGuiLocal": "False",
"DFFlagDontUseInsertServiceOnAnimLoad": "True",
"DFFlagCyclicExecutiveFixNonCyclicJobRun": "True",
"DFFlagPhysicsFPSTimerFix": "True",
"FFlagCyclicExecutiveRenderJobRunsFirst": "True",
"FFlagPhysicsCylinders": "True",
"DFFlagPhysicsUseNewBulletContact": "True",
"FFlagReadCoordinateFrameFast": "False",
"DFFlagRayHitMaterial": "True",
"DFFlagPromptPurchaseOnGuestHandledInCoreScript": "True",
"DFFlagNonEmptyPcallError": "True",
"DFFlagDisplayTextBoxTextWhileTypingMobile": "False",
"DFFlagOverrideScollingDisabledWhenRecalulateNeeded": "True",
"DFFlagFixScrollingOffSurfaceGUIs": "True",
"DFFlagTextScaleDontWrapInWords": "True",
"DFFlagListenPositionEnabled": "True",
"DFFlagGetCharacterAppearanceEnabled": "True",
"DFFlagBackTabInputInStudio": "True",
"DFFlagTrackLastDownGUI": "True",
"DFFlagBulletFixCacheReuse": "True",
"DFFlagFastFilterHumanoidParts": "False",
"DFFlagProcessAcceleratorsBeforeGUINaviagtion": "True",
"DFFlagImageFailedToLoadContext": "True",
"DFFlagDontReorderScreenGuisWhenDescendantRemoving": "True",
"DFFlagSoundFailedToLoadContext": "True",
"DFFlagAnimationFailedToLoadContext": "True",
"DFFlagElasticEasingUseTwoPi": "True",
"SFFlagNetworkUseServerScope": "True",
"DFFlagHttpZeroLatencyCaching": "True",
"DFFlagPasteWithCapsLockOn": "True",
"DFFlagScriptExecutionContextApi": "True",
"DFFlagGetFocusedTextBoxEnabled": "True",
"DFFlagTextBoxIsFocusedEnabled": "True",
"DFFlagHttpCurlDomainTrimmingWithBaseURL": "False",
"DFFlagLoadFileUseRegularHttp": "True",
"DFFlagReplicatorCheckBadRebinding": "True",
"FFlagFastClusterThrottleUpdateWaiting": "True",
"DFFlagDeserializePacketThreadEnabled": "True",
"FFlagFontSizeUseLargest": "True",
"DFFlagRejectHashesInLinkedSource": "True",
"FFlagUpdatePrimitiveStateForceSleep": "True",
"FFlagPhysicsUseKDTreeForCSG": "True",
"DFFlagCSGLeftoverDataFix": "True",
"DFFlagGetGroupsAsyncEnabled": "True",
"FFlagStudioTutorialSeeAll": "True",
"DFFlagLimitScrollWheelMaxToHalfWindowSize": "True",
"FFlagGameExplorerCopyPath": "True",
"DFFlagFixRotatedHorizontalScrollBar": "True",
"DFFlagFixAnchoredSeatingPosition": "True",
"FFlagFixSlice9Scale": "True",
"DFFlagFullscreenRefocusingFix": "True",
"DFFlagEnableClimbingDirection": "True",
"FFlagPGSGlueJoint": "True",
"FFlagTweenCallbacksDuringRenderStep": "True",
"FFlagFRMFixCullFlicker": "True",
"DFFlagDisableProcessPacketsJobReschedule": "True",
"FFlagCSGVoxelizerPrecompute": "False",
"FFlagLazyRenderingCoordinateFrame": "True",
"FFlagPGSSteppingMotorFix": "True",
"FFlagGameExplorerCopyId": "True",
"DFFlagLockViolationScriptCrash": "False",
"DFFlagLockViolationInstanceCrash": "False",
"FFlagSpheresAllowedCustom": "True",
"DFFlagHumanoidCookieRecursive": "True",
"FFlagRwxFailReport": "True",
"FIntStudioInsertDeletionCheckTimeMS": "30000",
"DFFlagClampRocketThrustOnPGS": "True",
"DFFlagPGSWakePrimitivesWithBodyMoverPropertyChanges": "True",
"FFlagPGSUsesConstraintBasedBodyMovers": "True",
"FFlagUseNewSubdomainsInCoreScripts": "True",
"DFFlagEnableShowStatsLua": "True",
"FFlagSmoothTerrainPacked": "True",
"FFlagGraphicsGL3": "True",
"DFFlagUrlReconstructToAssetGame": "False",
"FFlagPGSApplyImpulsesAtMidpoints": "True",
"FFlagModifyDefaultMaterialProperties": "True",
"FIntPhysicalPropFriction_SMOOTH_PLASTIC_MATERIAL": "200",
"FIntPhysicalPropFriction_PLASTIC_MATERIAL": "300",
"FIntPhysicalPropFriction_NEON_MATERIAL": "300",
"FIntPhysicalPropFriction_SNOW_MATERIAL": "300",
"FIntPhysicalPropFriction_ALUMINUM_MATERIAL": "400",
"FIntPhysicalPropFriction_BRICK_MATERIAL": "800",
"FIntPhysicalPropFriction_CONCRETE_MATERIAL": "700",
"FIntPhysicalPropFriction_DIAMONDPLATE_MATERIAL": "350",
"FIntPhysicalPropFriction_SANDSTONE_MATERIAL": "500",
"FIntPhysicalPropFriction_SAND_MATERIAL": "500",
"FIntPhysicalPropFWeight_ICE_MATERIAL": "3000",
"FIntPhysicalPropFWeight_BRICK_MATERIAL": "300",
"FIntPhysicalPropFWeight_CONCRETE_MATERIAL": "300",
"FIntPhysicalPropFWeight_SANDSTONE_MATERIAL": "5000",
"FIntPhysicalPropFWeight_BASALT_MATERIAL": "300",
"FIntPhysicalPropFWeight_SAND_MATERIAL": "5000",
"FIntPhysicalPropElasticity_SAND_MATERIAL": "50",
"FIntPhysicalPropElasticity_SNOW_MATERIAL": "30",
"FIntPhysicalPropElasticity_MUD_MATERIAL": "70",
"FIntPhysicalPropElasticity_GROUND_MATERIAL": "100",
"FIntPhysicalPropElasticity_MARBLE_MATERIAL": "170",
"FIntPhysicalPropElasticity_BRICK_MATERIAL": "150",
"FIntPhysicalPropElasticity_PEBBLE_MATERIAL": "170",
"FIntPhysicalPropElasticity_COBBLESTONE_MATERIAL": "170",
"FIntPhysicalPropElasticity_ROCK_MATERIAL": "170",
"FIntPhysicalPropElasticity_SANDSTONE_MATERIAL": "150",
"FIntPhysicalPropElasticity_BASALT_MATERIAL": "150",
"FIntPhysicalPropElasticity_CRACKED_LAVA_MATERIAL": "150",
"FIntPhysicalPropElasticity_FABRIC_MATERIAL": "50",
"FIntPhysicalPropElasticity_WOOD_MATERIAL": "200",
"FIntPhysicalPropElasticity_WOODPLANKS_MATERIAL": "200",
"FIntPhysicalPropElasticity_ICE_MATERIAL": "150",
"FIntPhysicalPropElasticity_GLACIER_MATERIAL": "150",
"FIntPhysicalPropElasticity_RUST_MATERIAL": "200",
"FIntPhysicalPropElasticity_DIAMONDPLATE_MATERIAL": "250",
"FIntPhysicalPropElasticity_ALUMINUM_MATERIAL": "250",
"FIntPhysicalPropElasticity_METAL_MATERIAL": "250",
"FIntPhysicalPropElasticity_GRASS_MATERIAL": "100",
"DFFlagFixSeatingWhileSitting": "True",
"FFlagPGSSolverDefaultOnNewPlaces": "True",
"FFlagPGSVariablePenetrationMargin": "False",
"FFlagStudioEnableGameAnimationsTab": "True",
"FIntPGSPentrationMarginMax": "50000",
"FFlagStudioHideMouseCoursorOnCommand": "True",
"SFFlagNewPhysicalPropertiesForcedOnAll": "True",
"SFFlagMaterialPropertiesNewIsDefault": "True",
"DFFlagMaterialPropertiesEnabled": "True",
"FFlagWaterParams": "True",
"FFlagSpatialHashMoreRoots": "True",
"FFlagSkipAdornIfWorldIsNull": "True",
"FFlagLuaBasedBubbleChat": "True",
"DFFlagNetworkOwnershipRuleReplicates": "True",
"DFFlagSmoothTerrainWriteVoxelsOccupancyFix": "True",
"DFFlagCloudEditByPassCheckForServer": "True",
"DFFlagDraggerUsesNewPartOnDuplicate": "True",
"DFFlagRestoreTransparencyOnToolChange": "False",
"FFlagEnableLuaFollowers": "False",
"DFFlagUserServerFollowers": "True",
"DFFlagWorkspaceNotificationMasterEnable": "False",
"FFlagNetworkReplicateTerrainProperties": "True",
"FFlagAllowInsertFreeModels": "False",
"FFlagInsertUnderFolder": "True",
"DFFlagPGSWakeOtherAssemblyForJoints": "True",
"FFlagStudioPropertySliderEnabled": "True",
"DFFlagSetNetworkOwnerFixAnchoring": "True",