-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProperties.lua
More file actions
916 lines (916 loc) · 33.6 KB
/
Properties.lua
File metadata and controls
916 lines (916 loc) · 33.6 KB
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
return {
["a"] = "A",
["absolutecontentsize"] = "AbsoluteContentSize",
["absoluteposition"] = "AbsolutePosition",
["absoluterotation"] = "AbsoluteRotation",
["absolutesize"] = "AbsoluteSize",
["absolutewindowsize"] = "AbsoluteWindowSize",
["acceleration"] = "Acceleration",
["accelerometerenabled"] = "AccelerometerEnabled",
["accountage"] = "AccountAge",
["actionid"] = "ActionId",
["active"] = "Active",
["actuatortype"] = "ActuatorType",
["additionalcoreincludedirs"] = "AdditionalCoreIncludeDirs",
["additionalluastate"] = "AdditionalLuaState",
["adornee"] = "Adornee",
["allowcustomanimations"] = "AllowCustomAnimations",
["allowinsertfreemodels"] = "AllowInsertFreeModels",
["allowsleep"] = "AllowSleep",
["allowteamchangeontouch"] = "AllowTeamChangeOnTouch",
["allowthirdpartysales"] = "AllowThirdPartySales",
["alltutorialsdisabled"] = "AllTutorialsDisabled",
["alwaysontop"] = "AlwaysOnTop",
["ambient"] = "Ambient",
["ambientreverb"] = "AmbientReverb",
["anchored"] = "Anchored",
["anchorpoint"] = "AnchorPoint",
["angle"] = "Angle",
["angularactuatortype"] = "AngularActuatorType",
["angularlimitsenabled"] = "AngularLimitsEnabled",
["angularrestitution"] = "AngularRestitution",
["angularspeed"] = "AngularSpeed",
["angularvelocity"] = "AngularVelocity",
["animated"] = "Animated",
["animation"] = "Animation",
["animationid"] = "AnimationId",
["appearancedidload"] = "AppearanceDidLoad",
["applyatcenterofmass"] = "ApplyAtCenterOfMass",
["archivable"] = "archivable",
["areanchorsshown"] = "AreAnchorsShown",
["areassembliesshown"] = "AreAssembliesShown",
["areawakepartshighlighted"] = "AreAwakePartsHighlighted",
["arebodytypesshown"] = "AreBodyTypesShown",
["arecontactislandsshown"] = "AreContactIslandsShown",
["arecontactpointsshown"] = "AreContactPointsShown",
["arehingesdetected"] = "AreHingesDetected",
["arejointcoordinatesshown"] = "AreJointCoordinatesShown",
["aremechanismsshown"] = "AreMechanismsShown",
["aremodelcoordsshown"] = "AreModelCoordsShown",
["areownersshown"] = "AreOwnersShown",
["arepartcoordsshown"] = "ArePartCoordsShown",
["arephysicsrejectionsreported"] = "ArePhysicsRejectionsReported",
["areregionsshown"] = "AreRegionsShown",
["arescriptstartsreported"] = "AreScriptStartsReported",
["areunalignedpartsshown"] = "AreUnalignedPartsShown",
["areworldcoordsshown"] = "AreWorldCoordsShown",
["aspectratio"] = "AspectRatio",
["aspecttype"] = "AspectType",
["attachment0"] = "Attachment0",
["attachment1"] = "Attachment1",
["attachmentforward"] = "AttachmentForward",
["attachmentpoint"] = "AttachmentPoint",
["attachmentpos"] = "AttachmentPos",
["attachmentright"] = "AttachmentRight",
["attachmentup"] = "AttachmentUp",
["attack"] = "Attack",
["autoassignable"] = "AutoAssignable",
["autobuttoncolor"] = "AutoButtonColor",
["autocolorcharacters"] = "AutoColorCharacters",
["autofrmlevel"] = "AutoFRMLevel",
["autojumpenabled"] = "AutoJumpEnabled",
["autolocalize"] = "AutoLocalize",
["automaticretry"] = "AutomaticRetry",
["automaticscalingenabled"] = "AutomaticScalingEnabled",
["autorotate"] = "AutoRotate",
["autoruns"] = "AutoRuns",
["autoselectguienabled"] = "AutoSelectGuiEnabled",
["axes"] = "Axes",
["axis"] = "Axis",
["b"] = "B",
["backgroundcolor"] = "BackgroundColor",
["backgroundcolor3"] = "BackgroundColor3",
["backgroundtransparency"] = "BackgroundTransparency",
["backparama"] = "BackParamA",
["backparamb"] = "BackParamB",
["backsurface"] = "BackSurface",
["backsurfaceinput"] = "BackSurfaceInput",
["baseangle"] = "BaseAngle",
["basetextureid"] = "BaseTextureId",
["baseurl"] = "BaseUrl",
["behaviortype"] = "BehaviorType",
["bintype"] = "BinType",
["blastpressure"] = "BlastPressure",
["blastradius"] = "BlastRadius",
["bodypart"] = "BodyPart",
["bordercolor"] = "BorderColor",
["bordercolor3"] = "BorderColor3",
["bordersizepixel"] = "BorderSizePixel",
["bottombarsize"] = "BottomBarSize",
["bottomimage"] = "BottomImage",
["bottomparama"] = "BottomParamA",
["bottomparamb"] = "BottomParamB",
["bottomsurface"] = "BottomSurface",
["bottomsurfaceinput"] = "BottomSurfaceInput",
["brickcolor"] = "brickColor",
["brightness"] = "Brightness",
["browsable"] = "Browsable",
["bubblechat"] = "BubbleChat",
["bubblechatlifetime"] = "BubbleChatLifetime",
["bubblechatmaxbubbles"] = "BubbleChatMaxBubbles",
["c"] = "C",
["c0"] = "C0",
["c1"] = "C1",
["cameramaxzoomdistance"] = "CameraMaxZoomDistance",
["cameraminzoomdistance"] = "CameraMinZoomDistance",
["cameramode"] = "CameraMode",
["cameraoffset"] = "CameraOffset",
["camerasubject"] = "CameraSubject",
["cameratype"] = "CameraType",
["camerayinverted"] = "CameraYInverted",
["canbedropped"] = "CanBeDropped",
["cancollide"] = "CanCollide",
["canloadcharacterappearance"] = "CanLoadCharacterAppearance",
["canvasposition"] = "CanvasPosition",
["canvassize"] = "CanvasSize",
["cartoonfactor"] = "CartoonFactor",
["celestialbodiesshown"] = "CelestialBodiesShown",
["cellpadding"] = "CellPadding",
["cellsize"] = "CellSize",
["centerofmass"] = "CenterOfMass",
["cframe"] = "CFrame",
["character"] = "Character",
["characterappearance"] = "CharacterAppearance",
["characterappearanceid"] = "CharacterAppearanceId",
["characterautoloads"] = "CharacterAutoLoads",
["chathistory"] = "ChatHistory",
["chatmode"] = "ChatMode",
["chatscrolllength"] = "ChatScrollLength",
["chatvisible"] = "ChatVisible",
["circular"] = "Circular",
["classcategory"] = "ClassCategory",
["classicchat"] = "ClassicChat",
["classname"] = "className",
["cleartextonfocus"] = "ClearTextOnFocus",
["clickablewhenviewporthidden"] = "ClickableWhenViewportHidden",
["clientphysicssendrate"] = "ClientPhysicsSendRate",
["clipsdescendants"] = "ClipsDescendants",
["clocktime"] = "ClockTime",
["coils"] = "Coils",
["collisionenabled"] = "CollisionEnabled",
["collisiongroupid"] = "CollisionGroupId",
["collisionsoundenabled"] = "CollisionSoundEnabled",
["collisionsoundvolume"] = "CollisionSoundVolume",
["color"] = "Color",
["color3"] = "Color3",
["colorshift_bottom"] = "ColorShift_Bottom",
["colorshift_top"] = "ColorShift_Top",
["comparisondiffthreshold"] = "ComparisonDiffThreshold",
["comparisonmethod"] = "ComparisonMethod",
["comparisonpsnrthreshold"] = "ComparisonPsnrThreshold",
["computercameramovementmode"] = "ComputerCameraMovementMode",
["computermovementmode"] = "ComputerMovementMode",
["condition"] = "Condition",
["constrainedvalue"] = "ConstrainedValue",
["constraint"] = "Constraint",
["contactscount"] = "ContactsCount",
["contrast"] = "Contrast",
["controller"] = "Controller",
["controllinghumanoid"] = "ControllingHumanoid",
["controlmode"] = "ControlMode",
["conversationdistance"] = "ConversationDistance",
["coordinateframe"] = "CoordinateFrame",
["coreeffectfolder"] = "CoreEffectFolder",
["coreguifolder"] = "CoreGuiFolder",
["coreguinavigationenabled"] = "CoreGuiNavigationEnabled",
["creatorid"] = "CreatorId",
["creatortype"] = "CreatorType",
["currentangle"] = "CurrentAngle",
["currentcamera"] = "CurrentCamera",
["currentdistance"] = "CurrentDistance",
["currentlength"] = "CurrentLength",
["currentline"] = "CurrentLine",
["currentpage"] = "CurrentPage",
["currentposition"] = "CurrentPosition",
["currentscreenorientation"] = "CurrentScreenOrientation",
["cursoricon"] = "CursorIcon",
["curvesize0"] = "CurveSize0",
["curvesize1"] = "CurveSize1",
["customizedteleportui"] = "CustomizedTeleportUI",
["customphysicalproperties"] = "CustomPhysicalProperties",
["cycleoffset"] = "CycleOffset",
["d"] = "D",
["damping"] = "Damping",
["datacomplexity"] = "DataComplexity",
["datacomplexitylimit"] = "DataComplexityLimit",
["datacost"] = "DataCost",
["datagcrate"] = "DataGCRate",
["datamodel"] = "DataModel",
["datamtuadjust"] = "DataMtuAdjust",
["dataready"] = "DataReady",
["datareceivekbps"] = "DataReceiveKbps",
["datasendkbps"] = "DataSendKbps",
["datasendpriority"] = "DataSendPriority",
["datasendrate"] = "DataSendRate",
["debuggingenabled"] = "DebuggingEnabled",
["decaytime"] = "DecayTime",
["defaultwaittime"] = "DefaultWaitTime",
["delay"] = "Delay",
["delta"] = "Delta",
["density"] = "Density",
["deprecated"] = "Deprecated",
["depth"] = "Depth",
["description"] = "Description",
["desiredangle"] = "DesiredAngle",
["destroyjointradiuspercent"] = "DestroyJointRadiusPercent",
["devcameraocclusionmode"] = "DevCameraOcclusionMode",
["devcomputercameramode"] = "DevComputerCameraMode",
["devcomputercameramovementmode"] = "DevComputerCameraMovementMode",
["devcomputermovementmode"] = "DevComputerMovementMode",
["developmentlanguage"] = "DevelopmentLanguage",
["devenablemouselock"] = "DevEnableMouseLock",
["devtouchcameramode"] = "DevTouchCameraMode",
["devtouchcameramovementmode"] = "DevTouchCameraMovementMode",
["devtouchmovementmode"] = "DevTouchMovementMode",
["diffusion"] = "Diffusion",
["disablecsgv2"] = "DisableCSGv2",
["disabled"] = "Disabled",
["displaydistancetype"] = "DisplayDistanceType",
["displayname"] = "DisplayName",
["displayorder"] = "DisplayOrder",
["distancefactor"] = "DistanceFactor",
["distributedgametime"] = "DistributedGameTime",
["dominantaxis"] = "DominantAxis",
["dopplerscale"] = "DopplerScale",
["drag"] = "Drag",
["draggable"] = "Draggable",
["drylevel"] = "DryLevel",
["duration"] = "Duration",
["duty"] = "Duty",
["eagerbulkexecution"] = "EagerBulkExecution",
["easingdirection"] = "EasingDirection",
["easingstyle"] = "EasingStyle",
["editingdisabled"] = "EditingDisabled",
["editqualitylevel"] = "EditQualityLevel",
["elasticbehavior"] = "ElasticBehavior",
["elasticity"] = "Elasticity",
["emissiondirection"] = "EmissionDirection",
["emittersize"] = "EmitterSize",
["emptycutoff"] = "EmptyCutoff",
["enabled"] = "Enabled",
["enablefrm"] = "EnableFRM",
["enablemouselockoption"] = "EnableMouseLockOption",
["errorcount"] = "ErrorCount",
["errorreporting"] = "ErrorReporting",
["executewithstudiorun"] = "ExecuteWithStudioRun",
["explorerimageindex"] = "ExplorerImageIndex",
["explorerorder"] = "ExplorerOrder",
["explosiontype"] = "ExplosionType",
["exportmergebymaterial"] = "ExportMergeByMaterial",
["exposurecompensation"] = "ExposureCompensation",
["expression"] = "Expression",
["extentsoffset"] = "ExtentsOffset",
["extentsoffsetworldspace"] = "ExtentsOffsetWorldSpace",
["extramemoryused"] = "ExtraMemoryUsed",
["f0"] = "F0",
["f1"] = "F1",
["f2"] = "F2",
["f3"] = "F3",
["face"] = "Face",
["facecamera"] = "FaceCamera",
["faceid"] = "FaceId",
["faces"] = "Faces",
["fallenpartsdestroyheight"] = "FallenPartsDestroyHeight",
["feedback"] = "Feedback",
["fieldofview"] = "FieldOfView",
["filldirection"] = "FillDirection",
["filldirectionmaxcells"] = "FillDirectionMaxCells",
["fillemptyspacecolumns"] = "FillEmptySpaceColumns",
["fillemptyspacerows"] = "FillEmptySpaceRows",
["filteringenabled"] = "FilteringEnabled",
["floormaterial"] = "FloorMaterial",
["focus"] = "focus",
["fogcolor"] = "FogColor",
["fogend"] = "FogEnd",
["fogstart"] = "FogStart",
["followuserid"] = "FollowUserId",
["font"] = "Font",
["fontsize"] = "FontSize",
["force"] = "Force",
["forceplaymodegamelocaleid"] = "ForcePlayModeGameLocaleId",
["forceplaymoderobloxlocaleid"] = "ForcePlayModeRobloxLocaleId",
["formfactor"] = "formFactor",
["frameratemanager"] = "FrameRateManager",
["freelength"] = "FreeLength",
["freememorymbytes"] = "FreeMemoryMBytes",
["frequency"] = "Frequency",
["friction"] = "Friction",
["from"] = "From",
["frontparama"] = "FrontParamA",
["frontparamb"] = "FrontParamB",
["frontsurface"] = "FrontSurface",
["frontsurfaceinput"] = "FrontSurfaceInput",
["fullscreen"] = "Fullscreen",
["gainmakeup"] = "GainMakeup",
["gameid"] = "GameId",
["gamepadcamerasensitivity"] = "GamepadCameraSensitivity",
["gamepadenabled"] = "GamepadEnabled",
["gamepadinputenabled"] = "GamepadInputEnabled",
["gazeselectionenabled"] = "GazeSelectionEnabled",
["gcfrequency"] = "GcFrequency",
["gclimit"] = "GcLimit",
["gcpause"] = "GcPause",
["gcstepmul"] = "GcStepMul",
["geargenresetting"] = "GearGenreSetting",
["genre"] = "Genre",
["geographiclatitude"] = "GeographicLatitude",
["gfxcard"] = "GfxCard",
["globalshadows"] = "GlobalShadows",
["goodbyechoiceactive"] = "GoodbyeChoiceActive",
["goodbyedialog"] = "GoodbyeDialog",
["graphic"] = "Graphic",
["graphicsmode"] = "GraphicsMode",
["gravity"] = "Gravity",
["gridsize"] = "GridSize",
["grip"] = "Grip",
["gripforward"] = "GripForward",
["grippos"] = "GripPos",
["gripright"] = "GripRight",
["gripup"] = "GripUp",
["guest"] = "Guest",
["guiinputusercframe"] = "GuiInputUserCFrame",
["guinavigationenabled"] = "GuiNavigationEnabled",
["gyroscopeenabled"] = "GyroscopeEnabled",
["hardwaremouse"] = "HardwareMouse",
["haseverusedvr"] = "HasEverUsedVR",
["headcolor"] = "HeadColor",
["headcolor3"] = "HeadColor3",
["headlocked"] = "HeadLocked",
["headscale"] = "HeadScale",
["headsupdisplay"] = "HeadsUpDisplay",
["health"] = "Health",
["healthdisplaydistance"] = "HealthDisplayDistance",
["healthdisplaytype"] = "HealthDisplayType",
["heartbeattimems"] = "HeartbeatTimeMs",
["heat"] = "Heat",
["height"] = "Height",
["highgain"] = "HighGain",
["hipheight"] = "HipHeight",
["hit"] = "hit",
["hole"] = "Hole",
["horizontalalignment"] = "HorizontalAlignment",
["horizontalscrollbarinset"] = "HorizontalScrollBarInset",
["hostwidgetwasrestored"] = "HostWidgetWasRestored",
["hoverimage"] = "HoverImage",
["httpenabled"] = "HttpEnabled",
["humanoid"] = "Humanoid",
["icon"] = "Icon",
["ignoreguiinset"] = "IgnoreGuiInset",
["image"] = "Image",
["imagecolor3"] = "ImageColor3",
["imagerectoffset"] = "ImageRectOffset",
["imagerectsize"] = "ImageRectSize",
["imagetransparency"] = "ImageTransparency",
["inclinationangle"] = "InclinationAngle",
["incommingreplicationlag"] = "IncommingReplicationLag",
["initialprompt"] = "InitialPrompt",
["inout"] = "InOut",
["insertable"] = "Insertable",
["instance"] = "Instance",
["instancecount"] = "InstanceCount",
["intensity"] = "Intensity",
["inuse"] = "InUse",
["inversesquarelaw"] = "InverseSquareLaw",
["is30fpsthrottleenabled"] = "Is30FpsThrottleEnabled",
["isbackend"] = "IsBackend",
["isdebugging"] = "IsDebugging",
["isenabled"] = "IsEnabled",
["isfinished"] = "IsFinished",
["isfmodprofilingenabled"] = "IsFmodProfilingEnabled",
["isloaded"] = "IsLoaded",
["isluachatenabled"] = "IsLuaChatEnabled",
["isluagamespageenabled"] = "IsLuaGamesPageEnabled",
["isluahomepageenabled"] = "IsLuaHomePageEnabled",
["ismodaldialog"] = "IsModalDialog",
["ispaused"] = "IsPaused",
["isphysicsenvironmentalthrottled"] = "IsPhysicsEnvironmentalThrottled",
["isplaying"] = "isPlaying",
["isqueueerrorcomputed"] = "IsQueueErrorComputed",
["isreceiveageshown"] = "IsReceiveAgeShown",
["isscriptstacktracingenabled"] = "IsScriptStackTracingEnabled",
["issfflagsloaded"] = "IsSFFlagsLoaded",
["issleepallowed"] = "IsSleepAllowed",
["issmooth"] = "IsSmooth",
["istextscraperrunning"] = "IsTextScraperRunning",
["istreeshown"] = "IsTreeShown",
["isusingcamerayinverted"] = "IsUsingCameraYInverted",
["isusinggamepadcamerasensitivity"] = "IsUsingGamepadCameraSensitivity",
["iswindows"] = "IsWindows",
["jobcount"] = "JobCount",
["jobid"] = "JobId",
["jump"] = "Jump",
["jumppower"] = "JumpPower",
["keyboardenabled"] = "KeyboardEnabled",
["keycode"] = "KeyCode",
["layoutorder"] = "LayoutOrder",
["leftarmcolor"] = "LeftArmColor",
["leftarmcolor3"] = "LeftArmColor3",
["leftleg"] = "LeftLeg",
["leftlegcolor"] = "LeftLegColor",
["leftlegcolor3"] = "LeftLegColor3",
["leftparama"] = "LeftParamA",
["leftparamb"] = "LeftParamB",
["leftright"] = "LeftRight",
["leftsurface"] = "LeftSurface",
["leftsurfaceinput"] = "LeftSurfaceInput",
["legacyinputeventsenabled"] = "LegacyInputEventsEnabled",
["legacynamingscheme"] = "LegacyNamingScheme",
["length"] = "Length",
["level"] = "Level",
["lifetime"] = "Lifetime",
["lightemission"] = "LightEmission",
["lightinfluence"] = "LightInfluence",
["lighting"] = "lighting",
["limitsenabled"] = "LimitsEnabled",
["line"] = "Line",
["lineheight"] = "LineHeight",
["linethickness"] = "LineThickness",
["linkedsource"] = "LinkedSource",
["loadcharacterappearance"] = "LoadCharacterAppearance",
["loaddefaultchat"] = "LoadDefaultChat",
["localeid"] = "LocaleId",
["localize"] = "Localize",
["localizedtext"] = "LocalizedText",
["localplayer"] = "localPlayer",
["localtransparencymodifier"] = "LocalTransparencyModifier",
["location"] = "location",
["locked"] = "Locked",
["lockedtopart"] = "LockedToPart",
["loop"] = "Loop",
["looped"] = "Looped",
["lowerangle"] = "LowerAngle",
["lowerlimit"] = "LowerLimit",
["lowgain"] = "LowGain",
["luaramlimit"] = "LuaRamLimit",
["magnitude"] = "Magnitude",
["majoraxis"] = "MajorAxis",
["manualactivationonly"] = "ManualActivationOnly",
["manualfocusrelease"] = "ManualFocusRelease",
["maskweight"] = "MaskWeight",
["mastervolume"] = "MasterVolume",
["material"] = "Material",
["maxactivationdistance"] = "MaxActivationDistance",
["maxangularvelocity"] = "MaxAngularVelocity",
["maxcollisionsounds"] = "MaxCollisionSounds",
["maxdistance"] = "MaxDistance",
["maxextents"] = "MaxExtents",
["maxforce"] = "MaxForce",
["maxhealth"] = "maxHealth",
["maximumsimulationradius"] = "MaximumSimulationRadius",
["maxitems"] = "MaxItems",
["maxlength"] = "MaxLength",
["maxplayers"] = "MaxPlayers",
["maxplayersinternal"] = "MaxPlayersInternal",
["maxsize"] = "MaxSize",
["maxslopeangle"] = "MaxSlopeAngle",
["maxspeed"] = "MaxSpeed",
["maxtextsize"] = "MaxTextSize",
["maxthrust"] = "MaxThrust",
["maxtorque"] = "MaxTorque",
["maxvalue"] = "MaxValue",
["maxvelocity"] = "MaxVelocity",
["membershiptype"] = "MembershipType",
["menuisopen"] = "MenuIsOpen",
["meshcachesize"] = "MeshCacheSize",
["meshid"] = "MeshId",
["meshtype"] = "MeshType",
["microprofilerwebserverenabled"] = "MMJhwmfTYJVFm9TiUdmYYyrf6Pzpzf3YN1",
["microprofilerwebserverip"] = "MicroProfilerWebServerIP",
["microprofilerwebserverport"] = "MicroProfilerWebServerPort",
["midgain"] = "MidGain",
["midimage"] = "MidImage",
["mindistance"] = "MinDistance",
["minlength"] = "MinLength",
["minsize"] = "MinSize",
["mintextsize"] = "MinTextSize",
["minvalue"] = "MinValue",
["mix"] = "Mix",
["modal"] = "Modal",
["modalenabled"] = "ModalEnabled",
["moonangularsize"] = "MoonAngularSize",
["moontextureid"] = "MoonTextureId",
["motormaxacceleration"] = "MotorMaxAcceleration",
["motormaxangularacceleration"] = "MMJhwmfTYJVFm9TiUdmYYyrf6Pzpzf3YN1",
["motormaxforce"] = "MotorMaxForce",
["motormaxtorque"] = "MotorMaxTorque",
["mousebehavior"] = "MouseBehavior",
["mousedeltasensitivity"] = "MouseDeltaSensitivity",
["mouseenabled"] = "MouseEnabled",
["mouseiconenabled"] = "MouseIconEnabled",
["mousesensitivity"] = "MouseSensitivity",
["mousesensitivityfirstperson"] = "MMJhwmfTYJVFm9TiUdmYYyrf6Pzpzf3YN1",
["mousesensitivitythirdperson"] = "MMJhwmfTYJVFm9TiUdmYYyrf6Pzpzf3YN1",
["movedirection"] = "MoveDirection",
["movingprimitivescount"] = "MovingPrimitivesCount",
["multiline"] = "MultiLine",
["name"] = "Name",
["namedisplaydistance"] = "NameDisplayDistance",
["nameocclusion"] = "NameOcclusion",
["navbarsize"] = "NavBarSize",
["nearplanez"] = "NearPlaneZ",
["networkownerrate"] = "NetworkOwnerRate",
["neutral"] = "Neutral",
["nextselectiondown"] = "NextSelectionDown",
["nextselectionleft"] = "NextSelectionLeft",
["nextselectionright"] = "NextSelectionRight",
["nextselectionup"] = "NextSelectionUp",
["numberofplayers"] = "NumberOfPlayers",
["numplayers"] = "numPlayers",
["occupant"] = "Occupant",
["octave"] = "Octave",
["offset"] = "Offset",
["onboardingscompleted"] = "OnboardingsCompleted",
["onscreenkeyboardanimationduration"] = "OnScreenKeyboardAnimationDuration",
["onscreenkeyboardposition"] = "OnScreenKeyboardPosition",
["onscreenkeyboardsize"] = "OnScreenKeyboardSize",
["onscreenkeyboardvisible"] = "OnScreenKeyboardVisible",
["onscreenprofilerenabled"] = "OnScreenProfilerEnabled",
["ontopofcoreblur"] = "OnTopOfCoreBlur",
["opacity"] = "Opacity",
["orientation"] = "Orientation",
["origin"] = "Origin",
["osis64bit"] = "OsIs64Bit",
["osplatform"] = "OsPlatform",
["osplatformid"] = "OsPlatformId",
["osver"] = "OsVer",
["outdoorambient"] = "OutdoorAmbient",
["outlines"] = "Outlines",
["overlaynativeinput"] = "OverlayNativeInput",
["overlaytextureid"] = "OverlayTextureId",
["overridemouseiconbehavior"] = "OverrideMouseIconBehavior",
["overridestarterscript"] = "OverrideStarterScript",
["p"] = "P",
["packageid"] = "PackageId",
["padding"] = "Padding",
["paddingbottom"] = "PaddingBottom",
["paddingleft"] = "PaddingLeft",
["paddingright"] = "PaddingRight",
["paddingtop"] = "PaddingTop",
["pantstemplate"] = "PantsTemplate",
["parent"] = "Parent",
["part"] = "Part",
["part0"] = "Part0",
["part1"] = "Part1",
["performancestatsvisible"] = "PerformanceStatsVisible",
["physicsanalyzerenabled"] = "PhysicsAnalyzerEnabled",
["physicsenvironmentalthrottle"] = "PhysicsEnvironmentalThrottle",
["physicsmtuadjust"] = "PhysicsMtuAdjust",
["physicsreceivekbps"] = "PhysicsReceiveKbps",
["physicssendkbps"] = "PhysicsSendKbps",
["physicssendpriority"] = "PhysicsSendPriority",
["physicssendrate"] = "PhysicsSendRate",
["physicssteptimems"] = "PhysicsStepTimeMs",
["pitch"] = "Pitch",
["placeholdercolor3"] = "PlaceholderColor3",
["placeholdertext"] = "PlaceholderText",
["placeid"] = "PlaceId",
["placeversion"] = "PlaceVersion",
["platformstand"] = "PlatformStand",
["playbackloudness"] = "PlaybackLoudness",
["playbackspeed"] = "PlaybackSpeed",
["playbackstate"] = "PlaybackState",
["playercount"] = "PlayerCount",
["playertohidefrom"] = "PlayerToHideFrom",
["playing"] = "Playing",
["playonremove"] = "PlayOnRemove",
["point"] = "Point",
["port"] = "Port",
["position"] = "Position",
["preferredclientport"] = "PreferredClientPort",
["preferredparent"] = "PreferredParent",
["preferredparents"] = "PreferredParents",
["preferredplayers"] = "PreferredPlayers",
["preferredplayersinternal"] = "PreferredPlayersInternal",
["pressedimage"] = "PressedImage",
["primaryaxisonly"] = "PrimaryAxisOnly",
["primarypart"] = "PrimaryPart",
["primitivescount"] = "PrimitivesCount",
["printbits"] = "PrintBits",
["printevents"] = "PrintEvents",
["printfilters"] = "PrintFilters",
["printinstances"] = "PrintInstances",
["printphysicserrors"] = "PrintPhysicsErrors",
["printproperties"] = "PrintProperties",
["printsplitmessage"] = "PrintSplitMessage",
["printstreaminstancequota"] = "PrintStreamInstanceQuota",
["printtouches"] = "PrintTouches",
["priority"] = "Priority",
["privateserverid"] = "PrivateServerId",
["privateserverownerid"] = "PrivateServerOwnerId",
["processuserinput"] = "ProcessUserInput",
["purpose"] = "Purpose",
["qualitylevel"] = "QualityLevel",
["radius"] = "Radius",
["range"] = "Range",
["rate"] = "Rate",
["ratio"] = "Ratio",
["reactionforceenabled"] = "ReactionForceEnabled",
["reactiontorqueenabled"] = "ReactionTorqueEnabled",
["receiveage"] = "ReceiveAge",
["receiverate"] = "ReceiveRate",
["reflectance"] = "Reflectance",
["relativeto"] = "RelativeTo",
["release"] = "Release",
["reloadassets"] = "ReloadAssets",
["rendercsgtrianglesdebug"] = "RenderCSGTrianglesDebug",
["renderstreamedregions"] = "RenderStreamedRegions",
["replicationfocus"] = "ReplicationFocus",
["reportabusechathistory"] = "ReportAbuseChatHistory",
["reportsoundwarnings"] = "ReportSoundWarnings",
["requestqueuesize"] = "RequestQueueSize",
["requireshandle"] = "RequiresHandle",
["resetonspawn"] = "ResetOnSpawn",
["resetplayerguionspawn"] = "ResetPlayerGuiOnSpawn",
["resizeablefaces"] = "ResizeableFaces",
["resizeincrement"] = "ResizeIncrement",
["respawnlocation"] = "RespawnLocation",
["respectfilteringenabled"] = "RespectFilteringEnabled",
["responsedialog"] = "ResponseDialog",
["responsiveness"] = "Responsiveness",
["restitution"] = "Restitution",
["rightarmcolor"] = "RightArmColor",
["rightarmcolor3"] = "RightArmColor3",
["rightleg"] = "RightLeg",
["rightlegcolor"] = "RightLegColor",
["rightlegcolor3"] = "RightLegColor3",
["rightparama"] = "RightParamA",
["rightparamb"] = "RightParamB",
["rightsurface"] = "RightSurface",
["rightsurfaceinput"] = "RightSurfaceInput",
["rigidityenabled"] = "RigidityEnabled",
["rigtype"] = "RigType",
["risevelocity"] = "RiseVelocity",
["robloxforceplaymodegamelocaleid"] = "RobloxForcePlayModeGameLocaleId",
["robloxforceplaymoderobloxlocaleid"] = "RobloxForcePlayModeRobloxLocaleId",
["robloxlocaleid"] = "RobloxLocaleId",
["robloxlocked"] = "RobloxLocked",
["robloxproductname"] = "RobloxProductName",
["robloxversion"] = "RobloxVersion",
["rolloffmode"] = "RollOffMode",
["rolloffscale"] = "RolloffScale",
["root"] = "Root",
["rootlocalizationtable"] = "RootLocalizationTable",
["rootpart"] = "RootPart",
["rotation"] = "Rotation",
["rotationaxisvisible"] = "RotationAxisVisible",
["rotationtype"] = "RotationType",
["rotspeed"] = "RotSpeed",
["rotvelocity"] = "RotVelocity",
["saturation"] = "Saturation",
["savedqualitylevel"] = "SavedQualityLevel",
["scale"] = "Scale",
["scaletype"] = "ScaleType",
["schedulerdutycycle"] = "SchedulerDutyCycle",
["schedulerrate"] = "SchedulerRate",
["score"] = "Score",
["screenorientation"] = "ScreenOrientation",
["script"] = "Script",
["scriptcontext"] = "ScriptContext",
["scriptsdisabled"] = "ScriptsDisabled",
["scrollbarimagecolor3"] = "ScrollBarImageColor3",
["scrollbarimagetransparency"] = "ScrollBarImageTransparency",
["scrollbarthickness"] = "ScrollBarThickness",
["scrollingdirection"] = "ScrollingDirection",
["scrollingenabled"] = "ScrollingEnabled",
["scrollwheelinputenabled"] = "ScrollWheelInputEnabled",
["seatpart"] = "SeatPart",
["secondaryaxis"] = "SecondaryAxis",
["secondarycolor"] = "SecondaryColor",
["segments"] = "Segments",
["selectable"] = "Selectable",
["selected"] = "Selected",
["selectedcoreobject"] = "SelectedCoreObject",
["selectedobject"] = "SelectedObject",
["selectionimageobject"] = "SelectionImageObject",
["servomaxforce"] = "ServoMaxForce",
["servomaxtorque"] = "ServoMaxTorque",
["shadowcolor"] = "ShadowColor",
["shadows"] = "Shadows",
["shape"] = "Shape",
["shiny"] = "Shiny",
["shirttemplate"] = "ShirtTemplate",
["shouldskip"] = "ShouldSkip",
["showactiveanimationasset"] = "ShowActiveAnimationAsset",
["showboundingboxes"] = "ShowBoundingBoxes",
["showdecompositiongeometry"] = "ShowDecompositionGeometry",
["showdevelopmentgui"] = "ShowDevelopmentGui",
["shownativeinput"] = "ShowNativeInput",
["sidechain"] = "SideChain",
["simd"] = "SIMD",
["simulatesecondslag"] = "SimulateSecondsLag",
["simulationradius"] = "SimulationRadius",
["sit"] = "Sit",
["size"] = "Size",
["sizeconstraint"] = "SizeConstraint",
["sizeincells"] = "SizeInCells",
["sizeoffset"] = "SizeOffset",
["sizerelativeoffset"] = "SizeRelativeOffset",
["skincolor"] = "SkinColor",
["skyboxbk"] = "SkyboxBk",
["skyboxdn"] = "SkyboxDn",
["skyboxft"] = "SkyboxFt",
["skyboxlf"] = "SkyboxLf",
["skyboxrt"] = "SkyboxRt",
["skyboxup"] = "SkyboxUp",
["slicecenter"] = "SliceCenter",
["slicescale"] = "SliceScale",
["softwaresound"] = "SoftwareSound",
["sortorder"] = "SortOrder",
["soundgroup"] = "SoundGroup",
["soundid"] = "SoundId",
["source"] = "Source",
["sourcelocaleid"] = "SourceLocaleId",
["sparklecolor"] = "SparkleColor",
["specificgravity"] = "SpecificGravity",
["specular"] = "Specular",
["speed"] = "Speed",
["spread"] = "Spread",
["spreadangle"] = "SpreadAngle",
["starcount"] = "StarCount",
["startcorner"] = "StartCorner",
["status"] = "Status",
["statusbarsize"] = "StatusBarSize",
["statustip"] = "StatusTip",
["steer"] = "Steer",
["steerfloat"] = "SteerFloat",
["stickywheels"] = "StickyWheels",
["stiffness"] = "Stiffness",
["streamingenabled"] = "StreamingEnabled",
["studsbetweentextures"] = "StudsBetweenTextures",
["studsoffset"] = "StudsOffset",
["studsoffsetworldspace"] = "StudsOffsetWorldSpace",
["studspertileu"] = "StudsPerTileU",
["studspertilev"] = "StudsPerTileV",
["style"] = "Style",
["summary"] = "summary",
["sunangularsize"] = "SunAngularSize",
["suntextureid"] = "SunTextureId",
["surfacecolor"] = "SurfaceColor",
["surfacecolor3"] = "SurfaceColor3",
["surfacetransparency"] = "SurfaceTransparency",
["systemlocaleid"] = "SystemLocaleId",
["systemproductname"] = "SystemProductName",
["target"] = "target",
["targetangle"] = "TargetAngle",
["targetfilter"] = "TargetFilter",
["targetoffset"] = "TargetOffset",
["targetpoint"] = "TargetPoint",
["targetposition"] = "TargetPosition",
["targetradius"] = "TargetRadius",
["targetsurface"] = "TargetSurface",
["team"] = "Team",
["teamcolor"] = "TeamColor",
["teleported"] = "Teleported",
["teleportedin"] = "TeleportedIn",
["temporarylegacyphysicssolveroverride"] = "TemporaryLegacyPhysicsSolverOverride",
["terrain"] = "Terrain",
["testcount"] = "TestCount",
["text"] = "Text",
["textbounds"] = "TextBounds",
["textcolor"] = "TextColor",
["textcolor3"] = "TextColor3",
["textfits"] = "TextFits",
["textscaled"] = "TextScaled",
["textsize"] = "TextSize",
["textstrokecolor3"] = "TextStrokeColor3",
["textstroketransparency"] = "TextStrokeTransparency",
["texttransparency"] = "TextTransparency",
["texttruncate"] = "TextTruncate",
["texture"] = "Texture",
["textureid"] = "TextureID",
["texturelength"] = "TextureLength",
["texturemode"] = "TextureMode",
["texturesize"] = "TextureSize",
["texturespeed"] = "TextureSpeed",
["textwrap"] = "TextWrap",
["textwrapped"] = "TextWrapped",
["textxalignment"] = "TextXAlignment",
["textyalignment"] = "TextYAlignment",
["thickness"] = "Thickness",
["threadpoolconfig"] = "ThreadPoolConfig",
["threadpoolsize"] = "ThreadPoolSize",
["threshold"] = "Threshold",
["throttle"] = "Throttle",
["throttleadjusttime"] = "ThrottleAdjustTime",
["throttlefloat"] = "ThrottleFloat",
["thrustd"] = "ThrustD",
["thrustp"] = "ThrustP",
["tickcountpreciseoverride"] = "TickCountPreciseOverride",
["ticket"] = "Ticket",
["tilesize"] = "TileSize",
["time"] = "Time",
["timelength"] = "TimeLength",
["timeofday"] = "TimeOfDay",
["timeout"] = "Timeout",
["timeposition"] = "TimePosition",
["tintcolor"] = "TintColor",
["title"] = "Title",
["to"] = "To",
["tone"] = "Tone",
["toolpunchthroughdistance"] = "ToolPunchThroughDistance",
["tooltip"] = "ToolTip",
["topbottom"] = "TopBottom",
["topimage"] = "TopImage",
["topparama"] = "TopParamA",
["topparamb"] = "TopParamB",
["topsurface"] = "TopSurface",
["topsurfaceinput"] = "TopSurfaceInput",
["torque"] = "Torque",
["torso"] = "Torso",
["torsocolor"] = "TorsoColor",
["torsocolor3"] = "TorsoColor3",
["touchcameramovementmode"] = "TouchCameraMovementMode",
["touchenabled"] = "TouchEnabled",
["touchinputenabled"] = "TouchInputEnabled",
["touchmovementmode"] = "TouchMovementMode",
["touchsendrate"] = "TouchSendRate",
["trackdatatypes"] = "TrackDataTypes",
["trackphysicsdetails"] = "TrackPhysicsDetails",
["transform"] = "Transform",
["transparency"] = "Transparency",
["trianglecount"] = "TriangleCount",
["triggerdistance"] = "TriggerDistance",
["triggeroffset"] = "TriggerOffset",
["turnd"] = "TurnD",
["turnp"] = "TurnP",
["turnspeed"] = "TurnSpeed",
["tweeninfo"] = "TweenInfo",
["tweentime"] = "TweenTime",
["twistlimitsenabled"] = "TwistLimitsEnabled",
["twistlowerangle"] = "TwistLowerAngle",
["twistupperangle"] = "TwistUpperAngle",
["uimaximum"] = "UIMaximum",
["uiminimum"] = "UIMinimum",
["uinumticks"] = "UINumTicks",
["unitray"] = "UnitRay",
["upperangle"] = "UpperAngle",
["upperlimit"] = "UpperLimit",
["usecsgv2"] = "UseCSGv2",
["usedcoreguiisvisibletoggle"] = "UsedCoreGuiIsVisibleToggle",
["usedcustomguiisvisibletoggle"] = "UsedCustomGuiIsVisibleToggle",
["usedhidehudshortcut"] = "UsedHideHudShortcut",
["useinstancepacketcache"] = "UseInstancePacketCache",
["usepartcolor"] = "UsePartColor",
["usephysicspacketcache"] = "UsePhysicsPacketCache",
["userdialog"] = "UserDialog",
["userheadcframe"] = "UserHeadCFrame",
["userid"] = "userId",
["userinputstate"] = "UserInputState",
["userinputtype"] = "UserInputType",
["usesassetinsertiondrag"] = "UsesAssetInsertionDrag",
["value"] = "Value",
["velocity"] = "Velocity",
["velocityinheritance"] = "VelocityInheritance",
["velocityspread"] = "VelocitySpread",
["version"] = "Version",
["versionnumber"] = "VersionNumber",
["vertexcolor"] = "VertexColor",
["verticalalignment"] = "VerticalAlignment",
["verticalscrollbarinset"] = "VerticalScrollBarInset",
["verticalscrollbarposition"] = "VerticalScrollBarPosition",
["videocaptureenabled"] = "VideoCaptureEnabled",
["videomemory"] = "VideoMemory",
["videoquality"] = "VideoQuality",
["viewportsize"] = "ViewportSize",
["viewsizex"] = "ViewSizeX",
["viewsizey"] = "ViewSizeY",
["vipserverid"] = "VIPServerId",
["vipserverownerid"] = "VIPServerOwnerId",
["visible"] = "Visible",
["volume"] = "Volume",
["vrdevice"] = "VRDevice",
["vrdevicename"] = "VRDeviceName",
["vrenabled"] = "VREnabled",
["vrrotationintensity"] = "VRRotationIntensity",
["waitingthreadsbudget"] = "WaitingThreadsBudget",
["walkspeed"] = "WalkSpeed",
["walktopart"] = "WalkToPart",
["walktopoint"] = "WalkToPoint",
["warncount"] = "WarnCount",
["watercolor"] = "WaterColor",
["waterreflectance"] = "WaterReflectance",
["watertransparency"] = "WaterTransparency",
["waterwavesize"] = "WaterWaveSize",
["waterwavespeed"] = "WaterWaveSpeed",
["weight"] = "Weight",
["weightcurrent"] = "WeightCurrent",
["weighttarget"] = "WeightTarget",
["wetlevel"] = "WetLevel",
["width0"] = "Width0",
["width1"] = "Width1",
["widthscale"] = "WidthScale",
["wireradius"] = "WireRadius",
["workspace"] = "workspace",
["worldaxis"] = "WorldAxis",
["worldcframe"] = "WorldCFrame",
["worldorientation"] = "WorldOrientation",
["worldposition"] = "WorldPosition",
["worldrotation"] = "WorldRotation",
["worldrotationaxis"] = "WorldRotationAxis",
["worldsecondaryaxis"] = "WorldSecondaryAxis",
["x"] = "X",
["y"] = "Y",
["zindex"] = "ZIndex",
["zindexbehavior"] = "ZIndexBehavior",
["zoffset"] = "ZOffset"
}