forked from Tescalus/Pendulum-Hubs-Source
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Drone.lua
1631 lines (1590 loc) · 68.4 KB
/
Drone.lua
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
loadstring(game:HttpGet("https://raw.githubusercontent.com/Tescalus/Pendulum-Hubs-Source/main/Reanimation.lua"))()
local plr = game:GetService("Players").LocalPlayer
local char,mouse = game.Workspace.non,plr:GetMouse()
local camera = game:GetService("Workspace").CurrentCamera
local fly = false
local campos = CFrame.new(0,0,0)
local wd,ad,sd,dd,qd,ed,rd,fd,moused = false,false,false,false,false,false,false,false,false
local returnhome = true
local gun = false
local gcd = false
local shooting = false
local tPitch = 3
local tCf = CFrame.new(0,20,0)
o1 = Instance.new("Model")
o2 = Instance.new("Part")
o3 = Instance.new("BlockMesh")
o4 = Instance.new("Part")
o5 = Instance.new("BlockMesh")
o6 = Instance.new("Part")
o7 = Instance.new("Part")
o8 = Instance.new("BlockMesh")
o9 = Instance.new("Part")
o10 = Instance.new("BlockMesh")
o11 = Instance.new("Part")
o12 = Instance.new("CylinderMesh")
o13 = Instance.new("Part")
o14 = Instance.new("BlockMesh")
o15 = Instance.new("Part")
o16 = Instance.new("BlockMesh")
o17 = Instance.new("Part")
o18 = Instance.new("BlockMesh")
o19 = Instance.new("Part")
o20 = Instance.new("Part")
o21 = Instance.new("BlockMesh")
o22 = Instance.new("Part")
o23 = Instance.new("BlockMesh")
o24 = Instance.new("Part")
o25 = Instance.new("BlockMesh")
o26 = Instance.new("Part")
o27 = Instance.new("Part")
o28 = Instance.new("Part")
o29 = Instance.new("BlockMesh")
o30 = Instance.new("Part")
o31 = Instance.new("BlockMesh")
o32 = Instance.new("Part")
o33 = Instance.new("Part")
o34 = Instance.new("BlockMesh")
o35 = Instance.new("Part")
o36 = Instance.new("CylinderMesh")
o37 = Instance.new("Part")
o38 = Instance.new("CylinderMesh")
o39 = Instance.new("SpotLight")
o40 = Instance.new("Model")
o41 = Instance.new("Part")
o42 = Instance.new("BlockMesh")
o43 = Instance.new("Part")
o44 = Instance.new("BlockMesh")
o45 = Instance.new("Part")
o46 = Instance.new("BlockMesh")
o47 = Instance.new("Part")
o48 = Instance.new("BlockMesh")
o49 = Instance.new("Part")
o50 = Instance.new("BlockMesh")
o51 = Instance.new("Part")
o52 = Instance.new("BlockMesh")
o53 = Instance.new("Model")
o54 = Instance.new("Part")
o55 = Instance.new("BlockMesh")
o56 = Instance.new("Part")
o57 = Instance.new("BlockMesh")
o58 = Instance.new("Part")
o59 = Instance.new("BlockMesh")
o60 = Instance.new("Part")
o61 = Instance.new("BlockMesh")
o62 = Instance.new("Part")
o63 = Instance.new("BlockMesh")
o64 = Instance.new("Part")
o65 = Instance.new("BlockMesh")
o66 = Instance.new("Part")
o67 = Instance.new("BlockMesh")
o68 = Instance.new("Part")
o69 = Instance.new("BlockMesh")
o70 = Instance.new("Part")
o71 = Instance.new("Model")
o72 = Instance.new("Part")
o73 = Instance.new("BlockMesh")
o74 = Instance.new("Part")
o75 = Instance.new("BlockMesh")
o76 = Instance.new("Part")
o77 = Instance.new("BlockMesh")
o78 = Instance.new("Part")
o79 = Instance.new("BlockMesh")
o80 = Instance.new("Part")
o81 = Instance.new("BlockMesh")
o82 = Instance.new("Part")
o83 = Instance.new("BlockMesh")
o84 = Instance.new("Model")
o85 = Instance.new("Part")
o86 = Instance.new("BlockMesh")
o87 = Instance.new("Part")
o88 = Instance.new("BlockMesh")
o89 = Instance.new("Part")
o90 = Instance.new("BlockMesh")
o91 = Instance.new("Part")
o92 = Instance.new("BlockMesh")
o93 = Instance.new("Part")
o94 = Instance.new("BlockMesh")
o95 = Instance.new("Part")
o96 = Instance.new("BlockMesh")
o97 = Instance.new("Part")
o98 = Instance.new("Model")
o99 = Instance.new("Part")
_G.loop = true
local player = game.Players.LocalPlayer
local char = player.Character
local Align = function(Part0, Part1,Mesh)
local Aligns = {
AlignOrientation = Instance.new("AlignOrientation", Part0),
AlignPosition = Instance.new("AlignPosition", Part0)
}
local Attachments = {
Attach0 = Instance.new("Attachment", Part0),
Attach1 = Instance.new("Attachment", Part1)
}
local m = Part0:FindFirstChildOfClass('SpecialMesh')--This will get the first "SpecialMesh" it finds if it does not find any, then it will return nil
if Mesh and m then --If Mesh is set to true and it finds a mesh it will destroy it
m:Destroy()
end
Part0:BreakJoints()
Aligns.AlignOrientation.Attachment0 = Attachments.Attach0
Aligns.AlignOrientation.Attachment1 = Attachments.Attach1
Aligns.AlignOrientation.Responsiveness = math.huge
Aligns.AlignOrientation.RigidityEnabled = true
Aligns.AlignPosition.Attachment0 = Attachments.Attach0
Aligns.AlignPosition.Attachment1 = Attachments.Attach1
Aligns.AlignPosition.Responsiveness = math.huge
Aligns.AlignPosition.RigidityEnabled = true
Aligns.AlignPosition.MaxForce = 999999999
spawn(function()
while _G.loop do
local mag = (Part0.Position - (Part1.CFrame*Attachments.Attach0.CFrame:Inverse()).p).magnitude--magnitude can get the distance between two cframe or position
if mag >= 5 then
Part0.CFrame = Part1.CFrame*Attachments.Attach0.CFrame:Inverse()
end
Part0.Velocity = Vector3.new(0,35,0)
game['Run Service'].Heartbeat:wait()
end
end)
return {Attachments.Attach0, Attachments, Aligns}
end
local hat = Align(char['AssistantDroneAccessory'].Handle,o99,false)
local cf = o99.CFrame*CFrame.new(0,0,0)*CFrame.Angles(math.rad(-100),math.rad(0),-4.7)
hat[1].CFrame = cf:Inverse() * o99.CFrame
spawn(function()
char.AncestryChanged:wait()--if you respawn, it will stop the loop to avoid lag of using it over and over
_G.loop = false
end)
o100 = Instance.new("CylinderMesh")
o101 = Instance.new("Part")
o102 = Instance.new("CylinderMesh")
o103 = Instance.new("Part")
o104 = Instance.new("CylinderMesh")
o105 = Instance.new("Part")
o106 = Instance.new("CylinderMesh")
o107 = Instance.new("Part")
o108 = Instance.new("CylinderMesh")
o109 = Instance.new("Part")
local s = Instance.new("Sound",char)
s.SoundId = "http://www.roblox.com/asset/?id=146830287"
s.Parent = o1.PrimaryPart
s.Pitch = 1
s.Volume = 1
s.Looped = true
wait(0.1)
s:play()
o1.Name = "Drone"
o1.Parent = game.Players.LocalPlayer.Character
o2.Parent = o1
o2.Material = Enum.Material.SmoothPlastic
o2.BrickColor = BrickColor.new("Institutional white")
o2.Position = Vector3.new(13.0515203, 41.184063, -70.0561295)
o2.Anchored = true
o2.CanCollide = false
o2.Size = Vector3.new(0.200000003, 0.200000003, 0.432551533)
o2.CFrame = CFrame.new(13.0515203, 41.184063, -70.0561295, 1, 0, 0, 0, 1, 0, 0, 0, 1)
o2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o2.Color = Color3.new(0.972549, 0.972549, 0.972549)
o2.Position = Vector3.new(13.0515203, 41.184063, -70.0561295)
o3.Parent = o2
o3.Scale = Vector3.new(0.337930918, 0.270344734, 1)
o4.Parent = o1
o4.Material = Enum.Material.SmoothPlastic
o4.BrickColor = BrickColor.new("Institutional white")
o4.Position = Vector3.new(11.0104322, 40.8393707, -70.0561218)
o4.Anchored = true
o4.CanCollide = false
o4.Size = Vector3.new(0.200000003, 0.7434479, 0.432551622)
o4.CFrame = CFrame.new(11.0104322, 40.8393707, -70.0561218, 1, 0, 0, 0, 1, 0, 0, 0, 1)
o4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o4.Color = Color3.new(0.972549, 0.972549, 0.972549)
o4.Position = Vector3.new(11.0104322, 40.8393707, -70.0561218)
o5.Parent = o4
o5.Scale = Vector3.new(0.337930918, 1, 1)
o6.Parent = o1
o6.Material = Enum.Material.SmoothPlastic
o6.BrickColor = BrickColor.new("Institutional white")
o6.Position = Vector3.new(12.0309782, 40.8393707, -70.5968246)
o6.Anchored = true
o6.Size = Vector3.new(2.10868883, 0.7434479, 0.648827374)
o6.CFrame = CFrame.new(12.0309782, 40.8393707, -70.5968246, 1, 0, 0, 0, 1, 0, 0, 0, 1)
o6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o6.Color = Color3.new(0.972549, 0.972549, 0.972549)
o6.Position = Vector3.new(12.0309782, 40.8393707, -70.5968246)
o7.Parent = o1
o7.Material = Enum.Material.SmoothPlastic
o7.BrickColor = BrickColor.new("Institutional white")
o7.Position = Vector3.new(13.0380087, 40.9340019, -70.0561295)
o7.Anchored = true
o7.CanCollide = false
o7.Size = Vector3.new(0.200000003, 0.446068704, 0.432551533)
o7.CFrame = CFrame.new(13.0380087, 40.9340019, -70.0561295, 1, 0, 0, 0, 1, 0, 0, 0, 1)
o7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o7.Color = Color3.new(0.972549, 0.972549, 0.972549)
o7.Position = Vector3.new(13.0380087, 40.9340019, -70.0561295)
o8.Parent = o7
o8.Scale = Vector3.new(0.202758551, 1, 1)
o9.Parent = o1
o9.Material = Enum.Material.SmoothPlastic
o9.BrickColor = BrickColor.new("Institutional white")
o9.Position = Vector3.new(13.0515203, 40.4946709, -70.0561295)
o9.Anchored = true
o9.CanCollide = false
o9.Size = Vector3.new(0.200000003, 0.200000003, 0.432551533)
o9.CFrame = CFrame.new(13.0515203, 40.4946709, -70.0561295, 1, 0, 0, 0, 1, 0, 0, 0, 1)
o9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o9.Color = Color3.new(0.972549, 0.972549, 0.972549)
o9.Position = Vector3.new(13.0515203, 40.4946709, -70.0561295)
o10.Parent = o9
o10.Scale = Vector3.new(0.337930918, 0.270344734, 1)
o11.Parent = o1
o11.Material = Enum.Material.SmoothPlastic
o11.BrickColor = BrickColor.new("Really black")
o11.Position = Vector3.new(13.0447683, 40.9407463, -70.0561218)
o11.Rotation = Vector3.new(-0, 0, -89.9999771)
o11.Anchored = true
o11.CanCollide = false
o11.Size = Vector3.new(0.432551593, 0.200000003, 0.432551533)
o11.CFrame = CFrame.new(13.0447683, 40.9407463, -70.0561218, 4.17232513e-07, 1.00000525, 0, -1.00000525, 4.17232513e-07, 0, 0, 0, 1)
o11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o11.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
o11.Position = Vector3.new(13.0447683, 40.9407463, -70.0561218)
o12.Parent = o11
o12.Scale = Vector3.new(1, 0.270344734, 1)
o13.Parent = o1
o13.Material = Enum.Material.SmoothPlastic
o13.BrickColor = BrickColor.new("Institutional white")
o13.Position = Vector3.new(11.6057615, 40.8393707, -71.2487564)
o13.Rotation = Vector3.new(-180, 14.9999971, -180)
o13.Anchored = true
o13.CanCollide = false
o13.Size = Vector3.new(1.08137906, 0.200000003, 0.200000003)
o13.CFrame = CFrame.new(11.6057615, 40.8393707, -71.2487564, -0.965925872, 0, 0.258818984, 0, 1, 0, -0.258818984, 0, -0.965925872)
o13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o13.Color = Color3.new(0.972549, 0.972549, 0.972549)
o13.Position = Vector3.new(11.6057615, 40.8393707, -71.2487564)
o14.Parent = o13
o14.Scale = Vector3.new(1, 0.473103225, 0.946206748)
o15.Parent = o1
o15.Material = Enum.Material.SmoothPlastic
o15.BrickColor = BrickColor.new("Institutional white")
o15.Position = Vector3.new(12.0377378, 40.8393707, -69.1775131)
o15.Anchored = true
o15.CanCollide = false
o15.Size = Vector3.new(1.82482684, 0.608275533, 0.200000003)
o15.CFrame = CFrame.new(12.0377378, 40.8393707, -69.1775131, 1, 0, 0, 0, 1, 0, 0, 0, 1)
o15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o15.Color = Color3.new(0.972549, 0.972549, 0.972549)
o15.Position = Vector3.new(12.0377378, 40.8393707, -69.1775131)
o16.Parent = o15
o16.Scale = Vector3.new(1, 1, 0.540689588)
o17.Parent = o1
o17.Material = Enum.Material.SmoothPlastic
o17.BrickColor = BrickColor.new("Institutional white")
o17.Position = Vector3.new(11.5763578, 40.8393707, -68.866394)
o17.Rotation = Vector3.new(-0, 14.9999971, -180)
o17.Anchored = true
o17.CanCollide = false
o17.Size = Vector3.new(1.08137906, 0.200000003, 0.200000003)
o17.CFrame = CFrame.new(11.5763578, 40.8393707, -68.866394, -0.965925872, 0, 0.258818984, 0, -1, 0, 0.258818984, 0, 0.965925872)
o17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o17.Color = Color3.new(0.972549, 0.972549, 0.972549)
o17.Position = Vector3.new(11.5763578, 40.8393707, -68.866394)
o18.Parent = o17
o18.Scale = Vector3.new(1, 0.473103225, 0.946206748)
o19.Parent = o1
o19.Material = Enum.Material.SmoothPlastic
o19.BrickColor = BrickColor.new("Institutional white")
o19.Position = Vector3.new(13.1865072, 40.8325996, -71.4201889)
o19.Rotation = Vector3.new(-180, -14.9999971, -0)
o19.Anchored = true
o19.Size = Vector3.new(0.243310437, 0.243310243, 0.243310302)
o19.CFrame = CFrame.new(13.1865072, 40.8325996, -71.4201889, 0.965925872, 0, -0.258818984, 0, -1, 0, -0.258818984, 0, -0.965925872)
o19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o19.Color = Color3.new(0.972549, 0.972549, 0.972549)
o19.Position = Vector3.new(13.1865072, 40.8325996, -71.4201889)
o20.Parent = o1
o20.Material = Enum.Material.SmoothPlastic
o20.BrickColor = BrickColor.new("Institutional white")
o20.Position = Vector3.new(12.0650892, 40.8393707, -71.0390167)
o20.Rotation = Vector3.new(-180, 0, -180)
o20.Anchored = true
o20.CanCollide = false
o20.Size = Vector3.new(0.432551652, 0.202758521, 0.200000003)
o20.CFrame = CFrame.new(12.0650892, 40.8393707, -71.0390167, -1, 0, 0, 0, 1, 0, 0, 0, -1)
o20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o20.Color = Color3.new(0.972549, 0.972549, 0.972549)
o20.Position = Vector3.new(12.0650892, 40.8393707, -71.0390167)
o21.Parent = o20
o21.Scale = Vector3.new(1, 1, 0.878620446)
o22.Parent = o1
o22.Material = Enum.Material.SmoothPlastic
o22.BrickColor = BrickColor.new("Institutional white")
o22.Position = Vector3.new(12.517333, 40.8393707, -68.866394)
o22.Rotation = Vector3.new(-0, -15.0000248, -0)
o22.Anchored = true
o22.CanCollide = false
o22.Size = Vector3.new(1.08137906, 0.200000003, 0.200000003)
o22.CFrame = CFrame.new(12.517333, 40.8393707, -68.866394, 0.965927541, 0, -0.258819461, 0, 1, 0, 0.258819461, 0, 0.965927541)
o22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o22.Color = Color3.new(0.972549, 0.972549, 0.972549)
o22.Position = Vector3.new(12.517333, 40.8393707, -68.866394)
o23.Parent = o22
o23.Scale = Vector3.new(1, 0.473103225, 0.946206748)
o24.Parent = o1
o24.Material = Enum.Material.SmoothPlastic
o24.BrickColor = BrickColor.new("Institutional white")
o24.Position = Vector3.new(12.0242186, 40.8393707, -70.9347534)
o24.Anchored = true
o24.CanCollide = false
o24.Size = Vector3.new(1.85186148, 0.608275533, 0.200000003)
o24.CFrame = CFrame.new(12.0242186, 40.8393707, -70.9347534, 1, 0, 0, 0, 1, 0, 0, 0, 1)
o24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o24.Color = Color3.new(0.972549, 0.972549, 0.972549)
o24.Position = Vector3.new(12.0242186, 40.8393707, -70.9347534)
o25.Parent = o24
o25.Scale = Vector3.new(1, 1, 0.540689588)
o26.Parent = o1
o26.Material = Enum.Material.SmoothPlastic
o26.BrickColor = BrickColor.new("Institutional white")
o26.Position = Vector3.new(10.936595, 40.8325996, -68.6949692)
o26.Rotation = Vector3.new(-0, 14.9999971, -180)
o26.Anchored = true
o26.Size = Vector3.new(0.243310437, 0.243310243, 0.243310302)
o26.CFrame = CFrame.new(10.936595, 40.8325996, -68.6949692, -0.965925872, 0, 0.258818984, 0, -1, 0, 0.258818984, 0, 0.965925872)
o26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o26.Color = Color3.new(0.972549, 0.972549, 0.972549)
o26.Position = Vector3.new(10.936595, 40.8325996, -68.6949692)
o27.Parent = o1
o27.Material = Enum.Material.SmoothPlastic
o27.BrickColor = BrickColor.new("Institutional white")
o27.Position = Vector3.new(10.9659986, 40.8325996, -71.4201889)
o27.Rotation = Vector3.new(-180, 14.9999971, -180)
o27.Anchored = true
o27.Size = Vector3.new(0.243310437, 0.243310243, 0.243310302)
o27.CFrame = CFrame.new(10.9659986, 40.8325996, -71.4201889, -0.965925872, 0, 0.258818984, 0, 1, 0, -0.258818984, 0, -0.965925872)
o27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o27.Color = Color3.new(0.972549, 0.972549, 0.972549)
o27.Position = Vector3.new(10.9659986, 40.8325996, -71.4201889)
o28.Parent = o1
o28.Material = Enum.Material.SmoothPlastic
o28.BrickColor = BrickColor.new("Institutional white")
o28.Position = Vector3.new(12.0580168, 40.8393707, -69.0761337)
o28.Anchored = true
o28.CanCollide = false
o28.Size = Vector3.new(0.432551652, 0.202758521, 0.200000003)
o28.CFrame = CFrame.new(12.0580168, 40.8393707, -69.0761337, 1, 0, 0, 0, 1, 0, 0, 0, 1)
o28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o28.Color = Color3.new(0.972549, 0.972549, 0.972549)
o28.Position = Vector3.new(12.0580168, 40.8393707, -69.0761337)
o29.Parent = o28
o29.Scale = Vector3.new(1, 1, 0.878620446)
o30.Parent = o1
o30.Material = Enum.Material.SmoothPlastic
o30.BrickColor = BrickColor.new("Institutional white")
o30.Position = Vector3.new(12.0580168, 40.8393707, -69.0355835)
o30.Anchored = true
o30.CanCollide = false
o30.Size = Vector3.new(0.405517191, 0.200000003, 0.256827533)
o30.CFrame = CFrame.new(12.0580168, 40.8393707, -69.0355835, 1, 0, 0, 0, 1, 0, 0, 0, 1)
o30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o30.Color = Color3.new(0.972549, 0.972549, 0.972549)
o30.Position = Vector3.new(12.0580168, 40.8393707, -69.0355835)
o31.Parent = o30
o31.Scale = Vector3.new(1, 0.473103225, 1)
o32.Parent = o1
o32.Material = Enum.Material.SmoothPlastic
o32.BrickColor = BrickColor.new("Institutional white")
o32.Position = Vector3.new(13.1571112, 40.8325996, -68.6949692)
o32.Rotation = Vector3.new(-0, -15.0000248, -0)
o32.Anchored = true
o32.Size = Vector3.new(0.243310437, 0.243310243, 0.243310302)
o32.CFrame = CFrame.new(13.1571112, 40.8325996, -68.6949692, 0.965927541, 0, -0.258819461, 0, 1, 0, 0.258819461, 0, 0.965927541)
o32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o32.Color = Color3.new(0.972549, 0.972549, 0.972549)
o32.Position = Vector3.new(13.1571112, 40.8325996, -68.6949692)
o33.Parent = o1
o33.Material = Enum.Material.SmoothPlastic
o33.BrickColor = BrickColor.new("Institutional white")
o33.Position = Vector3.new(12.5467367, 40.8393707, -71.2487564)
o33.Rotation = Vector3.new(-180, -14.9999971, -0)
o33.Anchored = true
o33.CanCollide = false
o33.Size = Vector3.new(1.08137906, 0.200000003, 0.200000003)
o33.CFrame = CFrame.new(12.5467367, 40.8393707, -71.2487564, 0.965925872, 0, -0.258818984, 0, -1, 0, -0.258818984, 0, -0.965925872)
o33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o33.Color = Color3.new(0.972549, 0.972549, 0.972549)
o33.Position = Vector3.new(12.5467367, 40.8393707, -71.2487564)
o34.Parent = o33
o34.Scale = Vector3.new(1, 0.473103225, 0.946206748)
o35.Parent = o1
o35.Material = Enum.Material.Neon
o35.BrickColor = BrickColor.new("Institutional white")
o35.Position = Vector3.new(13.05828, 40.9407463, -70.0561218)
o35.Rotation = Vector3.new(-0, 0, -89.9999771)
o35.Anchored = true
o35.CanCollide = false
o35.Size = Vector3.new(0.324413657, 0.200000003, 0.432551533)
o35.CFrame = CFrame.new(13.05828, 40.9407463, -70.0561218, 4.17232513e-07, 1.00000525, 0, -1.00000525, 4.17232513e-07, 0, 0, 0, 1)
o35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o35.Color = Color3.new(0.972549, 0.972549, 0.972549)
o35.Position = Vector3.new(13.05828, 40.9407463, -70.0561218)
o36.Parent = o35
o36.Scale = Vector3.new(1, 0.405517131, 1)
o37.Name = "Eye"
o37.Parent = o1
o37.Material = Enum.Material.Neon
o37.BrickColor = BrickColor.new("Lime green")
o37.Position = Vector3.new(13.0515203, 40.9407463, -70.0561218)
o37.Rotation = Vector3.new(-0, 0, -89.9999771)
o37.Anchored = true
o37.CanCollide = false
o37.Size = Vector3.new(0.405517131, 0.200000003, 0.432551533)
o37.CFrame = CFrame.new(13.0515203, 40.9407463, -70.0561218, 4.17232513e-07, 1.00000525, 0, -1.00000525, 4.17232513e-07, 0, 0, 0, 1)
o37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o37.Color = Color3.new(0, 1, 0)
o37.Position = Vector3.new(13.0515203, 40.9407463, -70.0561218)
o38.Parent = o37
o38.Scale = Vector3.new(1, 0.337930918, 1)
o39.Parent = o37
o39.Color = Color3.new(0, 1, 0)
o39.Brightness = 3
o39.Face = Enum.NormalId.Top
o39.Name = "Light"
o40.Name = "Rotor4"
o40.Parent = o1
o40.PrimaryPart = o41
o41.Name = "Main"
o41.Parent = o40
o41.Material = Enum.Material.SmoothPlastic
o41.BrickColor = BrickColor.new("Fossil")
o41.Position = Vector3.new(13.1841497, 41.1367531, -71.4254456)
o41.Anchored = true
o41.CanCollide = false
o41.Size = Vector3.new(0.200000003, 0.36496532, 0.200000003)
o41.CFrame = CFrame.new(13.1841497, 41.1367531, -71.4254456, 1, 0, 0, 0, 1, 0, 0, 0, 1)
o41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o41.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o41.Color = Color3.new(0.623529, 0.631373, 0.67451)
o41.Position = Vector3.new(13.1841497, 41.1367531, -71.4254456)
o42.Parent = o41
o42.Scale = Vector3.new(0.405518085, 1, 0.40551728)
o43.Parent = o40
o43.Material = Enum.Material.SmoothPlastic
o43.BrickColor = BrickColor.new("Fossil")
o43.Position = Vector3.new(13.1841497, 41.3597794, -71.4254456)
o43.Anchored = true
o43.CanCollide = false
o43.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
o43.CFrame = CFrame.new(13.1841497, 41.3597794, -71.4254456, 1, 0, 0, 0, 1, 0, 0, 0, 1)
o43.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o43.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o43.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o43.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o43.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o43.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o43.Color = Color3.new(0.623529, 0.631373, 0.67451)
o43.Position = Vector3.new(13.1841497, 41.3597794, -71.4254456)
o44.Parent = o43
o44.Scale = Vector3.new(0.540690422, 0.540689468, 0.540689766)
o45.Parent = o40
o45.Material = Enum.Material.SmoothPlastic
o45.BrickColor = BrickColor.new("Fossil")
o45.Position = Vector3.new(13.1841497, 41.3597794, -71.1821365)
o45.Rotation = Vector3.new(-0, 0, -14.9999666)
o45.Anchored = true
o45.CanCollide = false
o45.Size = Vector3.new(0.200000003, 0.200000003, 0.405517161)
o45.CFrame = CFrame.new(13.1841497, 41.3597794, -71.1821365, 0.965925932, 0.258818477, 0, -0.258818448, 0.965926051, 0, 0, 0, 1)
o45.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o45.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o45.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o45.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o45.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o45.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o45.Color = Color3.new(0.623529, 0.631373, 0.67451)
o45.Position = Vector3.new(13.1841497, 41.3597794, -71.1821365)
o46.Parent = o45
o46.Scale = Vector3.new(0.405518085, 0.135172486, 1)
o47.Parent = o40
o47.Material = Enum.Material.SmoothPlastic
o47.BrickColor = BrickColor.new("Fossil")
o47.Position = Vector3.new(12.9408331, 41.3597794, -71.4254456)
o47.Rotation = Vector3.new(14.999939, -90, 0)
o47.Anchored = true
o47.CanCollide = false
o47.Size = Vector3.new(0.200000003, 0.200000003, 0.405517161)
o47.CFrame = CFrame.new(12.9408331, 41.3597794, -71.4254456, 0, 0, -1, -0.25881803, 0.965926111, 0, 0.965926111, 0.25881803, 0)
o47.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o47.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o47.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o47.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o47.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o47.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o47.Color = Color3.new(0.623529, 0.631373, 0.67451)
o47.Position = Vector3.new(12.9408331, 41.3597794, -71.4254456)
o48.Parent = o47
o48.Scale = Vector3.new(0.405518085, 0.135172486, 1)
o49.Parent = o40
o49.Material = Enum.Material.SmoothPlastic
o49.BrickColor = BrickColor.new("Fossil")
o49.Position = Vector3.new(13.1841497, 41.3597794, -71.6687622)
o49.Rotation = Vector3.new(-0, 0, 14.9999952)
o49.Anchored = true
o49.CanCollide = false
o49.Size = Vector3.new(0.200000003, 0.200000003, 0.405517161)
o49.CFrame = CFrame.new(13.1841497, 41.3597794, -71.6687622, 0.965925872, -0.258818984, 0, 0.258818984, 0.965925872, 0, 0, 0, 1)
o49.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o49.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o49.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o49.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o49.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o49.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o49.Color = Color3.new(0.623529, 0.631373, 0.67451)
o49.Position = Vector3.new(13.1841497, 41.3597794, -71.6687622)
o50.Parent = o49
o50.Scale = Vector3.new(0.405518085, 0.135172486, 1)
o51.Parent = o40
o51.Material = Enum.Material.SmoothPlastic
o51.BrickColor = BrickColor.new("Fossil")
o51.Position = Vector3.new(13.4274492, 41.3597794, -71.4254532)
o51.Rotation = Vector3.new(-14.9999952, -90, 0)
o51.Anchored = true
o51.CanCollide = false
o51.Size = Vector3.new(0.200000003, 0.200000003, 0.405517161)
o51.CFrame = CFrame.new(13.4274492, 41.3597794, -71.4254532, 0, 0, -1, 0.258818984, 0.965925872, 0, 0.965925872, -0.258818984, 0)
o51.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o51.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o51.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o51.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o51.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o51.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o51.Color = Color3.new(0.623529, 0.631373, 0.67451)
o51.Position = Vector3.new(13.4274492, 41.3597794, -71.4254532)
o52.Parent = o51
o52.Scale = Vector3.new(0.405518085, 0.135172486, 1)
o53.Name = "Rotor3"
o53.Parent = o1
o53.PrimaryPart = o54
o54.Name = "Main"
o54.Parent = o53
o54.Material = Enum.Material.SmoothPlastic
o54.BrickColor = BrickColor.new("Fossil")
o54.Position = Vector3.new(10.9673338, 41.1367531, -71.4254456)
o54.Anchored = true
o54.CanCollide = false
o54.Size = Vector3.new(0.200000003, 0.36496532, 0.200000003)
o54.CFrame = CFrame.new(10.9673338, 41.1367531, -71.4254456, 1, 0, 0, 0, 1, 0, 0, 0, 1)
o54.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o54.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o54.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o54.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o54.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o54.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o54.Color = Color3.new(0.623529, 0.631373, 0.67451)
o54.Position = Vector3.new(10.9673338, 41.1367531, -71.4254456)
o55.Parent = o54
o55.Scale = Vector3.new(0.405518085, 1, 0.40551728)
o56.Parent = o53
o56.Material = Enum.Material.SmoothPlastic
o56.BrickColor = BrickColor.new("Fossil")
o56.Position = Vector3.new(10.9673338, 41.3597794, -71.4254456)
o56.Anchored = true
o56.CanCollide = false
o56.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
o56.CFrame = CFrame.new(10.9673338, 41.3597794, -71.4254456, 1, 0, 0, 0, 1, 0, 0, 0, 1)
o56.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o56.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o56.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o56.Color = Color3.new(0.623529, 0.631373, 0.67451)
o56.Position = Vector3.new(10.9673338, 41.3597794, -71.4254456)
o57.Parent = o56
o57.Scale = Vector3.new(0.540690422, 0.540689468, 0.540689766)
o58.Parent = o53
o58.Material = Enum.Material.SmoothPlastic
o58.BrickColor = BrickColor.new("Fossil")
o58.Position = Vector3.new(10.9673338, 41.3597794, -71.1821365)
o58.Rotation = Vector3.new(-0, 0, -14.9999666)
o58.Anchored = true
o58.CanCollide = false
o58.Size = Vector3.new(0.200000003, 0.200000003, 0.405517161)
o58.CFrame = CFrame.new(10.9673338, 41.3597794, -71.1821365, 0.965925932, 0.258818477, 0, -0.258818448, 0.965926051, 0, 0, 0, 1)
o58.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o58.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o58.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o58.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o58.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o58.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o58.Color = Color3.new(0.623529, 0.631373, 0.67451)
o58.Position = Vector3.new(10.9673338, 41.3597794, -71.1821365)
o59.Parent = o58
o59.Scale = Vector3.new(0.405518085, 0.135172486, 1)
o60.Parent = o53
o60.Material = Enum.Material.SmoothPlastic
o60.BrickColor = BrickColor.new("Fossil")
o60.Position = Vector3.new(10.7240248, 41.3597794, -71.4254456)
o60.Rotation = Vector3.new(14.999939, -90, 0)
o60.Anchored = true
o60.CanCollide = false
o60.Size = Vector3.new(0.200000003, 0.200000003, 0.405517161)
o60.CFrame = CFrame.new(10.7240248, 41.3597794, -71.4254456, 0, 0, -1, -0.25881803, 0.965926111, 0, 0.965926111, 0.25881803, 0)
o60.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o60.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o60.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o60.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o60.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o60.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o60.Color = Color3.new(0.623529, 0.631373, 0.67451)
o60.Position = Vector3.new(10.7240248, 41.3597794, -71.4254456)
o61.Parent = o60
o61.Scale = Vector3.new(0.405518085, 0.135172486, 1)
o62.Parent = o53
o62.Material = Enum.Material.SmoothPlastic
o62.BrickColor = BrickColor.new("Fossil")
o62.Position = Vector3.new(10.9673338, 41.3597794, -71.6687622)
o62.Rotation = Vector3.new(-0, 0, 14.9999952)
o62.Anchored = true
o62.CanCollide = false
o62.Size = Vector3.new(0.200000003, 0.200000003, 0.405517161)
o62.CFrame = CFrame.new(10.9673338, 41.3597794, -71.6687622, 0.965925872, -0.258818984, 0, 0.258818984, 0.965925872, 0, 0, 0, 1)
o62.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o62.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o62.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o62.Color = Color3.new(0.623529, 0.631373, 0.67451)
o62.Position = Vector3.new(10.9673338, 41.3597794, -71.6687622)
o63.Parent = o62
o63.Scale = Vector3.new(0.405518085, 0.135172486, 1)
o64.Parent = o53
o64.Material = Enum.Material.SmoothPlastic
o64.BrickColor = BrickColor.new("Fossil")
o64.Position = Vector3.new(11.2106352, 41.3597794, -71.4254532)
o64.Rotation = Vector3.new(-14.9999952, -90, 0)
o64.Anchored = true
o64.CanCollide = false
o64.Size = Vector3.new(0.200000003, 0.200000003, 0.405517161)
o64.CFrame = CFrame.new(11.2106352, 41.3597794, -71.4254532, 0, 0, -1, 0.258818984, 0.965925872, 0, 0.965925872, -0.258818984, 0)
o64.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o64.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o64.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o64.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o64.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o64.Color = Color3.new(0.623529, 0.631373, 0.67451)
o64.Position = Vector3.new(11.2106352, 41.3597794, -71.4254532)
o65.Parent = o64
o65.Scale = Vector3.new(0.405518085, 0.135172486, 1)
o66.Parent = o1
o66.Material = Enum.Material.SmoothPlastic
o66.BrickColor = BrickColor.new("Institutional white")
o66.Position = Vector3.new(13.0515203, 40.6163445, -70.1642685)
o66.Anchored = true
o66.CanCollide = false
o66.Size = Vector3.new(0.200000003, 0.200000003, 0.216275766)
o66.CFrame = CFrame.new(13.0515203, 40.6163445, -70.1642685, 1, 0, 0, 0, 1, 0, 0, 0, 1)
o66.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o66.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o66.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o66.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o66.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o66.Color = Color3.new(0.972549, 0.972549, 0.972549)
o66.Position = Vector3.new(13.0515203, 40.6163445, -70.1642685)
o67.Parent = o66
o67.Scale = Vector3.new(0.337930918, 0.94620645, 1)
o68.Name = "SmgShutter"
o68.Parent = o1
o68.Material = Enum.Material.SmoothPlastic
o68.BrickColor = BrickColor.new("Institutional white")
o68.Position = Vector3.new(13.0515203, 40.6163445, -69.9479904)
o68.Anchored = true
o68.CanCollide = false
o68.Size = Vector3.new(0.200000003, 0.200000003, 0.216275766)
o68.CFrame = CFrame.new(13.0515203, 40.6163445, -69.9479904, 1, 0, 0, 0, 1, 0, 0, 0, 1)
o68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o68.Color = Color3.new(0.972549, 0.972549, 0.972549)
o68.Position = Vector3.new(13.0515203, 40.6163445, -69.9479904)
o69.Parent = o68
o69.Scale = Vector3.new(0.337930918, 0.94620645, 1)
o70.Parent = o1
o70.Material = Enum.Material.SmoothPlastic
o70.BrickColor = BrickColor.new("Institutional white")
o70.Position = Vector3.new(12.0242186, 40.8325996, -70.0561218)
o70.Anchored = true
o70.Size = Vector3.new(1.98703384, 0.865103006, 1.62206864)
o70.CFrame = CFrame.new(12.0242186, 40.8325996, -70.0561218, 1, 0, 0, 0, 1, 0, 0, 0, 1)
o70.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o70.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o70.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o70.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o70.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o70.Color = Color3.new(0.972549, 0.972549, 0.972549)
o70.Position = Vector3.new(12.0242186, 40.8325996, -70.0561218)
o71.Name = "Rotor1"
o71.Parent = o1
o71.PrimaryPart = o72
o72.Name = "Main"
o72.Parent = o71
o72.Material = Enum.Material.SmoothPlastic
o72.BrickColor = BrickColor.new("Fossil")
o72.Position = Vector3.new(13.1571112, 41.1367531, -68.6949692)
o72.Anchored = true
o72.CanCollide = false
o72.Size = Vector3.new(0.200000003, 0.36496532, 0.200000003)
o72.CFrame = CFrame.new(13.1571112, 41.1367531, -68.6949692, 1, 0, 0, 0, 1, 0, 0, 0, 1)
o72.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o72.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o72.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o72.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o72.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o72.Color = Color3.new(0.623529, 0.631373, 0.67451)
o72.Position = Vector3.new(13.1571112, 41.1367531, -68.6949692)
o73.Parent = o72
o73.Scale = Vector3.new(0.405518085, 1, 0.40551728)
o74.Parent = o71
o74.Material = Enum.Material.SmoothPlastic
o74.BrickColor = BrickColor.new("Fossil")
o74.Position = Vector3.new(13.1571112, 41.3597794, -68.6949692)
o74.Anchored = true
o74.CanCollide = false
o74.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
o74.CFrame = CFrame.new(13.1571112, 41.3597794, -68.6949692, 1, 0, 0, 0, 1, 0, 0, 0, 1)
o74.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o74.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o74.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o74.Color = Color3.new(0.623529, 0.631373, 0.67451)
o74.Position = Vector3.new(13.1571112, 41.3597794, -68.6949692)
o75.Parent = o74
o75.Scale = Vector3.new(0.540690422, 0.540689468, 0.540689766)
o76.Parent = o71
o76.Material = Enum.Material.SmoothPlastic
o76.BrickColor = BrickColor.new("Fossil")
o76.Position = Vector3.new(13.1571112, 41.3597794, -68.4516602)
o76.Rotation = Vector3.new(-0, 0, -14.9999666)
o76.Anchored = true
o76.CanCollide = false
o76.Size = Vector3.new(0.200000003, 0.200000003, 0.405517161)
o76.CFrame = CFrame.new(13.1571112, 41.3597794, -68.4516602, 0.965925932, 0.258818477, 0, -0.258818448, 0.965926051, 0, 0, 0, 1)
o76.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o76.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o76.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o76.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o76.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o76.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o76.Color = Color3.new(0.623529, 0.631373, 0.67451)
o76.Position = Vector3.new(13.1571112, 41.3597794, -68.4516602)
o77.Parent = o76
o77.Scale = Vector3.new(0.405518085, 0.135172486, 1)
o78.Parent = o71
o78.Material = Enum.Material.SmoothPlastic
o78.BrickColor = BrickColor.new("Fossil")
o78.Position = Vector3.new(12.9138021, 41.3597794, -68.6949692)
o78.Rotation = Vector3.new(14.999939, -90, 0)
o78.Anchored = true
o78.CanCollide = false
o78.Size = Vector3.new(0.200000003, 0.200000003, 0.405517161)
o78.CFrame = CFrame.new(12.9138021, 41.3597794, -68.6949692, 0, 0, -1, -0.25881803, 0.965926111, 0, 0.965926111, 0.25881803, 0)
o78.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o78.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o78.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o78.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o78.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o78.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o78.Color = Color3.new(0.623529, 0.631373, 0.67451)
o78.Position = Vector3.new(12.9138021, 41.3597794, -68.6949692)
o79.Parent = o78
o79.Scale = Vector3.new(0.405518085, 0.135172486, 1)
o80.Parent = o71
o80.Material = Enum.Material.SmoothPlastic
o80.BrickColor = BrickColor.new("Fossil")
o80.Position = Vector3.new(13.1571112, 41.3597794, -68.9382782)
o80.Rotation = Vector3.new(-0, 0, 14.9999952)
o80.Anchored = true
o80.CanCollide = false
o80.Size = Vector3.new(0.200000003, 0.200000003, 0.405517161)
o80.CFrame = CFrame.new(13.1571112, 41.3597794, -68.9382782, 0.965925872, -0.258818984, 0, 0.258818984, 0.965925872, 0, 0, 0, 1)
o80.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o80.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o80.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o80.Color = Color3.new(0.623529, 0.631373, 0.67451)
o80.Position = Vector3.new(13.1571112, 41.3597794, -68.9382782)
o81.Parent = o80
o81.Scale = Vector3.new(0.405518085, 0.135172486, 1)
o82.Parent = o71
o82.Material = Enum.Material.SmoothPlastic
o82.BrickColor = BrickColor.new("Fossil")
o82.Position = Vector3.new(13.4004259, 41.3597794, -68.6949692)
o82.Rotation = Vector3.new(-14.9999952, -90, 0)
o82.Anchored = true
o82.CanCollide = false
o82.Size = Vector3.new(0.200000003, 0.200000003, 0.405517161)
o82.CFrame = CFrame.new(13.4004259, 41.3597794, -68.6949692, 0, 0, -1, 0.258818984, 0.965925872, 0, 0.965925872, -0.258818984, 0)
o82.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o82.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o82.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o82.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o82.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o82.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o82.Color = Color3.new(0.623529, 0.631373, 0.67451)
o82.Position = Vector3.new(13.4004259, 41.3597794, -68.6949692)
o83.Parent = o82
o83.Scale = Vector3.new(0.405518085, 0.135172486, 1)
o84.Name = "Rotor2"
o84.Parent = o1
o84.PrimaryPart = o85
o85.Name = "Main"
o85.Parent = o84
o85.Material = Enum.Material.SmoothPlastic
o85.BrickColor = BrickColor.new("Fossil")
o85.Position = Vector3.new(10.9403028, 41.1367531, -68.6949692)
o85.Anchored = true
o85.CanCollide = false
o85.Size = Vector3.new(0.200000003, 0.36496532, 0.200000003)
o85.CFrame = CFrame.new(10.9403028, 41.1367531, -68.6949692, 1, 0, 0, 0, 1, 0, 0, 0, 1)
o85.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o85.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o85.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o85.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o85.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o85.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o85.Color = Color3.new(0.623529, 0.631373, 0.67451)
o85.Position = Vector3.new(10.9403028, 41.1367531, -68.6949692)
o86.Parent = o85
o86.Scale = Vector3.new(0.405518085, 1, 0.40551728)
o87.Parent = o84
o87.Material = Enum.Material.SmoothPlastic
o87.BrickColor = BrickColor.new("Fossil")
o87.Position = Vector3.new(10.9403028, 41.3597794, -68.6949692)
o87.Anchored = true
o87.CanCollide = false
o87.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
o87.CFrame = CFrame.new(10.9403028, 41.3597794, -68.6949692, 1, 0, 0, 0, 1, 0, 0, 0, 1)
o87.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o87.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o87.FrontSurface = Enum.SurfaceType.SmoothNoOutlines