forked from Tescalus/Pendulum-Hubs-Source
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Amythest Ninja.lua
2410 lines (2341 loc) · 98.9 KB
/
Amythest Ninja.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
--------------------------------------------------------------
-----------//THE NIGHTFALL\\-----------
--[[Movelist
Mouseclick = 3 combos
-Attack 1 = Downwards slash
-Attack 2 = Power slash
-Attack 3 = Whirlwind slash
Q = Impale
E = Forward dash
R = Ear destroyer
T = Taunt
Y = Cutting storm
U = Homing Cutting storm
---------]]
--Recreated from the game Before the dawn: Redux.--
--Those who used this right when it was released, yes it was broken, it's fixed now--
--Impale dem suckazz and reeeeeeeeee--
-----------//THE NIGHTFALL\\-----------
--[[Movelist
Mouseclick = 3 combos
-Attack 1 = Downwards slash
-Attack 2 = Power slash
-Attack 3 = Whirlwind slash
Q = Impale
E = Forward dash
R = Ear destroyer
T = Taunt
Y = Cutting storm
U = Homing Cutting storm
---------]]
--Recreated from the game Before the dawn: Redux.--
--For those who used this when it was just released, it was broken, it's fixed now as of 12-18-2018--
--Impale dem suckazz and reeeeeeee--
loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/Tescalus/Pendulum-Hubs-Source/main/Pendulum%20Hub%20Align%20Method.lua"))()
loadstring(game:HttpGet("https://raw.githubusercontent.com/Tescalus/Pendulum-Hubs-Source/main/Reanimation.lua"))()
Player=game.Players.LocalPlayer
Character=Player.Character
Character.Humanoid.Name = "nightfall"
hum = Character.nightfall
LeftArm=Character["Left Arm"]
LeftLeg=Character["Left Leg"]
RightArm=Character["Right Arm"]
RightLeg=Character["Right Leg"]
Root=Character["HumanoidRootPart"]
Head=Character["Head"]
Torso=Character["Torso"]
Neck=Torso["Neck"]
walking = false
singularitybounce = false
jumping = false
targetfound = false
grabbed = false
attacking = false
firsttime = false
dash1 = true
dash2 = false
tauntdebounce = false
mouse = Mouse
position = nil
MseGuide = true
running = false
settime = 0
sine = 0
t = 0
ws = 19
jp = 100
secondform = false
change = 1
combo1 = true
dancing = false
equip = false
dgs = 75
dedlaff = false
combo2 = false
spin1 = true
spin2 = false
switch1 = true
switch2 = false
firsttime2 = false
isattacking = false
combo3 = false
gunallowance = false
cooldown = false
shooting = false
RunSrv = game:GetService("RunService")
RenderStepped = game:GetService("RunService").Stepped
removeuseless = game:GetService("Debris")
local slasher = {1543186629,1543187082,1543187280,1543186883}
local slasher2 = {220834019,220834000,220833976,220833967}
slash = #slasher
slash2 = #slasher2
screenGui = Instance.new("ScreenGui")
screenGui.Parent = script.Parent
local HEADLERP = Instance.new("ManualWeld")
HEADLERP.Parent = Head
HEADLERP.Part0 = Head
HEADLERP.Part1 = Head
HEADLERP.C0 = CFrame.new(0, -1.5, -0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
local TORSOLERP = Instance.new("ManualWeld")
TORSOLERP.Parent = Root
TORSOLERP.Part0 = Torso
TORSOLERP.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
local ROOTLERP = Instance.new("ManualWeld")
ROOTLERP.Parent = Root
ROOTLERP.Part0 = Root
ROOTLERP.Part1 = Torso
ROOTLERP.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
local RIGHTARMLERP = Instance.new("ManualWeld")
RIGHTARMLERP.Parent = RightArm
RIGHTARMLERP.Part0 = RightArm
RIGHTARMLERP.Part1 = Torso
RIGHTARMLERP.C0 = CFrame.new(-1.5, 0, -0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
local LEFTARMLERP = Instance.new("ManualWeld")
LEFTARMLERP.Parent = LeftArm
LEFTARMLERP.Part0 = LeftArm
LEFTARMLERP.Part1 = Torso
LEFTARMLERP.C0 = CFrame.new(1.5, 0, -0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
local RIGHTLEGLERP = Instance.new("ManualWeld")
RIGHTLEGLERP.Parent = RightLeg
RIGHTLEGLERP.Part0 = RightLeg
RIGHTLEGLERP.Part1 = Torso
RIGHTLEGLERP.C0 = CFrame.new(-0.5, 2, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
local LEFTLEGLERP = Instance.new("ManualWeld")
LEFTLEGLERP.Parent = LeftLeg
LEFTLEGLERP.Part0 = LeftLeg
LEFTLEGLERP.Part1 = Torso
LEFTLEGLERP.C0 = CFrame.new(0.5, 2, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
local function weldBetween(a, b)
local weld = Instance.new("ManualWeld", a)
weld.Part0 = a
weld.Part1 = b
weld.C0 = a.CFrame:inverse() * b.CFrame
return weld
end
function MAKETRAIL(PARENT,POSITION1,POSITION2,LIFETIME,COLOR)
A = Instance.new("Attachment", PARENT)
A.Position = POSITION1
A.Name = "A"
B = Instance.new("Attachment", PARENT)
B.Position = POSITION2
B.Name = "B"
tr1 = Instance.new("Trail", PARENT)
tr1.Attachment0 = A
tr1.Attachment1 = B
tr1.Enabled = true
tr1.Lifetime = LIFETIME
tr1.TextureMode = "Static"
tr1.LightInfluence = 0
tr1.Color = COLOR
tr1.Transparency = NumberSequence.new(0, 1)
end
footsteps = Instance.new("Sound",Torso)
footsteps.SoundId = "rbxassetid://1244506786"
footsteps.Volume = 0
footsteps.Looped = true
footsteps.Pitch = 1.6
footsteps.Name = "fp"
footsteps:Play()
slash = slasher[math.random(1,#slasher)]
slashs = Instance.new("Sound",RightArm)
slashs.SoundId = "rbxassetid://"..slash
slashs.Volume = 10
slashs.Pitch = 1
slashs.Name = "slashs"
introsound = Instance.new("Sound",Torso)
introsound.SoundId = "rbxassetid://1842444810"
introsound.Volume = 4
introsound:Play()
coroutine.wrap(function()
doomtheme = Instance.new("Sound",Torso)
doomtheme.Volume = 0
doomtheme.SoundId = "rbxassetid://2114921530"
doomtheme.Looped = true
doomtheme:Play()
doomtheme.Name = "doomtheme"
for i = 1, 20 do
doomtheme.Volume = doomtheme.Volume + .1
wait()
end
end)()
Torso.ChildRemoved:connect(function(removed)
if removed.Name == "doomtheme" then
doomtheme = Instance.new("Sound",Torso)
doomtheme.SoundId = "rbxassetid://2114921530"
doomtheme.Looped = true
doomtheme.Volume = 2
doomtheme:Play()
doomtheme.Name = "doomtheme"
end
end)
Torso.ChildRemoved:connect(function(removed)
if removed.Name == "slashs" then
slash = slasher[math.random(1,#slasher)]
slashs = Instance.new("Sound",RightArm)
slashs.SoundId = "rbxassetid://"..slash
slashs.Volume = 10
slashs.Pitch = 1
slashs.Name = "slashs"
end
end)
Torso.ChildRemoved:connect(function(removed)
if removed.Name == "fp" then
footsteps = Instance.new("Sound",Torso)
footsteps.SoundId = "rbxassetid://1244506786"
footsteps.Volume = 0
footsteps.Looped = true
footsteps.Pitch = 1.6
footsteps.Name = "fp"
footsteps:Play()
end
end)
leftlocation = Instance.new("Part",LeftArm)
leftlocation.Size = Vector3.new(1,1,1)
leftlocation.Transparency = 1
leftlocation.Name = "leftlocation"
leftlocationweld = weldBetween(leftlocation,LeftArm)
leftlocationweld.C0 = CFrame.new(0,1.2,0)
rightlocation = Instance.new("Part",RightArm)
rightlocation.Size = Vector3.new(1,1,1)
rightlocation.Transparency = 1
rightlocation.Name = "rightlocation"
rightlocationweld = weldBetween(rightlocation,RightArm)
rightlocationweld.C0 = CFrame.new(0,1.2,0)
A = Instance.new("Attachment", rightlocation)
A.Position = Vector3.new(.1,.3,.1)
A.Name = "A"
B = Instance.new("Attachment", rightlocation)
B.Position = Vector3.new(-.1,-.3,-.1)
B.Name = "B"
tr1 = Instance.new("Trail", rightlocation)
tr1.Attachment0 = A
tr1.Attachment1 = B
tr1.Enabled = false
tr1.Lifetime = .6
tr1.TextureMode = "Static"
tr1.LightInfluence = 0
tr1.Color = ColorSequence.new(BrickColor.new("Eggplant").Color,BrickColor.new("Really black").Color)
tr1.Transparency = NumberSequence.new(0, 1)
shirt = Instance.new("Shirt", Character)
shirt.Name = "Shirt"
Character.Shirt.ShirtTemplate = "rbxassetid://302262616"
particlecolor = ColorSequence.new(Color3.new(255, 255, 255))
leftlocation = Instance.new("Part",LeftArm)
leftlocation.Size = Vector3.new(1,1,1)
leftlocation.Transparency = 1
leftlocation.Name = "leftlocation"
leftlocationweld = weldBetween(leftlocation,LeftArm)
leftlocationweld.C0 = CFrame.new(0,1.2,0)
rightlocation = Instance.new("Part",RightArm)
rightlocation.Size = Vector3.new(1,1,1)
rightlocation.Transparency = 1
rightlocation.Name = "rightlocation"
rightlocationweld = weldBetween(rightlocation,RightArm)
rightlocationweld.C0 = CFrame.new(0,1.2,0)
particlemiter1 = Instance.new("ParticleEmitter", LeftArm)
particlemiter1.Enabled = false
particlemiter1.Color = particlecolor
particlemiter1.Texture = "rbxassetid://886346744"
particlemiter1.Lifetime = NumberRange.new(.05)
particlemiter1.Size = NumberSequence.new(1.75,1.75)
particlemiter1.Rate = 4
particlemiter1.Rotation = NumberRange.new(0,360)
particlemiter1.RotSpeed = NumberRange.new(0)
particlemiter1.Speed = NumberRange.new(0)
particlemiter2 = Instance.new("ParticleEmitter", RightArm)
particlemiter2.Enabled = false
particlemiter2.Color = particlecolor
particlemiter2.Texture = "rbxassetid://886346744"
particlemiter2.Rotation = NumberRange.new(0,360)
particlemiter2.Lifetime = NumberRange.new(.05)
particlemiter2.Size = NumberSequence.new(1.75,1.75)
particlemiter2.Rate = 4
particlemiter2.RotSpeed = NumberRange.new(0)
particlemiter2.Speed = NumberRange.new(0)
particlemiter4 = Instance.new("ParticleEmitter", LeftLeg)
particlemiter4.Enabled = false
particlemiter4.Color = particlecolor
particlemiter4.Texture = "rbxassetid://886346744"
particlemiter4.Lifetime = NumberRange.new(.05)
particlemiter4.Rotation = NumberRange.new(0,360)
particlemiter4.Size = NumberSequence.new(1.75,1.75)
particlemiter4.Rate = 4
particlemiter4.RotSpeed = NumberRange.new(0)
particlemiter4.Speed = NumberRange.new(0)
particlemiter5 = Instance.new("ParticleEmitter", RightLeg)
particlemiter5.Enabled = false
particlemiter5.Color = particlecolor
particlemiter5.Texture = "rbxassetid://886346744"
particlemiter5.Rotation = NumberRange.new(0,360)
particlemiter5.Lifetime = NumberRange.new(.05)
particlemiter5.Size = NumberSequence.new(1.75,1.75)
particlemiter5.Rate = 4
particlemiter5.RotSpeed = NumberRange.new(0)
particlemiter5.Speed = NumberRange.new(0)
particlemiter6 = Instance.new("ParticleEmitter", Torso)
particlemiter6.Enabled = false
particlemiter6.Color = particlecolor
particlemiter6.Texture = "rbxassetid://886346744"
particlemiter6.Rotation = NumberRange.new(0,360)
particlemiter6.Lifetime = NumberRange.new(.05)
particlemiter6.Size = NumberSequence.new(1.75,1.75)
particlemiter6.Rate = 4
particlemiter6.RotSpeed = NumberRange.new(0)
particlemiter6.Speed = NumberRange.new(0)
particlemiter7 = Instance.new("ParticleEmitter", Head)
particlemiter7.Enabled = false
particlemiter7.Color = particlecolor
particlemiter7.Texture = "rbxassetid://886346744"
particlemiter7.Rotation = NumberRange.new(0,360)
particlemiter7.Lifetime = NumberRange.new(.05)
particlemiter7.Size = NumberSequence.new(1.75,1.75)
particlemiter7.Rate = 4
particlemiter7.RotSpeed = NumberRange.new(0)
particlemiter7.Speed = NumberRange.new(0)
coroutine.wrap(function()
while true do
wait(7)
particlemiter1.Enabled = true
particlemiter2.Enabled = true
particlemiter4.Enabled = true
particlemiter5.Enabled = true
particlemiter6.Enabled = true
particlemiter7.Enabled = true
swait(60)
particlemiter1.Enabled = false
particlemiter2.Enabled = false
particlemiter4.Enabled = false
particlemiter5.Enabled = false
particlemiter6.Enabled = false
particlemiter7.Enabled = false
wait(11)
particlemiter1.Enabled = true
particlemiter2.Enabled = true
particlemiter4.Enabled = true
particlemiter5.Enabled = true
particlemiter6.Enabled = true
particlemiter7.Enabled = true
swait(60)
particlemiter1.Enabled = false
particlemiter2.Enabled = false
particlemiter4.Enabled = false
particlemiter5.Enabled = false
particlemiter6.Enabled = false
particlemiter7.Enabled = false
wait(4)
particlemiter1.Enabled = true
particlemiter2.Enabled = true
particlemiter4.Enabled = true
particlemiter5.Enabled = true
particlemiter6.Enabled = true
particlemiter7.Enabled = true
swait(60)
particlemiter1.Enabled = false
particlemiter2.Enabled = false
particlemiter4.Enabled = false
particlemiter5.Enabled = false
particlemiter6.Enabled = false
particlemiter7.Enabled = false
swait()
end
end)()
Head.BrickColor = BrickColor.new("Really black")
mas = Instance.new("Model",Head)
mas.Name = "Model2Script"
o1 = Instance.new("Model")
o2 = Instance.new("Part")
o3 = Instance.new("Part")
o4 = Instance.new("Part")
o5 = Instance.new("Part")
o6 = Instance.new("Part")
o7 = Instance.new("Part")
o8 = Instance.new("Part")
o9 = Instance.new("Part")
o10 = Instance.new("Part")
o11 = Instance.new("Part")
o12 = Instance.new("Part")
o13 = Instance.new("Part")
o14 = Instance.new("Part")
o15 = Instance.new("Part")
o16 = Instance.new("Part")
o17 = Instance.new("Part")
o18 = Instance.new("Part")
o19 = Instance.new("Part")
o20 = Instance.new("Part")
o21 = Instance.new("Part")
o22 = Instance.new("Part")
o23 = Instance.new("Part")
o24 = Instance.new("Part")
o25 = Instance.new("Part")
o26 = Instance.new("Part")
o27 = Instance.new("Part")
o28 = Instance.new("Part")
o29 = Instance.new("Part")
o30 = Instance.new("Part")
o31 = Instance.new("Part")
o32 = Instance.new("Part")
o33 = Instance.new("Part")
o34 = Instance.new("Part")
o35 = Instance.new("Part")
o36 = Instance.new("Part")
o37 = Instance.new("Part")
o1.Parent = mas
o2.Name = "Head"
o2.Parent = o1
o2.Material = Enum.Material.SmoothPlastic
o2.BrickColor = BrickColor.new("Really black")
o2.Transparency = 1
o2.Rotation = Vector3.new(-0.00999999978, 3.26999998, 0.00999999978)
o2.FormFactor = Enum.FormFactor.Symmetric
o2.Size = Vector3.new(1.99999988, 0.99999994, 0.99999994)
o2.CFrame = CFrame.new(12.5892553, 4.50960207, -3.75727963, 0.998376548, -0.000250246754, 0.0569584854, 0.000245001953, 1.00000846, 9.91025372e-05, -0.056957975, -8.49864373e-05, 0.998385131)
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.0666667, 0.0666667, 0.0666667)
o2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
o3.Parent = o2
o3.BrickColor = BrickColor.new("Fossil")
o3.Rotation = Vector3.new(-0.00999999978, 35.1199989, 0.0199999996)
o3.CanCollide = false
o3.Size = Vector3.new(0.0600024611, 0.250000179, 0.220000237)
o3.CFrame = CFrame.new(12.3422012, 4.47093582, -4.18185663, 0.817933738, -0.000248847413, 0.575312555, 0.000196001551, 1.00000846, 0.000153887318, -0.575316489, -1.31072084e-05, 0.817941368)
o3.BottomSurface = Enum.SurfaceType.Smooth
o3.TopSurface = Enum.SurfaceType.Smooth
o3.Color = Color3.new(0.623529, 0.631373, 0.67451)
o3.Color = Color3.new(0.623529, 0.631373, 0.67451)
o4.Parent = o2
o4.Material = Enum.Material.Neon
o4.BrickColor = BrickColor.new("Eggplant")
o4.Rotation = Vector3.new(0, 0.629999995, 0.00999999978)
o4.CanCollide = false
o4.Shape = Enum.PartType.Ball
o4.Size = Vector3.new(0.190001294, 0.190001294, 0.190001294)
o4.CFrame = CFrame.new(12.6813383, 4.85306978, -4.3403945, 0.999939919, -0.00023901432, 0.0109635331, 0.00023900198, 1.00000846, 2.62037793e-06, -0.0109626129, 3.71073838e-10, 0.999948502)
o4.BottomSurface = Enum.SurfaceType.Smooth
o4.TopSurface = Enum.SurfaceType.Smooth
o4.Color = Color3.new(0.482353, 0, 0.482353)
o4.Color = Color3.new(0.482353, 0, 0.482353)
o5.Parent = o2
o5.BrickColor = BrickColor.new("Fossil")
o5.Rotation = Vector3.new(-0.00999999978, 35.1199989, 0.0199999996)
o5.CanCollide = false
o5.Size = Vector3.new(0.0600024611, 0.250000179, 0.220000237)
o5.CFrame = CFrame.new(12.25453, 4.47092152, -4.12017584, 0.817933738, -0.000248847413, 0.575312555, 0.000196001551, 1.00000846, 0.000153887318, -0.575316489, -1.31072084e-05, 0.817941368)
o5.BottomSurface = Enum.SurfaceType.Smooth
o5.TopSurface = Enum.SurfaceType.Smooth
o5.Color = Color3.new(0.623529, 0.631373, 0.67451)
o5.Color = Color3.new(0.623529, 0.631373, 0.67451)
o6.Parent = o2
o6.BrickColor = BrickColor.new("Fossil")
o6.Rotation = Vector3.new(-0.00999999978, 35.1199989, 0.0199999996)
o6.CanCollide = false
o6.Size = Vector3.new(0.0600024611, 0.250000179, 0.220000237)
o6.CFrame = CFrame.new(12.3307505, 4.47093344, -4.19189453, 0.817933738, -0.000248847413, 0.575312555, 0.000196001551, 1.00000846, 0.000153887318, -0.575316489, -1.31072084e-05, 0.817941368)
o6.BottomSurface = Enum.SurfaceType.Smooth
o6.TopSurface = Enum.SurfaceType.Smooth
o6.Color = Color3.new(0.623529, 0.631373, 0.67451)
o6.Color = Color3.new(0.623529, 0.631373, 0.67451)
o7.Parent = o2
o7.BrickColor = BrickColor.new("Fossil")
o7.Rotation = Vector3.new(-0.00999999978, 35.1199989, 0.0199999996)
o7.CanCollide = false
o7.Size = Vector3.new(0.0600024611, 0.250000179, 0.220000237)
o7.CFrame = CFrame.new(12.4249439, 4.47095871, -4.24005365, 0.817933738, -0.000248847413, 0.575312555, 0.000196001551, 1.00000846, 0.000153887318, -0.575316489, -1.31072084e-05, 0.817941368)
o7.BottomSurface = Enum.SurfaceType.Smooth
o7.TopSurface = Enum.SurfaceType.Smooth
o7.Color = Color3.new(0.623529, 0.631373, 0.67451)
o7.Color = Color3.new(0.623529, 0.631373, 0.67451)
o8.Parent = o2
o8.BrickColor = BrickColor.new("Fossil")
o8.Rotation = Vector3.new(0.00999999978, -30.1099987, 0.0199999996)
o8.CanCollide = false
o8.Size = Vector3.new(0.0600024611, 0.250000179, 0.260000259)
o8.CFrame = CFrame.new(12.8379145, 4.46701479, -4.16434002, 0.865085423, -0.000253115431, -0.501624584, 0.000219001973, 1.00000846, -0.000126912026, 0.50162971, -6.67569111e-08, 0.865092278)
o8.BottomSurface = Enum.SurfaceType.Smooth
o8.TopSurface = Enum.SurfaceType.Smooth
o8.Color = Color3.new(0.623529, 0.631373, 0.67451)
o8.Color = Color3.new(0.623529, 0.631373, 0.67451)
o9.Parent = o2
o9.BrickColor = BrickColor.new("Fossil")
o9.Rotation = Vector3.new(0.00999999978, -30.1099987, 0.0199999996)
o9.CanCollide = false
o9.Size = Vector3.new(0.0600024611, 0.250000179, 0.260000259)
o9.CFrame = CFrame.new(12.9631338, 4.46704054, -4.09174585, 0.865085423, -0.000253115431, -0.501624584, 0.000219001973, 1.00000846, -0.000126912026, 0.50162971, -6.67569111e-08, 0.865092278)
o9.BottomSurface = Enum.SurfaceType.Smooth
o9.TopSurface = Enum.SurfaceType.Smooth
o9.Color = Color3.new(0.623529, 0.631373, 0.67451)
o9.Color = Color3.new(0.623529, 0.631373, 0.67451)
o10.Parent = o2
o10.BrickColor = BrickColor.new("Fossil")
o10.Rotation = Vector3.new(-0.00999999978, 35.1199989, 0.0199999996)
o10.CanCollide = false
o10.Size = Vector3.new(0.0600024611, 0.250000179, 0.220000237)
o10.CFrame = CFrame.new(12.2429972, 4.4709177, -4.11946106, 0.817933738, -0.000248847413, 0.575312555, 0.000196001551, 1.00000846, 0.000153887318, -0.575316489, -1.31072084e-05, 0.817941368)
o10.BottomSurface = Enum.SurfaceType.Smooth
o10.TopSurface = Enum.SurfaceType.Smooth
o10.Color = Color3.new(0.623529, 0.631373, 0.67451)
o10.Color = Color3.new(0.623529, 0.631373, 0.67451)
o11.Parent = o2
o11.Material = Enum.Material.Metal
o11.BrickColor = BrickColor.new("Pearl")
o11.Rotation = Vector3.new(-179.959991, 70.5100021, 179.970001)
o11.CanCollide = false
o11.Size = Vector3.new(0.250002503, 0.350000173, 0.2900002)
o11.CFrame = CFrame.new(13.0351248, 4.18798542, -4.05297899, -0.333613515, -0.000202421492, 0.942709923, -1.74622983e-10, 1.00000834, 0.000214724801, -0.942718267, 7.16352733e-05, -0.333615392)
o11.BottomSurface = Enum.SurfaceType.Smooth
o11.TopSurface = Enum.SurfaceType.Smooth
o11.Color = Color3.new(0.905882, 0.905882, 0.92549)
o11.Color = Color3.new(0.905882, 0.905882, 0.92549)
o12.Parent = o2
o12.Material = Enum.Material.Metal
o12.BrickColor = BrickColor.new("Pearl")
o12.Rotation = Vector3.new(-0.0199999996, 59.8599968, 0.0299999993)
o12.CanCollide = false
o12.Size = Vector3.new(0.250002503, 0.330000162, 0.2900002)
o12.CFrame = CFrame.new(12.1336823, 4.17776823, -4.01179171, 0.502042472, -0.000225768134, 0.864842951, 0.000113000759, 1.00000834, 0.000195456203, -0.864849985, -3.99100827e-07, 0.502047539)
o12.BottomSurface = Enum.SurfaceType.Smooth
o12.TopSurface = Enum.SurfaceType.Smooth
o12.Color = Color3.new(0.905882, 0.905882, 0.92549)
o12.Color = Color3.new(0.905882, 0.905882, 0.92549)
o13.Parent = o2
o13.BrickColor = BrickColor.new("Fossil")
o13.Rotation = Vector3.new(-0.00999999978, 35.1199989, 0.0199999996)
o13.CanCollide = false
o13.Size = Vector3.new(0.0600024611, 0.250000179, 0.260000259)
o13.CFrame = CFrame.new(12.4135151, 4.13782883, -4.25640917, 0.817933738, -0.000248847413, 0.575312555, 0.000196001551, 1.00000846, 0.000153887318, -0.575316489, -1.31072084e-05, 0.817941368)
o13.BottomSurface = Enum.SurfaceType.Smooth
o13.TopSurface = Enum.SurfaceType.Smooth
o13.Color = Color3.new(0.623529, 0.631373, 0.67451)
o13.Color = Color3.new(0.623529, 0.631373, 0.67451)
o14.Parent = o2
o14.Material = Enum.Material.SmoothPlastic
o14.BrickColor = BrickColor.new("Really black")
o14.Rotation = Vector3.new(0, 0.629999995, 0.00999999978)
o14.CanCollide = false
o14.Size = Vector3.new(0.370002419, 0.380000234, 0.300000221)
o14.CFrame = CFrame.new(12.5940952, 4.50669909, -4.2362237, 0.999939919, -0.00023901432, 0.0109635331, 0.00023900198, 1.00000846, 2.62037793e-06, -0.0109626129, 3.71073838e-10, 0.999948502)
o14.BottomSurface = Enum.SurfaceType.Smooth
o14.TopSurface = Enum.SurfaceType.Smooth
o14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
o14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
o15.Parent = o2
o15.Material = Enum.Material.Metal
o15.BrickColor = BrickColor.new("Pearl")
o15.Rotation = Vector3.new(0, 0.629999995, 0.00999999978)
o15.CanCollide = false
o15.Size = Vector3.new(0.0800024197, 0.250000238, 0.300000221)
o15.CFrame = CFrame.new(12.720789, 4.13790607, -4.30649519, 0.999939919, -0.00023901432, 0.0109635331, 0.00023900198, 1.00000846, 2.62037793e-06, -0.0109626129, 3.71073838e-10, 0.999948502)
o15.BottomSurface = Enum.SurfaceType.Smooth
o15.TopSurface = Enum.SurfaceType.Smooth
o15.Color = Color3.new(0.905882, 0.905882, 0.92549)
o15.Color = Color3.new(0.905882, 0.905882, 0.92549)
o16.Parent = o2
o16.BrickColor = BrickColor.new("Fossil")
o16.Rotation = Vector3.new(0.00999999978, -30.1099987, 0.0199999996)
o16.CanCollide = false
o16.Size = Vector3.new(0.0600024611, 0.250000179, 0.260000259)
o16.CFrame = CFrame.new(12.8739166, 4.14795494, -4.19200373, 0.865085423, -0.000253115431, -0.501624584, 0.000219001973, 1.00000846, -0.000126912026, 0.50162971, -6.67569111e-08, 0.865092278)
o16.BottomSurface = Enum.SurfaceType.Smooth
o16.TopSurface = Enum.SurfaceType.Smooth
o16.Color = Color3.new(0.623529, 0.631373, 0.67451)
o16.Color = Color3.new(0.623529, 0.631373, 0.67451)
o17.Parent = o2
o17.Material = Enum.Material.Metal
o17.BrickColor = BrickColor.new("Pearl")
o17.Rotation = Vector3.new(0, 0.629999995, 30.0699997)
o17.CanCollide = false
o17.Size = Vector3.new(0.370002478, 0.120000228, 0.130000144)
o17.CFrame = CFrame.new(13.0013018, 5.05734348, -4.35467005, 0.865364432, -0.501023412, 0.0109602921, 0.501057446, 0.865423858, 2.24432806e-05, -0.00949566439, 0.00547180884, 0.999948561)
o17.BottomSurface = Enum.SurfaceType.Smooth
o17.TopSurface = Enum.SurfaceType.Smooth
o17.Color = Color3.new(0.905882, 0.905882, 0.92549)
o17.Color = Color3.new(0.905882, 0.905882, 0.92549)
o18.Parent = o2
o18.Material = Enum.Material.Neon
o18.BrickColor = BrickColor.new("Eggplant")
o18.Rotation = Vector3.new(0, 0.629999995, -89.9899979)
o18.CanCollide = false
o18.Shape = Enum.PartType.Cylinder
o18.Size = Vector3.new(0.48999992, 1.15999997, 1.30999982)
o18.CFrame = CFrame.new(12.586771, 4.26036596, -3.78879094, 0.000245000003, 0.999939919, 0.0109635293, -1.00000846, 0.000244855793, 1.46855382e-05, 1.19998876e-05, -0.0109626055, 0.999948502)
o18.BottomSurface = Enum.SurfaceType.Smooth
o18.TopSurface = Enum.SurfaceType.Smooth
o18.Color = Color3.new(0.482353, 0, 0.482353)
o18.Color = Color3.new(0.482353, 0, 0.482353)
o19.Parent = o2
o19.Material = Enum.Material.Metal
o19.BrickColor = BrickColor.new("Pearl")
o19.Rotation = Vector3.new(0, 0.629999995, 12.8699999)
o19.CanCollide = false
o19.Size = Vector3.new(0.0800024197, 0.170000225, 0.2900002)
o19.CFrame = CFrame.new(12.6530409, 4.55379057, -4.27083921, 0.974806547, -0.22278282, 0.0109562129, 0.222797751, 0.974873364, 2.55261766e-05, -0.0106856115, 0.00241591129, 0.999948502)
o19.BottomSurface = Enum.SurfaceType.Smooth
o19.TopSurface = Enum.SurfaceType.Smooth
o19.Color = Color3.new(0.905882, 0.905882, 0.92549)
o19.Color = Color3.new(0.905882, 0.905882, 0.92549)
o20.Parent = o2
o20.Material = Enum.Material.Metal
o20.BrickColor = BrickColor.new("Pearl")
o20.Rotation = Vector3.new(-0.00999999978, 29.6299992, 0.0199999996)
o20.CanCollide = false
o20.Size = Vector3.new(0.420002431, 0.200000226, 0.2900002)
o20.CFrame = CFrame.new(12.2898045, 4.11280489, -4.19457197, 0.869223297, -0.000238353008, 0.494419813, 0.000207001765, 1.00000846, 0.000118167409, -0.494423091, -3.67785105e-07, 0.869231284)
o20.BottomSurface = Enum.SurfaceType.Smooth
o20.TopSurface = Enum.SurfaceType.Smooth
o20.Color = Color3.new(0.905882, 0.905882, 0.92549)
o20.Color = Color3.new(0.905882, 0.905882, 0.92549)
o21.Parent = o2
o21.Material = Enum.Material.Metal
o21.BrickColor = BrickColor.new("Pearl")
o21.Rotation = Vector3.new(0, 0.629999995, 30.0699997)
o21.CanCollide = false
o21.Size = Vector3.new(0.350002438, 0.120000228, 0.130000204)
o21.CFrame = CFrame.new(13.0757389, 4.90882826, -4.35546923, 0.865364432, -0.501023412, 0.0109602921, 0.501057446, 0.865423858, 2.24432806e-05, -0.00949566439, 0.00547180884, 0.999948561)
o21.BottomSurface = Enum.SurfaceType.Smooth
o21.TopSurface = Enum.SurfaceType.Smooth
o21.Color = Color3.new(0.905882, 0.905882, 0.92549)
o21.Color = Color3.new(0.905882, 0.905882, 0.92549)
o22.Parent = o2
o22.Material = Enum.Material.Metal
o22.BrickColor = BrickColor.new("Pearl")
o22.Rotation = Vector3.new(0, 0.629999995, 30.0699997)
o22.CanCollide = false
o22.Size = Vector3.new(0.330002487, 0.110000268, 0.140000194)
o22.CFrame = CFrame.new(13.142314, 4.7739563, -4.35119486, 0.865364432, -0.501023412, 0.0109602921, 0.501057446, 0.865423858, 2.24432806e-05, -0.00949566439, 0.00547180884, 0.999948561)
o22.BottomSurface = Enum.SurfaceType.Smooth
o22.TopSurface = Enum.SurfaceType.Smooth
o22.Color = Color3.new(0.905882, 0.905882, 0.92549)
o22.Color = Color3.new(0.905882, 0.905882, 0.92549)
o23.Parent = o2
o23.Material = Enum.Material.Metal
o23.BrickColor = BrickColor.new("Pearl")
o23.Rotation = Vector3.new(0, 0.629999995, 0.00999999978)
o23.CanCollide = false
o23.Size = Vector3.new(0.0800024197, 0.250000238, 0.2900002)
o23.CFrame = CFrame.new(12.4452009, 4.13783503, -4.29846525, 0.999939919, -0.00023901432, 0.0109635331, 0.00023900198, 1.00000846, 2.62037793e-06, -0.0109626129, 3.71073838e-10, 0.999948502)
o23.BottomSurface = Enum.SurfaceType.Smooth
o23.TopSurface = Enum.SurfaceType.Smooth
o23.Color = Color3.new(0.905882, 0.905882, 0.92549)
o23.Color = Color3.new(0.905882, 0.905882, 0.92549)
o24.Parent = o2
o24.Material = Enum.Material.Metal
o24.BrickColor = BrickColor.new("Pearl")
o24.Rotation = Vector3.new(0, 0.629999995, -30.1299992)
o24.CanCollide = false
o24.Size = Vector3.new(0.330002487, 0.110000268, 0.130000249)
o24.CFrame = CFrame.new(13.0381289, 4.67515135, -4.35506392, 0.864809334, 0.501980901, 0.0109607317, -0.502015352, 0.864868522, 1.60243653e-05, -0.00947066396, -0.00551580451, 0.999948561)
o24.BottomSurface = Enum.SurfaceType.Smooth
o24.TopSurface = Enum.SurfaceType.Smooth
o24.Color = Color3.new(0.905882, 0.905882, 0.92549)
o24.Color = Color3.new(0.905882, 0.905882, 0.92549)
o25.Parent = o2
o25.BrickColor = BrickColor.new("Fossil")
o25.Rotation = Vector3.new(-0.00999999978, 35.1199989, 0.0199999996)
o25.CanCollide = false
o25.Size = Vector3.new(0.0600024611, 0.250000179, 0.260000259)
o25.CFrame = CFrame.new(12.2344007, 4.13779402, -4.13043022, 0.817933738, -0.000248847413, 0.575312555, 0.000196001551, 1.00000846, 0.000153887318, -0.575316489, -1.31072084e-05, 0.817941368)
o25.BottomSurface = Enum.SurfaceType.Smooth
o25.TopSurface = Enum.SurfaceType.Smooth
o25.Color = Color3.new(0.623529, 0.631373, 0.67451)
o25.Color = Color3.new(0.623529, 0.631373, 0.67451)
o26.Parent = o2
o26.BrickColor = BrickColor.new("Fossil")
o26.Rotation = Vector3.new(0.00999999978, -30.1099987, 0.0199999996)
o26.CanCollide = false
o26.Size = Vector3.new(0.0600024611, 0.250000179, 0.260000259)
o26.CFrame = CFrame.new(12.7699385, 4.14792395, -4.25231028, 0.865085423, -0.000253115431, -0.501624584, 0.000219001973, 1.00000846, -0.000126912026, 0.50162971, -6.67569111e-08, 0.865092278)
o26.BottomSurface = Enum.SurfaceType.Smooth
o26.TopSurface = Enum.SurfaceType.Smooth
o26.Color = Color3.new(0.623529, 0.631373, 0.67451)
o26.Color = Color3.new(0.623529, 0.631373, 0.67451)
o27.Parent = o2
o27.Material = Enum.Material.SmoothPlastic
o27.BrickColor = BrickColor.new("Really black")
o27.Rotation = Vector3.new(180, -3.27999997, 179.98999)
o27.Shape = Enum.PartType.Cylinder
o27.Size = Vector3.new(0.0500000007, 0.250000238, 1.6000005)
o27.CFrame = CFrame.new(12.2895432, 4.72786093, -4.26638556, -0.998360634, -0.000245401112, -0.0572395623, -0.000245002186, 1.00000846, -1.40238844e-05, 0.0572390407, 2.32175807e-08, -0.998369098)
o27.BottomSurface = Enum.SurfaceType.Smooth
o27.TopSurface = Enum.SurfaceType.Smooth
o27.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
o27.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
o28.Parent = o2
o28.Material = Enum.Material.SmoothPlastic
o28.BrickColor = BrickColor.new("Really black")
o28.Rotation = Vector3.new(0, 0.629999995, -89.9899979)
o28.CanCollide = false
o28.Shape = Enum.PartType.Cylinder
o28.Size = Vector3.new(0.24999994, 1.25999975, 1.54999959)
o28.CFrame = CFrame.new(12.5879374, 4.09035969, -3.785882, 0.000245000003, 0.999939919, 0.0109635293, -1.00000846, 0.000244855793, 1.46855382e-05, 1.19998876e-05, -0.0109626055, 0.999948502)
o28.BottomSurface = Enum.SurfaceType.Smooth
o28.TopSurface = Enum.SurfaceType.Smooth
o28.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
o28.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
o29.Parent = o2
o29.Material = Enum.Material.Neon
o29.BrickColor = BrickColor.new("Eggplant")
o29.Rotation = Vector3.new(0, 0.629999995, 0.00999999978)
o29.CanCollide = false
o29.Shape = Enum.PartType.Ball
o29.Size = Vector3.new(0.190001294, 0.190001294, 0.190001294)
o29.CFrame = CFrame.new(12.8344183, 4.76740217, -4.34208727, 0.999939919, -0.00023901432, 0.0109635331, 0.00023900198, 1.00000846, 2.62037793e-06, -0.0109626129, 3.71073838e-10, 0.999948502)
o29.BottomSurface = Enum.SurfaceType.Smooth
o29.TopSurface = Enum.SurfaceType.Smooth
o29.Color = Color3.new(0.482353, 0, 0.482353)
o29.Color = Color3.new(0.482353, 0, 0.482353)
o30.Parent = o2
o30.Material = Enum.Material.Neon
o30.BrickColor = BrickColor.new("Eggplant")
o30.Rotation = Vector3.new(0, 0.629999995, 0.00999999978)
o30.CanCollide = false
o30.Shape = Enum.PartType.Ball
o30.Size = Vector3.new(0.190001294, 0.190001294, 0.190001294)
o30.CFrame = CFrame.new(12.6813812, 4.67232227, -4.34039068, 0.999939919, -0.00023901432, 0.0109635331, 0.00023900198, 1.00000846, 2.62037793e-06, -0.0109626129, 3.71073838e-10, 0.999948502)
o30.BottomSurface = Enum.SurfaceType.Smooth
o30.TopSurface = Enum.SurfaceType.Smooth
o30.Color = Color3.new(0.482353, 0, 0.482353)
o30.Color = Color3.new(0.482353, 0, 0.482353)
o31.Parent = o2
o31.BrickColor = BrickColor.new("Fossil")
o31.Rotation = Vector3.new(0.00999999978, -30.1099987, 0.0199999996)
o31.CanCollide = false
o31.Size = Vector3.new(0.0600024611, 0.250000179, 0.260000259)
o31.CFrame = CFrame.new(12.9933138, 4.14798307, -4.12279606, 0.865085423, -0.000253115431, -0.501624584, 0.000219001973, 1.00000846, -0.000126912026, 0.50162971, -6.67569111e-08, 0.865092278)
o31.BottomSurface = Enum.SurfaceType.Smooth
o31.TopSurface = Enum.SurfaceType.Smooth
o31.Color = Color3.new(0.623529, 0.631373, 0.67451)
o31.Color = Color3.new(0.623529, 0.631373, 0.67451)
o32.Name = "r"
o32.Parent = o2
o32.Material = Enum.Material.SmoothPlastic
o32.BrickColor = BrickColor.new("Really black")
o32.Rotation = Vector3.new(0, 0.629999995, -89.9899979)
o32.CanCollide = false
o32.Shape = Enum.PartType.Cylinder
o32.Size = Vector3.new(0.46999985, 1.25999975, 1.54999959)
o32.CFrame = CFrame.new(12.5878134, 4.61972094, -3.7858963, 0.000245000003, 0.999939919, 0.0109635293, -1.00000846, 0.000244855793, 1.46855382e-05, 1.19998876e-05, -0.0109626055, 0.999948502)
o32.BottomSurface = Enum.SurfaceType.Smooth
o32.TopSurface = Enum.SurfaceType.Smooth
o32.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
o32.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
o33.Parent = o2
o33.BrickColor = BrickColor.new("Fossil")
o33.Rotation = Vector3.new(-0.00999999978, 35.1199989, 0.0199999996)
o33.CanCollide = false
o33.Size = Vector3.new(0.0600024611, 0.250000179, 0.260000259)
o33.CFrame = CFrame.new(12.3250799, 4.13780499, -4.19420767, 0.817933738, -0.000248847413, 0.575312555, 0.000196001551, 1.00000846, 0.000153887318, -0.575316489, -1.31072084e-05, 0.817941368)
o33.BottomSurface = Enum.SurfaceType.Smooth
o33.TopSurface = Enum.SurfaceType.Smooth
o33.Color = Color3.new(0.623529, 0.631373, 0.67451)
o33.Color = Color3.new(0.623529, 0.631373, 0.67451)
o34.Parent = o2
o34.Material = Enum.Material.Neon
o34.BrickColor = BrickColor.new("Eggplant")
o34.Rotation = Vector3.new(0, 0.629999995, 0.00999999978)
o34.CanCollide = false
o34.Shape = Enum.PartType.Ball
o34.Size = Vector3.new(0.230001301, 0.230001301, 0.230001301)
o34.CFrame = CFrame.new(12.320076, 4.73971415, -4.26470613, 0.999939919, -0.00023901432, 0.0109635331, 0.00023900198, 1.00000846, 2.62037793e-06, -0.0109626129, 3.71073838e-10, 0.999948502)
o34.BottomSurface = Enum.SurfaceType.Smooth
o34.TopSurface = Enum.SurfaceType.Smooth
o34.Color = Color3.new(0.482353, 0, 0.482353)
o34.Color = Color3.new(0.482353, 0, 0.482353)
o35.Parent = o2
o35.Material = Enum.Material.Metal
o35.BrickColor = BrickColor.new("Pearl")
o35.Rotation = Vector3.new(0, 0.629999995, 12.8699999)
o35.CanCollide = false
o35.Size = Vector3.new(0.520002484, 0.440000206, 0.2900002)
o35.CFrame = CFrame.new(12.8338127, 4.79513836, -4.27282286, 0.974806547, -0.22278282, 0.0109562129, 0.222797751, 0.974873364, 2.55261766e-05, -0.0106856115, 0.00241591129, 0.999948502)
o35.BottomSurface = Enum.SurfaceType.Smooth
o35.TopSurface = Enum.SurfaceType.Smooth
o35.Color = Color3.new(0.905882, 0.905882, 0.92549)
o35.Color = Color3.new(0.905882, 0.905882, 0.92549)
o36.Parent = o2
o36.Material = Enum.Material.Metal
o36.BrickColor = BrickColor.new("Pearl")
o36.Rotation = Vector3.new(0.00999999978, -30.1099987, 0.0199999996)
o36.CanCollide = false
o36.Size = Vector3.new(0.420002431, 0.200000226, 0.2900002)
o36.CFrame = CFrame.new(12.8746452, 4.11295271, -4.2049346, 0.865085423, -0.000253115431, -0.501624584, 0.000219001973, 1.00000846, -0.000126912026, 0.50162971, -6.67569111e-08, 0.865092278)
o36.BottomSurface = Enum.SurfaceType.Smooth
o36.TopSurface = Enum.SurfaceType.Smooth
o36.Color = Color3.new(0.905882, 0.905882, 0.92549)
o36.Color = Color3.new(0.905882, 0.905882, 0.92549)
o37.Parent = o2
o37.BrickColor = BrickColor.new("Fossil")
o37.Rotation = Vector3.new(0.00999999978, -30.1099987, 0.0199999996)
o37.CanCollide = false
o37.Size = Vector3.new(0.0600024611, 0.250000179, 0.260000259)
o37.CFrame = CFrame.new(12.7551317, 4.46699476, -4.21234465, 0.865085423, -0.000253115431, -0.501624584, 0.000219001973, 1.00000846, -0.000126912026, 0.50162971, -6.67569111e-08, 0.865092278)
o37.BottomSurface = Enum.SurfaceType.Smooth
o37.TopSurface = Enum.SurfaceType.Smooth
o37.Color = Color3.new(0.623529, 0.631373, 0.67451)
o37.Color = Color3.new(0.623529, 0.631373, 0.67451)
mas.Parent = workspace
mas:MakeJoints()
mas2 = Instance.new("Model",RightArm)
mas2.Name = "Model2Script2"
ov = Instance.new("Model")
o2 = Instance.new("WedgePart")
o3 = Instance.new("WedgePart")
o4 = Instance.new("WedgePart")
o5 = Instance.new("Part")
o6 = Instance.new("Part")
o7 = Instance.new("Part")
o8 = Instance.new("WedgePart")
o9m = Instance.new("Part")
ov.Parent = mas2
o2.Parent = ov
o2.Material = Enum.Material.Neon
o2.BrickColor = BrickColor.new("Alder")
o2.Transparency = 0.1
o2.Rotation = Vector3.new(-76.2299957, 74.5199966, -102.399994)
o2.Anchored = true
o2.Size = Vector3.new(0.104009911, 0.654072165, 0.0998701826)
o2.CFrame = CFrame.new(-6.25214577, 2.5895319, -11.5024309, -0.057314001, 0.260602951, 0.963743508, -0.0313595012, -0.965332747, 0.259167373, 0.997871935, -0.015368619, 0.0634972602)
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.705882, 0.501961, 1)
o2.Color = Color3.new(0.705882, 0.501961, 1)
o3.Parent = ov
o3.Material = Enum.Material.Neon
o3.BrickColor = BrickColor.new("Alder")
o3.Transparency = 0.1
o3.Rotation = Vector3.new(-88.5499954, -6.10999966, 86.6899948)
o3.Anchored = true
o3.Size = Vector3.new(0.10142266, 0.186803788, 0.632338703)
o3.CFrame = CFrame.new(-5.97627115, 1.30611134, -11.5261898, 0.0573620088, -0.992660284, -0.106466688, 0.0314275026, -0.104794614, 0.994006455, -0.997867048, -0.0603620112, 0.0251852907)
o3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o3.Color = Color3.new(0.705882, 0.501961, 1)
o3.Color = Color3.new(0.705882, 0.501961, 1)
o4.Parent = ov
o4.Material = Enum.Material.Neon
o4.BrickColor = BrickColor.new("Alder")
o4.Transparency = 0.1
o4.Rotation = Vector3.new(103.110001, -74.5599976, -78.2399979)
o4.Anchored = true
o4.Size = Vector3.new(0.104009911, 0.472443491, 0.0998701826)
o4.CFrame = CFrame.new(-5.85783195, 2.78958607, -11.4734116, 0.0542620048, 0.26058802, -0.96392411, 0.0306074936, -0.965335786, -0.25924623, -0.998065889, -0.0154361119, -0.0603548028)
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.705882, 0.501961, 1)
o4.Color = Color3.new(0.705882, 0.501961, 1)
o5.Parent = ov
o5.Material = Enum.Material.Neon
o5.BrickColor = BrickColor.new("Alder")
o5.Transparency = 0.1
o5.Rotation = Vector3.new(-178.199997, 3.28999996, -105.129997)
o5.Anchored = true
o5.Size = Vector3.new(0.701161206, 0.538160622, 0.103492416)
o5.CFrame = CFrame.new(-6.22018671, 3.29966021, -11.4774265, -0.260599941, 0.963741541, 0.0573597625, 0.965332747, 0.259159267, 0.0314289927, 0.0154241361, 0.0635594428, -0.997867107)
o5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o5.Color = Color3.new(0.705882, 0.501961, 1)
o5.Color = Color3.new(0.705882, 0.501961, 1)
o6.Parent = ov
o6.Material = Enum.Material.Neon
o6.BrickColor = BrickColor.new("Alder")
o6.Transparency = 0.1
o6.Rotation = Vector3.new(-178.199997, 3.28999996, -101.059998)
o6.Anchored = true
o6.Size = Vector3.new(0.701161206, 0.371020257, 0.103492416)
o6.CFrame = CFrame.new(-6.05381966, 2.6474514, -11.4884119, -0.191533148, 0.979808867, 0.0573569275, 0.981293619, 0.189983174, 0.0314286686, 0.0198971108, 0.062301416, -0.997867286)
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.705882, 0.501961, 1)
o6.Color = Color3.new(0.705882, 0.501961, 1)
o7.Parent = ov
o7.Material = Enum.Material.Neon
o7.BrickColor = BrickColor.new("Alder")
o7.Transparency = 0.1
o7.Rotation = Vector3.new(-178.199997, 3.28999996, -96.1199951)
o7.Anchored = true
o7.Size = Vector3.new(0.701161206, 0.371020257, 0.103492416)
o7.CFrame = CFrame.new(-5.95285225, 1.97883701, -11.5036192, -0.106464036, 0.99266082, 0.057359308, 0.994006693, 0.104791857, 0.0314288139, 0.025187036, 0.0603593886, -0.997867167)
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.705882, 0.501961, 1)
o7.Color = Color3.new(0.705882, 0.501961, 1)
o8.Parent = ov
o8.Material = Enum.Material.Neon
o8.BrickColor = BrickColor.new("Alder")
o8.Transparency = 0.1
o8.Rotation = Vector3.new(-88.5499954, -6.10999966, -93.3099976)
o8.Anchored = true
o8.Size = Vector3.new(0.10142266, 0.186803788, 0.632338703)
o8.CFrame = CFrame.new(-5.79092312, 1.32566071, -11.5148821, -0.0573620088, 0.992660284, -0.106466688, -0.0314275026, 0.104794614, 0.994006455, 0.997867048, 0.0603620112, 0.0251852907)
o8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o8.Color = Color3.new(0.705882, 0.501961, 1)
o8.Color = Color3.new(0.705882, 0.501961, 1)
o9m.Parent = ov
o9m.Material = Enum.Material.Neon
o9m.BrickColor = BrickColor.new("Alder")
o9m.Transparency = 0.1
o9m.Rotation = Vector3.new(-178.199997, 3.28999996, -118.769997)
o9m.Anchored = true
o9m.Size = Vector3.new(1.56116068, 0.538160563, 0.102974951)
o9m.CFrame = CFrame.new(-6.66080666, 4.25504208, -11.4726496, -0.480506241, 0.875113606, 0.0573588945, 0.876999617, 0.479481548, 0.031427063, 2.6898428e-07, 0.065402478, -0.997867227)
o9m.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o9m.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o9m.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o9m.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o9m.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o9m.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o9m.Color = Color3.new(0.705882, 0.501961, 1)
o9m.Color = Color3.new(0.705882, 0.501961, 1)
mas2.Parent = workspace
mas2:MakeJoints()
nightfallknifelocater = Instance.new("Part",RightArm)
nightfallknifelocater.CanCollide = false
nightfallknifelocater.Transparency = 1
nightfallknifelocater.Size = Vector3.new(1,1,1)
ng2 = weldBetween(nightfallknifelocater,RightArm)
ng2.C0 = CFrame.new(-6.2,4.3,-11.35) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-18))
nightfallmasklocater = Instance.new("Part",Head)
nightfallmasklocater.CanCollide = false
nightfallmasklocater.Transparency = 1
nightfallmasklocater.Size = Vector3.new(1,1,1)
ng = weldBetween(nightfallmasklocater,Head)
ng.C0 = CFrame.new(12.6,4.5,-3.72)
function weld()
local parts,last = {}
local function scan(o1)
for _,v in pairs(o1:GetChildren()) do
if (v:IsA("BasePart")) then
if (last) then
local w = Instance.new("Weld")
w.Name = ("%s_Weld"):format(v.Name)
w.Part0,w.Part1 = last,nightfallmasklocater
w.C0 = last.CFrame:inverse()
w.Parent = last
end
last = v