-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfuncs_dump.txt
5305 lines (5305 loc) · 235 KB
/
funcs_dump.txt
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
Workspace
Property -> AllowThirdPartySales Security : 0
Property -> AvatarUnificationMode Security : 0
Property -> ClientAnimatorThrottling Security : 0
Property -> CollisionGroupData Security : 6
Property -> CollisionGroups Security : 0
Property -> CurrentCamera Security : 0
Property -> DataModelPlaceVersion Security : 0
Property -> DistributedGameTime Security : 0
Property -> ExplicitAutoJoints Security : 0
Property -> FallenPartsDestroyHeight Security : 0
Property -> FilteringEnabled Security : 0
Property -> GlobalWind Security : 0
Property -> Gravity Security : 0
Property -> HumanoidOnlySetCollisionsOnStateChange Security : 0
Property -> InterpolationThrottling Security : 0
Property -> LevelOfDetail Security : 1
Property -> LodEntity Security : 0
Property -> MeshPartHeadsAndAccessories Security : 0
Property -> ModelMeshCFrame Security : 0
Property -> ModelMeshData Security : 0
Property -> ModelMeshSize Security : 0
Property -> ModelStreamingMode Security : 0
Property -> NeedsPivotMigration Security : 0
Property -> Origin Security : 0
Property -> PhysicsSteppingMethod Security : 0
Property -> Pivot Offset Security : 0
Property -> PrimaryPart Security : 0
Property -> RejectCharacterDeletions Security : 0
Property -> ReplicateInstanceDestroySetting Security : 0
Property -> Retargeting Security : 0
Property -> Scale Security : 0
Property -> ScaleFactor Security : 0
Property -> SignalBehavior Security : 0
Property -> SignalBehavior2 Security : 0
Property -> StreamOutBehavior Security : 0
Property -> StreamingEnabled Security : 0
Property -> StreamingIntegrityMode Security : 0
Property -> StreamingMinRadius Security : 0
Property -> StreamingPauseMode Security : 0
Property -> StreamingTargetRadius Security : 0
Property -> Terrain Security : 0
Property -> TerrainWeldsFixed Security : 0
Property -> TouchesUseCollisionGroups Security : 0
Property -> WorldPivot Security : 0
Property -> WorldPivotData Security : 0
Function -> AddPersistentPlayer At address :00fadec0 Security 0 Security Name: None
Function -> ArePartsTouchingOthers At address :00fd1fe0 Security 0 Security Name: None
Function -> Blockcast At address :00fd15f0 Security 0 Security Name: None
Function -> BreakJoints At address :00f8f1b0 Security 1 Security Name: Plugin
Function -> BulkMoveTo At address :00fd1bf0 Security 0 Security Name: None
Function -> CacheCurrentTerrain At address :00fd14d0 Security 5 Security Name: LocalUser
Function -> CalculateJumpDistance At address :00f99b80 Security 5 Security Name: LocalUser
Function -> CalculateJumpHeight At address :00f99b10 Security 5 Security Name: LocalUser
Function -> CalculateJumpPower At address :00f99ad0 Security 5 Security Name: LocalUser
Function -> ClearCachedTerrain At address :00fd15d0 Security 5 Security Name: LocalUser
Function -> ExperimentalSolverIsEnabled At address :004180a0 Security 3 Security Name: RobloxPlace
Function -> FindPartOnRay At address :00fda050 Security 0 Security Name: None
Function -> FindPartOnRayWithIgnoreList At address :00fda100 Security 0 Security Name: None
Function -> FindPartOnRayWithWhitelist At address :00fda1b0 Security 0 Security Name: None
Function -> FindPartsInRegion3 At address :00fcfef0 Security 0 Security Name: None
Function -> FindPartsInRegion3WithIgnoreList At address :00fd0360 Security 0 Security Name: None
Function -> FindPartsInRegion3WithWhiteList At address :00fd0290 Security 0 Security Name: None
Function -> GetBoundingBox At address :00faca90 Security 0 Security Name: None
Function -> GetExtentsSize At address :00facfb0 Security 0 Security Name: None
Function -> GetModelCFrame At address :00facd70 Security 0 Security Name: None
Function -> GetModelSize At address :00facfb0 Security 0 Security Name: None
Function -> GetNumAwakeParts At address :00f92d40 Security 0 Security Name: None
Function -> GetPartBoundsInBox At address :00fd08d0 Security 0 Security Name: None
Function -> GetPartBoundsInRadius At address :00fd0ad0 Security 0 Security Name: None
Function -> GetPartsInPart At address :00fd0cd0 Security 0 Security Name: None
Function -> GetPhysicsThrottling At address :00f92cc0 Security 0 Security Name: None
Function -> GetPivot At address :00d68ef0 Security 0 Security Name: None
Function -> GetPrimaryPartCFrame At address :00fa9970 Security 0 Security Name: None
Function -> GetRealPhysicsFPS At address :00f925e0 Security 0 Security Name: None
Function -> GetScale At address :00539670 Security 0 Security Name: None
Function -> GetServerTimeNow At address :00f8d4a0 Security 0 Security Name: None
Function -> IKMoveTo At address :00fd1e20 Security 1 Security Name: Plugin
Function -> IsRegion3Empty At address :00fd0440 Security 0 Security Name: None
Function -> IsRegion3EmptyWithIgnoreList At address :00fd05a0 Security 0 Security Name: None
Function -> JoinToOutsiders At address :00f8cf10 Security 0 Security Name: None
Function -> MakeJoints At address :00f8ed90 Security 1 Security Name: Plugin
Function -> MoveTo At address :0109b480 Security 0 Security Name: None
Function -> PGSIsEnabled At address :004180a0 Security 0 Security Name: None
Function -> PivotTo At address :0109b840 Security 0 Security Name: None
Function -> Raycast At address :00fd10b0 Security 0 Security Name: None
Function -> RaycastCachedTerrain At address :00fd12f0 Security 5 Security Name: LocalUser
Function -> RemovePersistentPlayer At address :00fadfb0 Security 0 Security Name: None
Function -> ResetOrientationToIdentity At address :004008e0 Security 0 Security Name: None
Function -> ScaleTo At address :00faa7b0 Security 0 Security Name: None
Function -> SetIdentityOrientation At address :004008e0 Security 0 Security Name: None
Function -> SetInsertPoint At address :00fcdf10 Security 5 Security Name: LocalUser
Function -> SetMeshPartHeadsAndAccessories At address :00f8d9e0 Security 5 Security Name: LocalUser
Function -> SetPhysicsThrottleEnabled At address :004008d0 Security 3 Security Name: RobloxPlace
Function -> SetPrimaryPartCFrame At address :00fa9cb0 Security 0 Security Name: None
Function -> Spherecast At address :00fd16a0 Security 0 Security Name: None
Function -> TranslateBy At address :00fa9910 Security 0 Security Name: None
Function -> UnjoinFromOutsiders At address :00f8d180 Security 0 Security Name: None
Function -> ZoomToExtents At address :00f8eb20 Security 1 Security Name: Plugin
Function -> breakJoints At address :00fabfd0 Security 0 Security Name: None
Function -> findPartOnRay At address :00fda050 Security 0 Security Name: None
Function -> findPartsInRegion3 At address :00fcfef0 Security 0 Security Name: None
Function -> makeJoints At address :00fabd80 Security 0 Security Name: None
Function -> move At address :0109b3c0 Security 0 Security Name: None
Function -> moveTo At address :0109b3c0 Security 0 Security Name: None
Event -> AncestryChanged Security : 0
Event -> AttributeChanged Security : 0
Event -> Changed Security : 0
Event -> ChildAdded Security : 0
Event -> ChildRemoved Security : 0
Event -> DescendantAdded Security : 0
Event -> DescendantRemoving Security : 0
Event -> Destroying Security : 0
Event -> PersistentLoaded Security : 0
Event -> childAdded Security : 0
--------------------
Camera
Property -> CFrame Security : 0
Property -> CameraSubject Security : 0
Property -> CameraType Security : 0
Property -> CoordinateFrame Security : 0
Property -> DiagonalFieldOfView Security : 0
Property -> FieldOfView Security : 0
Property -> FieldOfViewMode Security : 0
Property -> Focus Security : 0
Property -> HeadLocked Security : 0
Property -> HeadScale Security : 0
Property -> MaxAxisFieldOfView Security : 0
Property -> NearPlaneZ Security : 0
Property -> ViewportSize Security : 0
Property -> focus Security : 0
Function -> GetLargestCutoffDistance At address :0101eb80 Security 0 Security Name: None
Function -> GetPanSpeed At address :010184e0 Security 0 Security Name: None
Function -> GetPartsObscuringTarget At address :0101ee80 Security 0 Security Name: None
Function -> GetRenderCFrame At address :010184b0 Security 0 Security Name: None
Function -> GetRoll At address :0101bb00 Security 0 Security Name: None
Function -> GetTiltSpeed At address :010184f0 Security 0 Security Name: None
Function -> Interpolate At address :01019b00 Security 0 Security Name: None
Function -> PanUnits At address :0101d080 Security 0 Security Name: None
Function -> ScreenPointToRay At address :0101dd70 Security 0 Security Name: None
Function -> SetCameraPanMode At address :0101cec0 Security 0 Security Name: None
Function -> SetImageServerView At address :0101d1d0 Security 5 Security Name: LocalUser
Function -> SetRoll At address :0101bb80 Security 0 Security Name: None
Function -> TiltUnits At address :0101ced0 Security 0 Security Name: None
Function -> ViewportPointToRay At address :0101deb0 Security 0 Security Name: None
Function -> WorldToScreenPoint At address :0101d910 Security 0 Security Name: None
Function -> WorldToViewportPoint At address :0101db50 Security 0 Security Name: None
Function -> Zoom At address :0101bdf0 Security 5 Security Name: LocalUser
Function -> ZoomToExtents At address :0101a980 Security 0 Security Name: None
Event -> AncestryChanged Security : 0
Event -> AttributeChanged Security : 0
Event -> Changed Security : 0
Event -> ChildAdded Security : 0
Event -> ChildRemoved Security : 0
Event -> DescendantAdded Security : 0
Event -> DescendantRemoving Security : 0
Event -> Destroying Security : 0
Event -> FirstPersonTransition Security : 3
Event -> InterpolationFinished Security : 0
Event -> childAdded Security : 0
--------------------
Sound
Property -> ChannelCount Security : 5
Property -> EmitterSize Security : 0
Property -> IsLoaded Security : 0
Property -> IsPaused Security : 0
Property -> IsPlaying Security : 0
Property -> IsSpatial Security : 5
Property -> LoopRegion Security : 0
Property -> Looped Security : 0
Property -> MaxDistance Security : 0
Property -> MinDistance Security : 0
Property -> Pitch Security : 0
Property -> PlayOnRemove Security : 0
Property -> PlaybackLoudness Security : 0
Property -> PlaybackRegion Security : 0
Property -> PlaybackRegionsEnabled Security : 0
Property -> PlaybackSpeed Security : 0
Property -> Playing Security : 0
Property -> PlayingReplicator Security : 0
Property -> RollOffGain Security : 5
Property -> RollOffMaxDistance Security : 0
Property -> RollOffMinDistance Security : 0
Property -> RollOffMode Security : 0
Property -> SoundGroup Security : 0
Property -> SoundId Security : 0
Property -> TimeLength Security : 0
Property -> TimePosition Security : 0
Property -> TimePositionReplicator Security : 0
Property -> UsageContextPermission Security : 5
Property -> Volume Security : 0
Property -> isPlaying Security : 0
Property -> xmlRead_MaxDistance_3 Security : 0
Property -> xmlRead_MinDistance_3 Security : 0
Function -> Pause At address :0100d6f0 Security 0 Security Name: None
Function -> Play At address :0100d5f0 Security 0 Security Name: None
Function -> Resume At address :0100d6b0 Security 0 Security Name: None
Function -> Stop At address :0100d730 Security 0 Security Name: None
Function -> pause At address :0100d6f0 Security 0 Security Name: None
Function -> play At address :0100d5f0 Security 0 Security Name: None
Function -> stop At address :0100d730 Security 0 Security Name: None
Event -> AncestryChanged Security : 0
Event -> AttributeChanged Security : 0
Event -> Changed Security : 0
Event -> ChildAdded Security : 0
Event -> ChildRemoved Security : 0
Event -> DescendantAdded Security : 0
Event -> DescendantRemoving Security : 0
Event -> Destroying Security : 0
Event -> DidLoop Security : 0
Event -> Ended Security : 0
Event -> Loaded Security : 0
Event -> Paused Security : 0
Event -> Played Security : 0
Event -> PlayingUpdatedFromClient Security : 6
Event -> PlayingUpdatedFromServer Security : 6
Event -> Resumed Security : 0
Event -> Stopped Security : 0
Event -> TimePositionUpdatedFromClient Security : 6
Event -> TimePositionUpdatedFromServer Security : 6
Event -> childAdded Security : 0
Event -> playbackActionSync Security : 6
--------------------
Script
Property -> CachedRemoteSource Security : 0
Property -> CachedRemoteSourceLoadState Security : 0
Property -> CurrentEditor Security : 0
Property -> Disabled Security : 0
Property -> Enabled Security : 0
Property -> HasAssociatedDrafts Security : 6
Property -> IsDifferentFromFileSystem Security : 6
Property -> LinkedSource Security : 0
Property -> OriginalScriptGuid Security : 6
Property -> RunContext Security : 0
Property -> RuntimeSource Security : 1
Property -> SandboxedSource Security : 6
Property -> ScriptGuid Security : 0
Property -> Source Security : 1
Property -> SyncingEditorText Security : 6
Function -> GetHash At address :005a41d0 Security 3 Security Name: RobloxPlace
Event -> AncestryChanged Security : 0
Event -> AttributeChanged Security : 0
Event -> Changed Security : 0
Event -> ChildAdded Security : 0
Event -> ChildRemoved Security : 0
Event -> DescendantAdded Security : 0
Event -> DescendantRemoving Security : 0
Event -> Destroying Security : 0
Event -> LockGrantedOrNot Security : 0
Event -> LostLock Security : 0
Event -> RequestLock Security : 0
Event -> RequestScriptHash Security : 3
Event -> VerifyScriptHash Security : 3
Event -> childAdded Security : 0
--------------------
ModuleScript
Property -> CachedRemoteSource Security : 0
Property -> CachedRemoteSourceLoadState Security : 0
Property -> Confidential Security : 6
Property -> CurrentEditor Security : 0
Property -> HasAssociatedDrafts Security : 6
Property -> IsDifferentFromFileSystem Security : 6
Property -> LinkedSource Security : 0
Property -> OriginalScriptGuid Security : 6
Property -> RuntimeSource Security : 1
Property -> SandboxedSource Security : 6
Property -> ScriptGuid Security : 0
Property -> Source Security : 1
Property -> SyncingEditorText Security : 6
Event -> AncestryChanged Security : 0
Event -> AttributeChanged Security : 0
Event -> Changed Security : 0
Event -> ChildAdded Security : 0
Event -> ChildRemoved Security : 0
Event -> DescendantAdded Security : 0
Event -> DescendantRemoving Security : 0
Event -> Destroying Security : 0
Event -> LockGrantedOrNot Security : 0
Event -> LostLock Security : 0
Event -> RequestLock Security : 0
Event -> RequestScriptHash Security : 3
Event -> VerifyScriptHash Security : 3
Event -> childAdded Security : 0
--------------------
Model
Property -> LevelOfDetail Security : 1
Property -> LodEntity Security : 0
Property -> ModelMeshCFrame Security : 0
Property -> ModelMeshData Security : 0
Property -> ModelMeshSize Security : 0
Property -> ModelStreamingMode Security : 0
Property -> NeedsPivotMigration Security : 0
Property -> Origin Security : 0
Property -> Pivot Offset Security : 0
Property -> PrimaryPart Security : 0
Property -> Scale Security : 0
Property -> ScaleFactor Security : 0
Property -> WorldPivot Security : 0
Property -> WorldPivotData Security : 0
Function -> AddPersistentPlayer At address :00fadec0 Security 0 Security Name: None
Function -> BreakJoints At address :00fabfd0 Security 0 Security Name: None
Function -> GetBoundingBox At address :00faca90 Security 0 Security Name: None
Function -> GetExtentsSize At address :00facfb0 Security 0 Security Name: None
Function -> GetModelCFrame At address :00facd70 Security 0 Security Name: None
Function -> GetModelSize At address :00facfb0 Security 0 Security Name: None
Function -> GetPivot At address :00d68ef0 Security 0 Security Name: None
Function -> GetPrimaryPartCFrame At address :00fa9970 Security 0 Security Name: None
Function -> GetScale At address :00539670 Security 0 Security Name: None
Function -> MakeJoints At address :00fabd80 Security 0 Security Name: None
Function -> MoveTo At address :0109b480 Security 0 Security Name: None
Function -> PivotTo At address :0109b840 Security 0 Security Name: None
Function -> RemovePersistentPlayer At address :00fadfb0 Security 0 Security Name: None
Function -> ResetOrientationToIdentity At address :004008e0 Security 0 Security Name: None
Function -> ScaleTo At address :00faa7b0 Security 0 Security Name: None
Function -> SetIdentityOrientation At address :004008e0 Security 0 Security Name: None
Function -> SetPrimaryPartCFrame At address :00fa9cb0 Security 0 Security Name: None
Function -> TranslateBy At address :00fa9910 Security 0 Security Name: None
Function -> breakJoints At address :00fabfd0 Security 0 Security Name: None
Function -> makeJoints At address :00fabd80 Security 0 Security Name: None
Function -> move At address :0109b3c0 Security 0 Security Name: None
Function -> moveTo At address :0109b3c0 Security 0 Security Name: None
Event -> AncestryChanged Security : 0
Event -> AttributeChanged Security : 0
Event -> Changed Security : 0
Event -> ChildAdded Security : 0
Event -> ChildRemoved Security : 0
Event -> DescendantAdded Security : 0
Event -> DescendantRemoving Security : 0
Event -> Destroying Security : 0
Event -> childAdded Security : 0
--------------------
Part
Property -> Anchored Security : 0
Property -> AssemblyAngularVelocity Security : 0
Property -> AssemblyCenterOfMass Security : 0
Property -> AssemblyLinearVelocity Security : 0
Property -> AssemblyMass Security : 0
Property -> AssemblyRootPart Security : 0
Property -> BackParamA Security : 0
Property -> BackParamB Security : 0
Property -> BackSurface Security : 0
Property -> BackSurfaceInput Security : 0
Property -> BottomParamA Security : 0
Property -> BottomParamB Security : 0
Property -> BottomSurface Security : 0
Property -> BottomSurfaceInput Security : 0
Property -> BrickColor Security : 0
Property -> CFrame Security : 0
Property -> CanCollide Security : 0
Property -> CanQuery Security : 0
Property -> CanTouch Security : 0
Property -> CastShadow Security : 0
Property -> CenterOfMass Security : 0
Property -> CollisionGroup Security : 0
Property -> CollisionGroupId Security : 0
Property -> CollisionGroupReplicate Security : 5
Property -> Color Security : 0
Property -> Color3uint8 Security : 0
Property -> CurrentPhysicalProperties Security : 0
Property -> CustomPhysicalProperties Security : 0
Property -> DraggingV1 Security : 0
Property -> Elasticity Security : 0
Property -> ExtentsCFrame Security : 0
Property -> ExtentsSize Security : 0
Property -> FormFactor Security : 0
Property -> Friction Security : 0
Property -> FrontParamA Security : 0
Property -> FrontParamB Security : 0
Property -> FrontSurface Security : 0
Property -> FrontSurfaceInput Security : 0
Property -> LeftParamA Security : 0
Property -> LeftParamB Security : 0
Property -> LeftSurface Security : 0
Property -> LeftSurfaceInput Security : 0
Property -> LocalSimulationValidation Security : 0
Property -> LocalTransparencyModifier Security : 0
Property -> Locked Security : 0
Property -> Mass Security : 0
Property -> Massless Security : 0
Property -> Material Security : 0
Property -> MaterialVariant Security : 0
Property -> MaterialVariantSerialized Security : 0
Property -> NetworkIsSleeping Security : 0
Property -> NetworkOwnerV3 Security : 0
Property -> NetworkOwnershipRule Security : 0
Property -> Orientation Security : 0
Property -> Origin Security : 0
Property -> Pivot Offset Security : 0
Property -> PivotOffset Security : 0
Property -> Position Security : 0
Property -> ReceiveAge Security : 0
Property -> Reflectance Security : 0
Property -> ResizeIncrement Security : 0
Property -> ResizeableFaces Security : 0
Property -> RightParamA Security : 0
Property -> RightParamB Security : 0
Property -> RightSurface Security : 0
Property -> RightSurfaceInput Security : 0
Property -> RootPriority Security : 0
Property -> RotVelocity Security : 0
Property -> Rotation Security : 0
Property -> Shape Security : 0
Property -> Size Security : 0
Property -> SpecificGravity Security : 0
Property -> TopParamA Security : 0
Property -> TopParamB Security : 0
Property -> TopSurface Security : 0
Property -> TopSurfaceInput Security : 0
Property -> Transparency Security : 0
Property -> Velocity Security : 0
Property -> brickColor Security : 0
Property -> formFactor Security : 0
Property -> formFactorRaw Security : 0
Property -> shap Security : 0
Property -> shape Security : 0
Property -> siz Security : 0
Property -> size Security : 0
Function -> ApplyAngularImpulse At address :00fbd630 Security 0 Security Name: None
Function -> ApplyImpulse At address :00fbd4f0 Security 0 Security Name: None
Function -> ApplyImpulseAtPosition At address :00fbd590 Security 0 Security Name: None
Function -> BreakJoints At address :00fcc2a1 Security 0 Security Name: None
Function -> CanCollideWith At address :00fc34a0 Security 0 Security Name: None
Function -> CanSetNetworkOwnership At address :00fc0270 Security 0 Security Name: None
Function -> GetConnectedParts At address :00fbe7a0 Security 0 Security Name: None
Function -> GetJoints At address :00fbf000 Security 0 Security Name: None
Function -> GetMass At address :00fbc2d0 Security 0 Security Name: None
Function -> GetNetworkOwner At address :00fbfbe0 Security 0 Security Name: None
Function -> GetNetworkOwnershipAuto At address :00fbf940 Security 0 Security Name: None
Function -> GetPivot At address :00d68ef0 Security 0 Security Name: None
Function -> GetRenderCFrame At address :00fb4810 Security 0 Security Name: None
Function -> GetRootPart At address :00fbeec0 Security 0 Security Name: None
Function -> GetTouchingParts At address :00fcc299 Security 0 Security Name: None
Function -> GetVelocityAtPosition At address :00fbd340 Security 0 Security Name: None
Function -> IsGrounded At address :00fbdcf0 Security 0 Security Name: None
Function -> MakeJoints At address :00fb78b0 Security 0 Security Name: None
Function -> PivotTo At address :0109b840 Security 0 Security Name: None
Function -> Resize At address :00fcc213 Security 0 Security Name: None
Function -> SetNetworkOwner At address :00fbfa10 Security 0 Security Name: None
Function -> SetNetworkOwnershipAuto At address :00fbf860 Security 0 Security Name: None
Function -> breakJoints At address :00fcc2a1 Security 0 Security Name: None
Function -> getMass At address :00fbc2d0 Security 0 Security Name: None
Function -> makeJoints At address :00fb78b0 Security 0 Security Name: None
Function -> resize At address :00fcc213 Security 0 Security Name: None
Event -> AncestryChanged Security : 0
Event -> AttributeChanged Security : 0
Event -> Changed Security : 0
Event -> ChildAdded Security : 0
Event -> ChildRemoved Security : 0
Event -> DescendantAdded Security : 0
Event -> DescendantRemoving Security : 0
Event -> Destroying Security : 0
Event -> LocalSimulationTouched Security : 0
Event -> NetworkOwnerChanged Security : 3
Event -> OutfitChanged Security : 0
Event -> StoppedTouching Security : 0
Event -> TouchEnded Security : 0
Event -> Touched Security : 0
Event -> childAdded Security : 0
--------------------
BodyColors
Property -> HeadColor Security : 0
Property -> HeadColor3 Security : 0
Property -> LeftArmColor Security : 0
Property -> LeftArmColor3 Security : 0
Property -> LeftLegColor Security : 0
Property -> LeftLegColor3 Security : 0
Property -> RightArmColor Security : 0
Property -> RightArmColor3 Security : 0
Property -> RightLegColor Security : 0
Property -> RightLegColor3 Security : 0
Property -> TorsoColor Security : 0
Property -> TorsoColor3 Security : 0
Event -> AncestryChanged Security : 0
Event -> AttributeChanged Security : 0
Event -> Changed Security : 0
Event -> ChildAdded Security : 0
Event -> ChildRemoved Security : 0
Event -> DescendantAdded Security : 0
Event -> DescendantRemoving Security : 0
Event -> Destroying Security : 0
Event -> childAdded Security : 0
--------------------
Humanoid
Property -> AutoJumpEnabled Security : 0
Property -> AutoRotate Security : 0
Property -> AutomaticScalingEnabled Security : 0
Property -> BreakJointsOnDeath Security : 0
Property -> CameraMaxDistance Security : 0
Property -> CameraMinDistance Security : 0
Property -> CameraMode Security : 0
Property -> CameraOffset Security : 0
Property -> CollisionType Security : 0
Property -> DisplayDistanceType Security : 0
Property -> DisplayName Security : 0
Property -> EvaluateStateMachine Security : 0
Property -> FloorMaterial Security : 0
Property -> Health Security : 0
Property -> HealthDisplayDistance Security : 0
Property -> HealthDisplayType Security : 0
Property -> Health_XML Security : 0
Property -> HipHeight Security : 0
Property -> InternalBodyScale Security : 0
Property -> InternalHeadScale Security : 0
Property -> InternalOriginalHipHeight Security : 0
Property -> Jump Security : 0
Property -> JumpHeight Security : 0
Property -> JumpPower Security : 0
Property -> JumpReplicate Security : 0
Property -> LeftLeg Security : 0
Property -> MaxHealth Security : 0
Property -> MaxSlopeAngle Security : 0
Property -> MoveDirection Security : 0
Property -> MoveDirectionInternal Security : 0
Property -> NameDisplayDistance Security : 0
Property -> NameOcclusion Security : 0
Property -> NetworkHumanoidState Security : 0
Property -> PlatformStand Security : 0
Property -> RequiresNeck Security : 0
Property -> RigType Security : 0
Property -> RightLeg Security : 0
Property -> RootPart Security : 0
Property -> SeatPart Security : 0
Property -> Sit Security : 0
Property -> Strafe Security : 0
Property -> TargetPoint Security : 0
Property -> Torso Security : 0
Property -> UseJumpPower Security : 0
Property -> WalkAngleError Security : 0
Property -> WalkDirection Security : 0
Property -> WalkSpeed Security : 0
Property -> WalkToPart Security : 0
Property -> WalkToPoint Security : 0
Property -> maxHealth Security : 0
Function -> AddAccessory At address :006162c0 Security 0 Security Name: None
Function -> AddCustomStatus At address :005f8290 Security 0 Security Name: None
Function -> AddStatus At address :005f8370 Security 0 Security Name: None
Function -> ApplyDescriptionBlocking At address :0060eee0 Security 5 Security Name: LocalUser
Function -> BuildRigFromAttachments At address :005fd4c0 Security 0 Security Name: None
Function -> ChangeState At address :005fe3d0 Security 0 Security Name: None
Function -> EquipTool At address :005fe4e0 Security 0 Security Name: None
Function -> GetAccessories At address :00616070 Security 0 Security Name: None
Function -> GetAccessoryHandleScale At address :006149a0 Security 5 Security Name: LocalUser
Function -> GetAppliedDescription At address :0060b1e0 Security 0 Security Name: None
Function -> GetBodyPartR15 At address :00603230 Security 0 Security Name: None
Function -> GetLimb At address :00602500 Security 0 Security Name: None
Function -> GetPlayingAnimationTracks At address :0060aeb0 Security 0 Security Name: None
Function -> GetState At address :005fe2e0 Security 0 Security Name: None
Function -> GetStateEnabled At address :006111f0 Security 0 Security Name: None
Function -> GetStatuses At address :005f7fd0 Security 0 Security Name: None
Function -> HasCustomStatus At address :005f8220 Security 0 Security Name: None
Function -> HasStatus At address :005f80d0 Security 0 Security Name: None
Function -> LoadAnimation At address :0060aed0 Security 0 Security Name: None
Function -> Move At address :00600d20 Security 0 Security Name: None
Function -> MoveTo At address :006009e0 Security 0 Security Name: None
Function -> RemoveAccessories At address :006163f0 Security 0 Security Name: None
Function -> RemoveCustomStatus At address :005f8420 Security 0 Security Name: None
Function -> RemoveStatus At address :005f8490 Security 0 Security Name: None
Function -> ReplaceBodyPartR15 At address :00603430 Security 0 Security Name: None
Function -> SetClickToWalkEnabled At address :005f1940 Security 5 Security Name: LocalUser
Function -> SetStateEnabled At address :00611220 Security 0 Security Name: None
Function -> TakeDamage At address :005f9a50 Security 0 Security Name: None
Function -> UnequipTools At address :005fe780 Security 0 Security Name: None
Function -> loadAnimation At address :0060aed0 Security 0 Security Name: None
Function -> takeDamage At address :005f9a50 Security 0 Security Name: None
Event -> AncestryChanged Security : 0
Event -> AnimationPlayed Security : 0
Event -> AttributeChanged Security : 0
Event -> Changed Security : 0
Event -> ChildAdded Security : 0
Event -> ChildRemoved Security : 0
Event -> Climbing Security : 0
Event -> ClusterCompositionFinished Security : 5
Event -> CustomStatusAdded Security : 0
Event -> CustomStatusRemoved Security : 0
Event -> DescendantAdded Security : 0
Event -> DescendantRemoving Security : 0
Event -> Destroying Security : 0
Event -> Died Security : 0
Event -> EmoteTriggered Security : 5
Event -> FallingDown Security : 0
Event -> FreeFalling Security : 0
Event -> GettingUp Security : 0
Event -> HealthChanged Security : 0
Event -> Jumping Security : 0
Event -> MoveToFinished Security : 0
Event -> PlatformStanding Security : 0
Event -> Ragdoll Security : 0
Event -> Running Security : 0
Event -> Seated Security : 0
Event -> ServerApplyDescription Security : 6
Event -> ServerBreakJoints Security : 6
Event -> ServerEquipTool Security : 6
Event -> StateChanged Security : 0
Event -> StateEnabledChanged Security : 0
Event -> StatusAdded Security : 0
Event -> StatusRemoved Security : 0
Event -> Strafing Security : 0
Event -> Swimming Security : 0
Event -> Touched Security : 0
Event -> childAdded Security : 0
--------------------
SpecialMesh
Property -> MeshId Security : 0
Property -> MeshType Security : 0
Property -> Offset Security : 0
Property -> Scale Security : 0
Property -> TextureId Security : 0
Property -> VertexColor Security : 0
Event -> AncestryChanged Security : 0
Event -> AttributeChanged Security : 0
Event -> Changed Security : 0
Event -> ChildAdded Security : 0
Event -> ChildRemoved Security : 0
Event -> DescendantAdded Security : 0
Event -> DescendantRemoving Security : 0
Event -> Destroying Security : 0
Event -> childAdded Security : 0
--------------------
Attachment
Property -> Axis Security : 0
Property -> CFrame Security : 0
Property -> Orientation Security : 0
Property -> Position Security : 0
Property -> Rotation Security : 0
Property -> SecondaryAxis Security : 0
Property -> Visible Security : 0
Property -> WorldAxis Security : 0
Property -> WorldCFrame Security : 0
Property -> WorldOrientation Security : 0
Property -> WorldPosition Security : 0
Property -> WorldRotation Security : 0
Property -> WorldSecondaryAxis Security : 0
Function -> GetAxis At address :006a45e0 Security 0 Security Name: None
Function -> GetSecondaryAxis At address :006a4a40 Security 0 Security Name: None
Function -> SetAxis At address :006a4560 Security 0 Security Name: None
Function -> SetSecondaryAxis At address :006a4c70 Security 0 Security Name: None
Event -> AncestryChanged Security : 0
Event -> AttributeChanged Security : 0
Event -> Changed Security : 0
Event -> ChildAdded Security : 0
Event -> ChildRemoved Security : 0
Event -> DescendantAdded Security : 0
Event -> DescendantRemoving Security : 0
Event -> Destroying Security : 0
Event -> childAdded Security : 0
--------------------
Decal
Property -> Color3 Security : 0
Property -> Face Security : 0
Property -> LocalTransparencyModifier Security : 0
Property -> Shiny Security : 0
Property -> Specular Security : 0
Property -> Texture Security : 0
Property -> Transparency Security : 0
Property -> ZIndex Security : 0
Event -> AncestryChanged Security : 0
Event -> AttributeChanged Security : 0
Event -> Changed Security : 0
Event -> ChildAdded Security : 0
Event -> ChildRemoved Security : 0
Event -> DescendantAdded Security : 0
Event -> DescendantRemoving Security : 0
Event -> Destroying Security : 0
Event -> childAdded Security : 0
--------------------
Motor6D
Property -> Active Security : 0
Property -> C0 Security : 0
Property -> C1 Security : 0
Property -> ChildName Security : 0
Property -> CurrentAngle Security : 0
Property -> DesiredAngle Security : 0
Property -> Enabled Security : 0
Property -> MaxVelocity Security : 0
Property -> ParentName Security : 0
Property -> Part0 Security : 0
Property -> Part1 Security : 0
Property -> Transform Security : 0
Property -> part1 Security : 0
Function -> SetDesiredAngle At address :01004135 Security 0 Security Name: None
Event -> AncestryChanged Security : 0
Event -> AttributeChanged Security : 0
Event -> Changed Security : 0
Event -> ChildAdded Security : 0
Event -> ChildRemoved Security : 0
Event -> DescendantAdded Security : 0
Event -> DescendantRemoving Security : 0
Event -> Destroying Security : 0
Event -> childAdded Security : 0
--------------------
Folder
Property -> ReplicatedGuiInsertionOrder Security : 6
Event -> AncestryChanged Security : 0
Event -> AttributeChanged Security : 0
Event -> Changed Security : 0
Event -> ChildAdded Security : 0
Event -> ChildRemoved Security : 0
Event -> DescendantAdded Security : 0
Event -> DescendantRemoving Security : 0
Event -> Destroying Security : 0
Event -> childAdded Security : 0
--------------------
BoolValue
Property -> Value Security : 0
Event -> AncestryChanged Security : 0
Event -> AttributeChanged Security : 0
Event -> Changed Security : 0
Event -> ChildAdded Security : 0
Event -> ChildRemoved Security : 0
Event -> DescendantAdded Security : 0
Event -> DescendantRemoving Security : 0
Event -> Destroying Security : 0
Event -> changed Security : 0
Event -> childAdded Security : 0
--------------------
BrickColorValue
Property -> Value Security : 0
Event -> AncestryChanged Security : 0
Event -> AttributeChanged Security : 0
Event -> Changed Security : 0
Event -> ChildAdded Security : 0
Event -> ChildRemoved Security : 0
Event -> DescendantAdded Security : 0
Event -> DescendantRemoving Security : 0
Event -> Destroying Security : 0
Event -> changed Security : 0
Event -> childAdded Security : 0
--------------------
CFrameValue
Property -> Value Security : 0
Event -> AncestryChanged Security : 0
Event -> AttributeChanged Security : 0
Event -> Changed Security : 0
Event -> ChildAdded Security : 0
Event -> ChildRemoved Security : 0
Event -> DescendantAdded Security : 0
Event -> DescendantRemoving Security : 0
Event -> Destroying Security : 0
Event -> changed Security : 0
Event -> childAdded Security : 0
--------------------
Color3Value
Property -> Value Security : 0
Event -> AncestryChanged Security : 0
Event -> AttributeChanged Security : 0
Event -> Changed Security : 0
Event -> ChildAdded Security : 0
Event -> ChildRemoved Security : 0
Event -> DescendantAdded Security : 0
Event -> DescendantRemoving Security : 0
Event -> Destroying Security : 0
Event -> changed Security : 0
Event -> childAdded Security : 0
--------------------
IntValue
Property -> Value Security : 0
Event -> AncestryChanged Security : 0
Event -> AttributeChanged Security : 0
Event -> Changed Security : 0
Event -> ChildAdded Security : 0
Event -> ChildRemoved Security : 0
Event -> DescendantAdded Security : 0
Event -> DescendantRemoving Security : 0
Event -> Destroying Security : 0
Event -> changed Security : 0
Event -> childAdded Security : 0
--------------------
NumberValue
Property -> Value Security : 0
Event -> AncestryChanged Security : 0
Event -> AttributeChanged Security : 0
Event -> Changed Security : 0
Event -> ChildAdded Security : 0
Event -> ChildRemoved Security : 0
Event -> DescendantAdded Security : 0
Event -> DescendantRemoving Security : 0
Event -> Destroying Security : 0
Event -> changed Security : 0
Event -> childAdded Security : 0
--------------------
ObjectValue
Property -> Value Security : 0
Event -> AncestryChanged Security : 0
Event -> AttributeChanged Security : 0
Event -> Changed Security : 0
Event -> ChildAdded Security : 0
Event -> ChildRemoved Security : 0
Event -> DescendantAdded Security : 0
Event -> DescendantRemoving Security : 0
Event -> Destroying Security : 0
Event -> changed Security : 0
Event -> childAdded Security : 0
--------------------
RayValue
Property -> Value Security : 0
Event -> AncestryChanged Security : 0
Event -> AttributeChanged Security : 0
Event -> Changed Security : 0
Event -> ChildAdded Security : 0
Event -> ChildRemoved Security : 0
Event -> DescendantAdded Security : 0
Event -> DescendantRemoving Security : 0
Event -> Destroying Security : 0
Event -> changed Security : 0
Event -> childAdded Security : 0
--------------------
StringValue
Property -> Value Security : 0
Event -> AncestryChanged Security : 0
Event -> AttributeChanged Security : 0
Event -> Changed Security : 0
Event -> ChildAdded Security : 0
Event -> ChildRemoved Security : 0
Event -> DescendantAdded Security : 0
Event -> DescendantRemoving Security : 0
Event -> Destroying Security : 0
Event -> changed Security : 0
Event -> childAdded Security : 0
--------------------
Vector3Value
Property -> Value Security : 0
Event -> AncestryChanged Security : 0
Event -> AttributeChanged Security : 0
Event -> Changed Security : 0
Event -> ChildAdded Security : 0
Event -> ChildRemoved Security : 0
Event -> DescendantAdded Security : 0
Event -> DescendantRemoving Security : 0
Event -> Destroying Security : 0
Event -> changed Security : 0
Event -> childAdded Security : 0
--------------------
MeshPart
Property -> AlternateMeshHash Security : 6
Property -> Anchored Security : 0
Property -> AssemblyAngularVelocity Security : 0
Property -> AssemblyCenterOfMass Security : 0
Property -> AssemblyLinearVelocity Security : 0
Property -> AssemblyMass Security : 0
Property -> AssemblyRootPart Security : 0
Property -> BackParamA Security : 0
Property -> BackParamB Security : 0
Property -> BackSurface Security : 0
Property -> BackSurfaceInput Security : 0
Property -> BottomParamA Security : 0
Property -> BottomParamB Security : 0
Property -> BottomSurface Security : 0
Property -> BottomSurfaceInput Security : 0
Property -> BrickColor Security : 0
Property -> CFrame Security : 0
Property -> CanCollide Security : 0
Property -> CanQuery Security : 0
Property -> CanTouch Security : 0
Property -> CastShadow Security : 0
Property -> CenterOfMass Security : 0
Property -> CollisionFidelity Security : 0
Property -> CollisionGroup Security : 0
Property -> CollisionGroupId Security : 0
Property -> CollisionGroupReplicate Security : 5
Property -> Color Security : 0
Property -> Color3uint8 Security : 0
Property -> CurrentPhysicalProperties Security : 0
Property -> CustomPhysicalProperties Security : 0
Property -> DoubleSided Security : 0
Property -> DraggingV1 Security : 0
Property -> Elasticity Security : 0
Property -> ExtentsCFrame Security : 0
Property -> ExtentsSize Security : 0
Property -> Friction Security : 0
Property -> FrontParamA Security : 0
Property -> FrontParamB Security : 0
Property -> FrontSurface Security : 0
Property -> FrontSurfaceInput Security : 0
Property -> HasJointOffset Security : 0
Property -> HasSkinnedMesh Security : 0
Property -> InitialSize Security : 6
Property -> JointOffset Security : 0
Property -> LeftParamA Security : 0
Property -> LeftParamB Security : 0
Property -> LeftSurface Security : 0
Property -> LeftSurfaceInput Security : 0
Property -> LocalSimulationValidation Security : 0
Property -> LocalTransparencyModifier Security : 0
Property -> Locked Security : 0
Property -> Mass Security : 0
Property -> Massless Security : 0
Property -> Material Security : 0
Property -> MaterialVariant Security : 0
Property -> MaterialVariantSerialized Security : 0
Property -> MeshID Security : 0
Property -> MeshId Security : 0
Property -> MeshSize Security : 0
Property -> NetworkIsSleeping Security : 0
Property -> NetworkOwnerV3 Security : 0
Property -> NetworkOwnershipRule Security : 0
Property -> Orientation Security : 0
Property -> Origin Security : 0
Property -> PhysicalConfigData Security : 6
Property -> PhysicsData Security : 6
Property -> Pivot Offset Security : 0
Property -> PivotOffset Security : 0
Property -> Position Security : 0
Property -> ReceiveAge Security : 0
Property -> Reflectance Security : 0
Property -> RenderFidelity Security : 0
Property -> RenderFidelityReplicate Security : 0
Property -> ResizeIncrement Security : 0
Property -> ResizeableFaces Security : 0
Property -> RightParamA Security : 0
Property -> RightParamB Security : 0
Property -> RightSurface Security : 0
Property -> RightSurfaceInput Security : 0
Property -> RootPriority Security : 0
Property -> RotVelocity Security : 0
Property -> Rotation Security : 0
Property -> Size Security : 0
Property -> SpecificGravity Security : 0
Property -> TextureID Security : 0
Property -> TopParamA Security : 0
Property -> TopParamB Security : 0
Property -> TopSurface Security : 0
Property -> TopSurfaceInput Security : 0
Property -> Transparency Security : 0
Property -> Velocity Security : 0
Property -> VertexCount Security : 6
Property -> brickColor Security : 0
Property -> siz Security : 0
Property -> size Security : 0
Function -> ApplyAngularImpulse At address :00fbd630 Security 0 Security Name: None
Function -> ApplyImpulse At address :00fbd4f0 Security 0 Security Name: None
Function -> ApplyImpulseAtPosition At address :00fbd590 Security 0 Security Name: None
Function -> ApplyMesh At address :01034d60 Security 0 Security Name: None
Function -> BreakJoints At address :00fcc2a1 Security 0 Security Name: None
Function -> CanCollideWith At address :00fc34a0 Security 0 Security Name: None
Function -> CanSetNetworkOwnership At address :00fc0270 Security 0 Security Name: None
Function -> GetConnectedParts At address :00fbe7a0 Security 0 Security Name: None
Function -> GetJoints At address :00fbf000 Security 0 Security Name: None
Function -> GetMass At address :00fbc2d0 Security 0 Security Name: None
Function -> GetNetworkOwner At address :00fbfbe0 Security 0 Security Name: None
Function -> GetNetworkOwnershipAuto At address :00fbf940 Security 0 Security Name: None
Function -> GetPivot At address :00d68ef0 Security 0 Security Name: None
Function -> GetRenderCFrame At address :00fb4810 Security 0 Security Name: None
Function -> GetRootPart At address :00fbeec0 Security 0 Security Name: None
Function -> GetTouchingParts At address :00fcc299 Security 0 Security Name: None
Function -> GetVelocityAtPosition At address :00fbd340 Security 0 Security Name: None
Function -> IsGrounded At address :00fbdcf0 Security 0 Security Name: None
Function -> MakeJoints At address :00fb78b0 Security 0 Security Name: None
Function -> PivotTo At address :0109b840 Security 0 Security Name: None
Function -> Resize At address :00fcc213 Security 0 Security Name: None
Function -> SetNetworkOwner At address :00fbfa10 Security 0 Security Name: None
Function -> SetNetworkOwnershipAuto At address :00fbf860 Security 0 Security Name: None
Function -> breakJoints At address :00fcc2a1 Security 0 Security Name: None
Function -> getMass At address :00fbc2d0 Security 0 Security Name: None
Function -> makeJoints At address :00fb78b0 Security 0 Security Name: None
Function -> resize At address :00fcc213 Security 0 Security Name: None
Event -> AncestryChanged Security : 0
Event -> AttributeChanged Security : 0
Event -> Changed Security : 0
Event -> ChildAdded Security : 0
Event -> ChildRemoved Security : 0
Event -> DescendantAdded Security : 0
Event -> DescendantRemoving Security : 0
Event -> Destroying Security : 0
Event -> LocalSimulationTouched Security : 0
Event -> NetworkOwnerChanged Security : 3
Event -> OutfitChanged Security : 0
Event -> StoppedTouching Security : 0
Event -> TouchEnded Security : 0
Event -> Touched Security : 0
Event -> childAdded Security : 0
--------------------
Seat
Property -> Anchored Security : 0
Property -> AssemblyAngularVelocity Security : 0
Property -> AssemblyCenterOfMass Security : 0
Property -> AssemblyLinearVelocity Security : 0
Property -> AssemblyMass Security : 0
Property -> AssemblyRootPart Security : 0
Property -> BackParamA Security : 0
Property -> BackParamB Security : 0
Property -> BackSurface Security : 0
Property -> BackSurfaceInput Security : 0
Property -> BottomParamA Security : 0
Property -> BottomParamB Security : 0
Property -> BottomSurface Security : 0
Property -> BottomSurfaceInput Security : 0
Property -> BrickColor Security : 0
Property -> CFrame Security : 0
Property -> CanCollide Security : 0
Property -> CanQuery Security : 0
Property -> CanTouch Security : 0
Property -> CastShadow Security : 0
Property -> CenterOfMass Security : 0
Property -> CollisionGroup Security : 0
Property -> CollisionGroupId Security : 0
Property -> CollisionGroupReplicate Security : 5
Property -> Color Security : 0
Property -> Color3uint8 Security : 0
Property -> CurrentPhysicalProperties Security : 0
Property -> CustomPhysicalProperties Security : 0