-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathsanta claus.lua
2379 lines (2370 loc) · 80.3 KB
/
santa claus.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
--[[
--//Scripted by AnimeWiki
--//06.29.2015
--//http://www.roblox.com/User.aspx?ID=71436898
]]
a0= Instance.new("Model", game:GetService("Workspace"))
a0.Name = "Model"
a1= Instance.new("Model",a0)
a1.Name = "Model"
a2= Instance.new("Part",a1)
a2.BrickColor = BrickColor.new("Reddish brown")
a2.Material = "Plastic"
a2.Transparency = 0
a2.Name = "Part"
a2.Anchored = true
a2.CanCollide = true
a2.Locked = false
a2.FormFactor = "Plate"
a2.Shape = "Block"
a2.FrontSurface = "Smooth"
a2.BackSurface = "Weld"
a2.LeftSurface = "Weld"
a2.RightSurface = "Weld"
a2.BottomSurface = "Inlet"
a2.TopSurface = "Studs"
a2.Size = Vector3.new(1,0.40000000596046,1)
a2.CFrame = CFrame.new(-11.5,6.1008586883545,24.202079772949,1.6591254905897e-21,-3.4228541778702e-08,0.99999994039536,1,-1.394866653636e-19,-1.6591254905897e-21,1.394866653636e-19,0.99999994039536,3.4228541778702e-08)
a3= Instance.new("Part",a1)
a3.BrickColor = BrickColor.new("Reddish brown")
a3.Material = "Plastic"
a3.Transparency = 0
a3.Name = "Part"
a3.Anchored = true
a3.CanCollide = true
a3.Locked = false
a3.FormFactor = "Plate"
a3.Shape = "Block"
a3.FrontSurface = "Smooth"
a3.BackSurface = "Smooth"
a3.LeftSurface = "Smooth"
a3.RightSurface = "Smooth"
a3.BottomSurface = "Weld"
a3.TopSurface = "Smooth"
a3.Size = Vector3.new(2,0.40000000596046,1)
a3.CFrame = CFrame.new(-10.5,5.8008575439453,24.002075195312,3.4228541778702e-08,1.6591254905897e-21,0.99999994039536,1.394866653636e-19,1,-1.6591254905897e-21,-0.99999994039536,1.394866653636e-19,3.4228541778702e-08)
a4= Instance.new("Part",a1)
a4.BrickColor = BrickColor.new("Reddish brown")
a4.Material = "Plastic"
a4.Transparency = 0
a4.Name = "Part"
a4.Anchored = true
a4.CanCollide = true
a4.Locked = false
a4.FormFactor = "Plate"
a4.Shape = "Block"
a4.FrontSurface = "Smooth"
a4.BackSurface = "Weld"
a4.LeftSurface = "Weld"
a4.RightSurface = "Weld"
a4.BottomSurface = "Inlet"
a4.TopSurface = "Studs"
a4.Size = Vector3.new(1,0.40000000596046,1)
a4.CFrame = CFrame.new(-9.5,6.1008586883545,24.202079772949,0.99999994039536,-3.4228541778702e-08,-1.6591254905897e-21,-1.6591254905897e-21,-1.394866653636e-19,-1,3.4228541778702e-08,0.99999994039536,-1.394866653636e-19)
a5= Instance.new("Part",a1)
a5.BrickColor = BrickColor.new("Medium stone grey")
a5.Material = "Plastic"
a5.Transparency = 0
a5.Name = "Part"
a5.Anchored = true
a5.CanCollide = true
a5.Locked = false
a5.FormFactor = "Plate"
a5.Shape = "Block"
a5.FrontSurface = "Smooth"
a5.BackSurface = "Smooth"
a5.LeftSurface = "Smooth"
a5.RightSurface = "Smooth"
a5.BottomSurface = "Smooth"
a5.TopSurface = "Smooth"
a5.Size = Vector3.new(3,1.2000000476837,1)
a5.CFrame = CFrame.new(-10.5,7.2008571624756,23.502075195312,-0.99999994039536,1.6591254905897e-21,3.4228541778702e-08,1.6591254905897e-21,1,1.394866653636e-19,-3.4228541778702e-08,1.394866653636e-19,-0.99999994039536)
a6= Instance.new("SpecialMesh",a5)
a6.Name = "SpecialMesh"
a6.MeshId = "http://www.roblox.com/asset/?id=1271547"
a6.MeshType = "FileMesh"
a6.Scale = Vector3.new(2,2,2)
a6.TextureId = ""
a7= Instance.new("Part",a1)
a7.BrickColor = BrickColor.new("Earth orange")
a7.Material = "Plastic"
a7.Transparency = 0
a7.Name = "Part"
a7.Anchored = true
a7.CanCollide = true
a7.Locked = false
a7.FormFactor = "Brick"
a7.Shape = "Block"
a7.FrontSurface = "Smooth"
a7.BackSurface = "Smooth"
a7.LeftSurface = "Smooth"
a7.RightSurface = "Smooth"
a7.BottomSurface = "Inlet"
a7.TopSurface = "Studs"
a7.Size = Vector3.new(1,2.4000000953674,1)
a7.CFrame = CFrame.new(-11.5,1.2008626461029,20.402099609375,3.4228534673275e-08,1.6591349821641e-21,0.99999970197678,1.3948662658951e-19,1,-1.6591155951185e-21,-0.99999970197678,1.394866653636e-19,3.4228534673275e-08)
a8= Instance.new("Part",a1)
a8.BrickColor = BrickColor.new("Reddish brown")
a8.Material = "Plastic"
a8.Transparency = 0
a8.Name = "Part"
a8.Anchored = true
a8.CanCollide = true
a8.Locked = false
a8.FormFactor = "Plate"
a8.Shape = "Block"
a8.FrontSurface = "Weld"
a8.BackSurface = "Smooth"
a8.LeftSurface = "Smooth"
a8.RightSurface = "Smooth"
a8.BottomSurface = "Inlet"
a8.TopSurface = "Studs"
a8.Size = Vector3.new(1,0.80000001192093,1)
a8.CFrame = CFrame.new(-10.5,2.8008625507355,19.502075195312,-0.99999994039536,1.6591254905897e-21,3.4228541778702e-08,1.6591254905897e-21,1,1.394866653636e-19,-3.4228541778702e-08,1.394866653636e-19,-0.99999994039536)
a9= Instance.new("Part",a1)
a9.BrickColor = BrickColor.new("White")
a9.Material = "Plastic"
a9.Transparency = 0
a9.Name = "Part"
a9.Anchored = true
a9.CanCollide = true
a9.Locked = false
a9.FormFactor = "Plate"
a9.Shape = "Block"
a9.FrontSurface = "Smooth"
a9.BackSurface = "Smooth"
a9.LeftSurface = "Smooth"
a9.RightSurface = "Smooth"
a9.BottomSurface = "Inlet"
a9.TopSurface = "Studs"
a9.Size = Vector3.new(1,0.40000000596046,1)
a9.CFrame = CFrame.new(-10.5,2.2008621692657,19.502075195312,-0.99999994039536,1.6591254905897e-21,3.4228541778702e-08,1.6591254905897e-21,1,1.394866653636e-19,-3.4228541778702e-08,1.394866653636e-19,-0.99999994039536)
a10= Instance.new("Part",a1)
a10.BrickColor = BrickColor.new("Reddish brown")
a10.Material = "Plastic"
a10.Transparency = 0
a10.Name = "Part"
a10.Anchored = true
a10.CanCollide = true
a10.Locked = false
a10.FormFactor = "Symmetric"
a10.Shape = "Block"
a10.FrontSurface = "Smooth"
a10.BackSurface = "Smooth"
a10.LeftSurface = "Smooth"
a10.RightSurface = "Smooth"
a10.BottomSurface = "Inlet"
a10.TopSurface = "Smooth"
a10.Size = Vector3.new(1,1,3)
a10.CFrame = CFrame.new(-10.5,5.1008586883545,24.502075195312,-0.99999994039536,1.6591254905897e-21,3.4228541778702e-08,1.6591254905897e-21,1,1.394866653636e-19,-3.4228541778702e-08,1.394866653636e-19,-0.99999994039536)
a11= Instance.new("Part",a1)
a11.BrickColor = BrickColor.new("Reddish brown")
a11.Material = "Plastic"
a11.Transparency = 0
a11.Name = "Part"
a11.Anchored = true
a11.CanCollide = true
a11.Locked = false
a11.FormFactor = "Brick"
a11.Shape = "Block"
a11.FrontSurface = "Smooth"
a11.BackSurface = "Smooth"
a11.LeftSurface = "Smooth"
a11.RightSurface = "Smooth"
a11.BottomSurface = "Weld"
a11.TopSurface = "Weld"
a11.Size = Vector3.new(1,1.2000000476837,1)
a11.CFrame = CFrame.new(-10.5,4.0008602142334,23.502075195312,-0.99999994039536,1.6591254905897e-21,3.4228541778702e-08,1.6591254905897e-21,1,1.394866653636e-19,-3.4228541778702e-08,1.394866653636e-19,-0.99999994039536)
a12= Instance.new("Part",a1)
a12.BrickColor = BrickColor.new("Reddish brown")
a12.Material = "Plastic"
a12.Transparency = 0
a12.Name = "Part"
a12.Anchored = true
a12.CanCollide = true
a12.Locked = false
a12.FormFactor = "Symmetric"
a12.Shape = "Block"
a12.FrontSurface = "Smooth"
a12.BackSurface = "Smooth"
a12.LeftSurface = "Smooth"
a12.RightSurface = "Smooth"
a12.BottomSurface = "Inlet"
a12.TopSurface = "Smooth"
a12.Size = Vector3.new(3,1,4)
a12.CFrame = CFrame.new(-10.5,2.8000061511993,22,-1,0,0,0,1,0,0,0,-1)
a13= Instance.new("Part",a1)
a13.BrickColor = BrickColor.new("Earth orange")
a13.Material = "Plastic"
a13.Transparency = 0
a13.Name = "Part"
a13.Anchored = true
a13.CanCollide = true
a13.Locked = false
a13.FormFactor = "Brick"
a13.Shape = "Block"
a13.FrontSurface = "Smooth"
a13.BackSurface = "Smooth"
a13.LeftSurface = "Smooth"
a13.RightSurface = "Smooth"
a13.BottomSurface = "Inlet"
a13.TopSurface = "Studs"
a13.Size = Vector3.new(1,2.4000000953674,1)
a13.CFrame = CFrame.new(-9.5,1.2008626461029,20.402099609375,3.4228534673275e-08,1.6591349821641e-21,0.99999970197678,1.3948662658951e-19,1,-1.6591155951185e-21,-0.99999970197678,1.394866653636e-19,3.4228534673275e-08)
a14= Instance.new("Part",a1)
a14.BrickColor = BrickColor.new("Earth orange")
a14.Material = "Plastic"
a14.Transparency = 0
a14.Name = "Part"
a14.Anchored = true
a14.CanCollide = true
a14.Locked = false
a14.FormFactor = "Brick"
a14.Shape = "Block"
a14.FrontSurface = "Smooth"
a14.BackSurface = "Smooth"
a14.LeftSurface = "Smooth"
a14.RightSurface = "Smooth"
a14.BottomSurface = "Inlet"
a14.TopSurface = "Studs"
a14.Size = Vector3.new(1,2.4000000953674,1)
a14.CFrame = CFrame.new(-11.5,1.200856924057,23.502075195312,3.4228541778702e-08,1.6591254905897e-21,0.99999994039536,1.394866653636e-19,1,-1.6591254905897e-21,-0.99999994039536,1.394866653636e-19,3.4228541778702e-08)
a15= Instance.new("Part",a1)
a15.BrickColor = BrickColor.new("Earth orange")
a15.Material = "Plastic"
a15.Transparency = 0
a15.Name = "Part"
a15.Anchored = true
a15.CanCollide = true
a15.Locked = false
a15.FormFactor = "Brick"
a15.Shape = "Block"
a15.FrontSurface = "Smooth"
a15.BackSurface = "Smooth"
a15.LeftSurface = "Smooth"
a15.RightSurface = "Smooth"
a15.BottomSurface = "Inlet"
a15.TopSurface = "Studs"
a15.Size = Vector3.new(1,2.4000000953674,1)
a15.CFrame = CFrame.new(-9.5,1.200856924057,23.502075195312,3.4228541778702e-08,1.6591254905897e-21,0.99999994039536,1.394866653636e-19,1,-1.6591254905897e-21,-0.99999994039536,1.394866653636e-19,3.4228541778702e-08)
a16= Instance.new("Model",a0)
a16.Name = "Model"
a17= Instance.new("Part",a16)
a17.BrickColor = BrickColor.new("Reddish brown")
a17.Material = "Plastic"
a17.Transparency = 0
a17.Name = "Part"
a17.Anchored = true
a17.CanCollide = true
a17.Locked = false
a17.FormFactor = "Plate"
a17.Shape = "Block"
a17.FrontSurface = "Smooth"
a17.BackSurface = "Weld"
a17.LeftSurface = "Weld"
a17.RightSurface = "Weld"
a17.BottomSurface = "Inlet"
a17.TopSurface = "Studs"
a17.Size = Vector3.new(1,0.40000000596046,1)
a17.CFrame = CFrame.new(-11.5,6.1008472442627,8.2020721435547,1.6591254905897e-21,-3.4228541778702e-08,0.99999994039536,1,-1.394866653636e-19,-1.6591254905897e-21,1.394866653636e-19,0.99999994039536,3.4228541778702e-08)
a18= Instance.new("Part",a16)
a18.BrickColor = BrickColor.new("Reddish brown")
a18.Material = "Plastic"
a18.Transparency = 0
a18.Name = "Part"
a18.Anchored = true
a18.CanCollide = true
a18.Locked = false
a18.FormFactor = "Plate"
a18.Shape = "Block"
a18.FrontSurface = "Smooth"
a18.BackSurface = "Smooth"
a18.LeftSurface = "Smooth"
a18.RightSurface = "Smooth"
a18.BottomSurface = "Weld"
a18.TopSurface = "Smooth"
a18.Size = Vector3.new(2,0.40000000596046,1)
a18.CFrame = CFrame.new(-10.5,5.8008460998535,8.0020751953125,3.4228541778702e-08,1.6591254905897e-21,0.99999994039536,1.394866653636e-19,1,-1.6591254905897e-21,-0.99999994039536,1.394866653636e-19,3.4228541778702e-08)
a19= Instance.new("Part",a16)
a19.BrickColor = BrickColor.new("Reddish brown")
a19.Material = "Plastic"
a19.Transparency = 0
a19.Name = "Part"
a19.Anchored = true
a19.CanCollide = true
a19.Locked = false
a19.FormFactor = "Plate"
a19.Shape = "Block"
a19.FrontSurface = "Smooth"
a19.BackSurface = "Weld"
a19.LeftSurface = "Weld"
a19.RightSurface = "Weld"
a19.BottomSurface = "Inlet"
a19.TopSurface = "Studs"
a19.Size = Vector3.new(1,0.40000000596046,1)
a19.CFrame = CFrame.new(-9.5,6.1008472442627,8.2020721435547,0.99999994039536,-3.4228541778702e-08,-1.6591254905897e-21,-1.6591254905897e-21,-1.394866653636e-19,-1,3.4228541778702e-08,0.99999994039536,-1.394866653636e-19)
a20= Instance.new("Part",a16)
a20.BrickColor = BrickColor.new("Medium stone grey")
a20.Material = "Plastic"
a20.Transparency = 0
a20.Name = "Part"
a20.Anchored = true
a20.CanCollide = true
a20.Locked = false
a20.FormFactor = "Plate"
a20.Shape = "Block"
a20.FrontSurface = "Smooth"
a20.BackSurface = "Smooth"
a20.LeftSurface = "Smooth"
a20.RightSurface = "Smooth"
a20.BottomSurface = "Smooth"
a20.TopSurface = "Smooth"
a20.Size = Vector3.new(3,1.2000000476837,1)
a20.CFrame = CFrame.new(-10.5,7.2008495330811,7.5020751953125,-0.99999994039536,1.6591254905897e-21,3.4228541778702e-08,1.6591254905897e-21,1,1.394866653636e-19,-3.4228541778702e-08,1.394866653636e-19,-0.99999994039536)
a21= Instance.new("SpecialMesh",a20)
a21.Name = "SpecialMesh"
a21.MeshId = "http://www.roblox.com/asset/?id=1271547"
a21.MeshType = "FileMesh"
a21.Scale = Vector3.new(2,2,2)
a21.TextureId = ""
a22= Instance.new("Part",a16)
a22.BrickColor = BrickColor.new("Earth orange")
a22.Material = "Plastic"
a22.Transparency = 0
a22.Name = "Part"
a22.Anchored = true
a22.CanCollide = true
a22.Locked = false
a22.FormFactor = "Brick"
a22.Shape = "Block"
a22.FrontSurface = "Smooth"
a22.BackSurface = "Smooth"
a22.LeftSurface = "Smooth"
a22.RightSurface = "Smooth"
a22.BottomSurface = "Inlet"
a22.TopSurface = "Studs"
a22.Size = Vector3.new(1,2.4000000953674,1)
a22.CFrame = CFrame.new(-11.5,1.2008626461029,4.402099609375,3.4228534673275e-08,1.6591349821641e-21,0.99999970197678,1.3948662658951e-19,1,-1.6591155951185e-21,-0.99999970197678,1.394866653636e-19,3.4228534673275e-08)
a23= Instance.new("Part",a16)
a23.BrickColor = BrickColor.new("Reddish brown")
a23.Material = "Plastic"
a23.Transparency = 0
a23.Name = "Part"
a23.Anchored = true
a23.CanCollide = true
a23.Locked = false
a23.FormFactor = "Plate"
a23.Shape = "Block"
a23.FrontSurface = "Weld"
a23.BackSurface = "Smooth"
a23.LeftSurface = "Smooth"
a23.RightSurface = "Smooth"
a23.BottomSurface = "Inlet"
a23.TopSurface = "Studs"
a23.Size = Vector3.new(1,0.80000001192093,1)
a23.CFrame = CFrame.new(-10.5,2.8008606433868,3.5020751953125,-0.99999994039536,1.6591254905897e-21,3.4228541778702e-08,1.6591254905897e-21,1,1.394866653636e-19,-3.4228541778702e-08,1.394866653636e-19,-0.99999994039536)
a24= Instance.new("Part",a16)
a24.BrickColor = BrickColor.new("White")
a24.Material = "Plastic"
a24.Transparency = 0
a24.Name = "Part"
a24.Anchored = true
a24.CanCollide = true
a24.Locked = false
a24.FormFactor = "Plate"
a24.Shape = "Block"
a24.FrontSurface = "Smooth"
a24.BackSurface = "Smooth"
a24.LeftSurface = "Smooth"
a24.RightSurface = "Smooth"
a24.BottomSurface = "Inlet"
a24.TopSurface = "Studs"
a24.Size = Vector3.new(1,0.40000000596046,1)
a24.CFrame = CFrame.new(-10.5,2.2008621692657,3.5020751953125,-0.99999994039536,1.6591254905897e-21,3.4228541778702e-08,1.6591254905897e-21,1,1.394866653636e-19,-3.4228541778702e-08,1.394866653636e-19,-0.99999994039536)
a25= Instance.new("Part",a16)
a25.BrickColor = BrickColor.new("Reddish brown")
a25.Material = "Plastic"
a25.Transparency = 0
a25.Name = "Part"
a25.Anchored = true
a25.CanCollide = true
a25.Locked = false
a25.FormFactor = "Symmetric"
a25.Shape = "Block"
a25.FrontSurface = "Smooth"
a25.BackSurface = "Smooth"
a25.LeftSurface = "Smooth"
a25.RightSurface = "Smooth"
a25.BottomSurface = "Inlet"
a25.TopSurface = "Smooth"
a25.Size = Vector3.new(1,1,3)
a25.CFrame = CFrame.new(-10.5,5.1008472442627,8.5020751953125,-0.99999994039536,1.6591254905897e-21,3.4228541778702e-08,1.6591254905897e-21,1,1.394866653636e-19,-3.4228541778702e-08,1.394866653636e-19,-0.99999994039536)
a26= Instance.new("Part",a16)
a26.BrickColor = BrickColor.new("Reddish brown")
a26.Material = "Plastic"
a26.Transparency = 0
a26.Name = "Part"
a26.Anchored = true
a26.CanCollide = true
a26.Locked = false
a26.FormFactor = "Brick"
a26.Shape = "Block"
a26.FrontSurface = "Smooth"
a26.BackSurface = "Smooth"
a26.LeftSurface = "Smooth"
a26.RightSurface = "Smooth"
a26.BottomSurface = "Weld"
a26.TopSurface = "Weld"
a26.Size = Vector3.new(1,1.2000000476837,1)
a26.CFrame = CFrame.new(-10.5,4.0008506774902,7.5020751953125,-0.99999994039536,1.6591254905897e-21,3.4228541778702e-08,1.6591254905897e-21,1,1.394866653636e-19,-3.4228541778702e-08,1.394866653636e-19,-0.99999994039536)
a27= Instance.new("Part",a16)
a27.BrickColor = BrickColor.new("Reddish brown")
a27.Material = "Plastic"
a27.Transparency = 0
a27.Name = "Part"
a27.Anchored = true
a27.CanCollide = true
a27.Locked = false
a27.FormFactor = "Symmetric"
a27.Shape = "Block"
a27.FrontSurface = "Smooth"
a27.BackSurface = "Smooth"
a27.LeftSurface = "Smooth"
a27.RightSurface = "Smooth"
a27.BottomSurface = "Inlet"
a27.TopSurface = "Smooth"
a27.Size = Vector3.new(3,1,4)
a27.CFrame = CFrame.new(-10.5,2.8000061511993,6,-1,0,0,0,1,0,0,0,-1)
a28= Instance.new("Part",a16)
a28.BrickColor = BrickColor.new("Earth orange")
a28.Material = "Plastic"
a28.Transparency = 0
a28.Name = "Part"
a28.Anchored = true
a28.CanCollide = true
a28.Locked = false
a28.FormFactor = "Brick"
a28.Shape = "Block"
a28.FrontSurface = "Smooth"
a28.BackSurface = "Smooth"
a28.LeftSurface = "Smooth"
a28.RightSurface = "Smooth"
a28.BottomSurface = "Inlet"
a28.TopSurface = "Studs"
a28.Size = Vector3.new(1,2.4000000953674,1)
a28.CFrame = CFrame.new(-9.5,1.2008626461029,4.402099609375,3.4228534673275e-08,1.6591349821641e-21,0.99999970197678,1.3948662658951e-19,1,-1.6591155951185e-21,-0.99999970197678,1.394866653636e-19,3.4228534673275e-08)
a29= Instance.new("Part",a16)
a29.BrickColor = BrickColor.new("Earth orange")
a29.Material = "Plastic"
a29.Transparency = 0
a29.Name = "Part"
a29.Anchored = true
a29.CanCollide = true
a29.Locked = false
a29.FormFactor = "Brick"
a29.Shape = "Block"
a29.FrontSurface = "Smooth"
a29.BackSurface = "Smooth"
a29.LeftSurface = "Smooth"
a29.RightSurface = "Smooth"
a29.BottomSurface = "Inlet"
a29.TopSurface = "Studs"
a29.Size = Vector3.new(1,2.4000000953674,1)
a29.CFrame = CFrame.new(-11.5,1.2008588314056,7.5020751953125,3.4228541778702e-08,1.6591254905897e-21,0.99999994039536,1.394866653636e-19,1,-1.6591254905897e-21,-0.99999994039536,1.394866653636e-19,3.4228541778702e-08)
a30= Instance.new("Part",a16)
a30.BrickColor = BrickColor.new("Earth orange")
a30.Material = "Plastic"
a30.Transparency = 0
a30.Name = "Part"
a30.Anchored = true
a30.CanCollide = true
a30.Locked = false
a30.FormFactor = "Brick"
a30.Shape = "Block"
a30.FrontSurface = "Smooth"
a30.BackSurface = "Smooth"
a30.LeftSurface = "Smooth"
a30.RightSurface = "Smooth"
a30.BottomSurface = "Inlet"
a30.TopSurface = "Studs"
a30.Size = Vector3.new(1,2.4000000953674,1)
a30.CFrame = CFrame.new(-9.5,1.2008588314056,7.5020751953125,3.4228541778702e-08,1.6591254905897e-21,0.99999994039536,1.394866653636e-19,1,-1.6591254905897e-21,-0.99999994039536,1.394866653636e-19,3.4228541778702e-08)
a31= Instance.new("Model",a0)
a31.Name = "Model"
a32= Instance.new("Part",a31)
a32.BrickColor = BrickColor.new("Reddish brown")
a32.Material = "Plastic"
a32.Transparency = 0
a32.Name = "Part"
a32.Anchored = true
a32.CanCollide = true
a32.Locked = false
a32.FormFactor = "Plate"
a32.Shape = "Block"
a32.FrontSurface = "Smooth"
a32.BackSurface = "Weld"
a32.LeftSurface = "Weld"
a32.RightSurface = "Weld"
a32.BottomSurface = "Inlet"
a32.TopSurface = "Studs"
a32.Size = Vector3.new(1,0.40000000596046,1)
a32.CFrame = CFrame.new(-6.5,6.1008586883545,24.202079772949,1.6591254905897e-21,-3.4228541778702e-08,0.99999994039536,1,-1.394866653636e-19,-1.6591254905897e-21,1.394866653636e-19,0.99999994039536,3.4228541778702e-08)
a33= Instance.new("Part",a31)
a33.BrickColor = BrickColor.new("Reddish brown")
a33.Material = "Plastic"
a33.Transparency = 0
a33.Name = "Part"
a33.Anchored = true
a33.CanCollide = true
a33.Locked = false
a33.FormFactor = "Plate"
a33.Shape = "Block"
a33.FrontSurface = "Smooth"
a33.BackSurface = "Smooth"
a33.LeftSurface = "Smooth"
a33.RightSurface = "Smooth"
a33.BottomSurface = "Weld"
a33.TopSurface = "Smooth"
a33.Size = Vector3.new(2,0.40000000596046,1)
a33.CFrame = CFrame.new(-5.5,5.8008575439453,24.002075195312,3.4228541778702e-08,1.6591254905897e-21,0.99999994039536,1.394866653636e-19,1,-1.6591254905897e-21,-0.99999994039536,1.394866653636e-19,3.4228541778702e-08)
a34= Instance.new("Part",a31)
a34.BrickColor = BrickColor.new("Reddish brown")
a34.Material = "Plastic"
a34.Transparency = 0
a34.Name = "Part"
a34.Anchored = true
a34.CanCollide = true
a34.Locked = false
a34.FormFactor = "Plate"
a34.Shape = "Block"
a34.FrontSurface = "Smooth"
a34.BackSurface = "Weld"
a34.LeftSurface = "Weld"
a34.RightSurface = "Weld"
a34.BottomSurface = "Inlet"
a34.TopSurface = "Studs"
a34.Size = Vector3.new(1,0.40000000596046,1)
a34.CFrame = CFrame.new(-4.5,6.1008586883545,24.202079772949,0.99999994039536,-3.4228541778702e-08,-1.6591254905897e-21,-1.6591254905897e-21,-1.394866653636e-19,-1,3.4228541778702e-08,0.99999994039536,-1.394866653636e-19)
a35= Instance.new("Part",a31)
a35.BrickColor = BrickColor.new("Medium stone grey")
a35.Material = "Plastic"
a35.Transparency = 0
a35.Name = "Part"
a35.Anchored = true
a35.CanCollide = true
a35.Locked = false
a35.FormFactor = "Plate"
a35.Shape = "Block"
a35.FrontSurface = "Smooth"
a35.BackSurface = "Smooth"
a35.LeftSurface = "Smooth"
a35.RightSurface = "Smooth"
a35.BottomSurface = "Smooth"
a35.TopSurface = "Smooth"
a35.Size = Vector3.new(3,1.2000000476837,1)
a35.CFrame = CFrame.new(-5.5,7.2008571624756,23.502075195312,-0.99999994039536,1.6591254905897e-21,3.4228541778702e-08,1.6591254905897e-21,1,1.394866653636e-19,-3.4228541778702e-08,1.394866653636e-19,-0.99999994039536)
a36= Instance.new("SpecialMesh",a35)
a36.Name = "SpecialMesh"
a36.MeshId = "http://www.roblox.com/asset/?id=1271547"
a36.MeshType = "FileMesh"
a36.Scale = Vector3.new(2,2,2)
a36.TextureId = ""
a37= Instance.new("Part",a31)
a37.BrickColor = BrickColor.new("Earth orange")
a37.Material = "Plastic"
a37.Transparency = 0
a37.Name = "Part"
a37.Anchored = true
a37.CanCollide = true
a37.Locked = false
a37.FormFactor = "Brick"
a37.Shape = "Block"
a37.FrontSurface = "Smooth"
a37.BackSurface = "Smooth"
a37.LeftSurface = "Smooth"
a37.RightSurface = "Smooth"
a37.BottomSurface = "Inlet"
a37.TopSurface = "Studs"
a37.Size = Vector3.new(1,2.4000000953674,1)
a37.CFrame = CFrame.new(-6.5,1.2008626461029,20.402099609375,3.4228534673275e-08,1.6591349821641e-21,0.99999970197678,1.3948662658951e-19,1,-1.6591155951185e-21,-0.99999970197678,1.394866653636e-19,3.4228534673275e-08)
a38= Instance.new("Part",a31)
a38.BrickColor = BrickColor.new("Reddish brown")
a38.Material = "Plastic"
a38.Transparency = 0
a38.Name = "Part"
a38.Anchored = true
a38.CanCollide = true
a38.Locked = false
a38.FormFactor = "Plate"
a38.Shape = "Block"
a38.FrontSurface = "Weld"
a38.BackSurface = "Smooth"
a38.LeftSurface = "Smooth"
a38.RightSurface = "Smooth"
a38.BottomSurface = "Inlet"
a38.TopSurface = "Studs"
a38.Size = Vector3.new(1,0.80000001192093,1)
a38.CFrame = CFrame.new(-5.5,2.8008625507355,19.502075195312,-0.99999994039536,1.6591254905897e-21,3.4228541778702e-08,1.6591254905897e-21,1,1.394866653636e-19,-3.4228541778702e-08,1.394866653636e-19,-0.99999994039536)
a39= Instance.new("Part",a31)
a39.BrickColor = BrickColor.new("White")
a39.Material = "Plastic"
a39.Transparency = 0
a39.Name = "Part"
a39.Anchored = true
a39.CanCollide = true
a39.Locked = false
a39.FormFactor = "Plate"
a39.Shape = "Block"
a39.FrontSurface = "Smooth"
a39.BackSurface = "Smooth"
a39.LeftSurface = "Smooth"
a39.RightSurface = "Smooth"
a39.BottomSurface = "Inlet"
a39.TopSurface = "Studs"
a39.Size = Vector3.new(1,0.40000000596046,1)
a39.CFrame = CFrame.new(-5.5,2.2008621692657,19.502075195312,-0.99999994039536,1.6591254905897e-21,3.4228541778702e-08,1.6591254905897e-21,1,1.394866653636e-19,-3.4228541778702e-08,1.394866653636e-19,-0.99999994039536)
a40= Instance.new("Part",a31)
a40.BrickColor = BrickColor.new("Reddish brown")
a40.Material = "Plastic"
a40.Transparency = 0
a40.Name = "Part"
a40.Anchored = true
a40.CanCollide = true
a40.Locked = false
a40.FormFactor = "Symmetric"
a40.Shape = "Block"
a40.FrontSurface = "Smooth"
a40.BackSurface = "Smooth"
a40.LeftSurface = "Smooth"
a40.RightSurface = "Smooth"
a40.BottomSurface = "Inlet"
a40.TopSurface = "Smooth"
a40.Size = Vector3.new(1,1,3)
a40.CFrame = CFrame.new(-5.5,5.1008586883545,24.502075195312,-0.99999994039536,1.6591254905897e-21,3.4228541778702e-08,1.6591254905897e-21,1,1.394866653636e-19,-3.4228541778702e-08,1.394866653636e-19,-0.99999994039536)
a41= Instance.new("Part",a31)
a41.BrickColor = BrickColor.new("Reddish brown")
a41.Material = "Plastic"
a41.Transparency = 0
a41.Name = "Part"
a41.Anchored = true
a41.CanCollide = true
a41.Locked = false
a41.FormFactor = "Brick"
a41.Shape = "Block"
a41.FrontSurface = "Smooth"
a41.BackSurface = "Smooth"
a41.LeftSurface = "Smooth"
a41.RightSurface = "Smooth"
a41.BottomSurface = "Weld"
a41.TopSurface = "Weld"
a41.Size = Vector3.new(1,1.2000000476837,1)
a41.CFrame = CFrame.new(-5.5,4.000862121582,23.502075195312,-0.99999994039536,1.6591254905897e-21,3.4228541778702e-08,1.6591254905897e-21,1,1.394866653636e-19,-3.4228541778702e-08,1.394866653636e-19,-0.99999994039536)
a42= Instance.new("Part",a31)
a42.BrickColor = BrickColor.new("Reddish brown")
a42.Material = "Plastic"
a42.Transparency = 0
a42.Name = "Part"
a42.Anchored = true
a42.CanCollide = true
a42.Locked = false
a42.FormFactor = "Symmetric"
a42.Shape = "Block"
a42.FrontSurface = "Smooth"
a42.BackSurface = "Smooth"
a42.LeftSurface = "Smooth"
a42.RightSurface = "Smooth"
a42.BottomSurface = "Inlet"
a42.TopSurface = "Smooth"
a42.Size = Vector3.new(3,1,4)
a42.CFrame = CFrame.new(-5.5,2.8000061511993,22,-1,0,0,0,1,0,0,0,-1)
a43= Instance.new("Part",a31)
a43.BrickColor = BrickColor.new("Earth orange")
a43.Material = "Plastic"
a43.Transparency = 0
a43.Name = "Part"
a43.Anchored = true
a43.CanCollide = true
a43.Locked = false
a43.FormFactor = "Brick"
a43.Shape = "Block"
a43.FrontSurface = "Smooth"
a43.BackSurface = "Smooth"
a43.LeftSurface = "Smooth"
a43.RightSurface = "Smooth"
a43.BottomSurface = "Inlet"
a43.TopSurface = "Studs"
a43.Size = Vector3.new(1,2.4000000953674,1)
a43.CFrame = CFrame.new(-4.5,1.2008626461029,20.402099609375,3.4228534673275e-08,1.6591349821641e-21,0.99999970197678,1.3948662658951e-19,1,-1.6591155951185e-21,-0.99999970197678,1.394866653636e-19,3.4228534673275e-08)
a44= Instance.new("Part",a31)
a44.BrickColor = BrickColor.new("Earth orange")
a44.Material = "Plastic"
a44.Transparency = 0
a44.Name = "Part"
a44.Anchored = true
a44.CanCollide = true
a44.Locked = false
a44.FormFactor = "Brick"
a44.Shape = "Block"
a44.FrontSurface = "Smooth"
a44.BackSurface = "Smooth"
a44.LeftSurface = "Smooth"
a44.RightSurface = "Smooth"
a44.BottomSurface = "Inlet"
a44.TopSurface = "Studs"
a44.Size = Vector3.new(1,2.4000000953674,1)
a44.CFrame = CFrame.new(-6.5,1.200856924057,23.502075195312,3.4228541778702e-08,1.6591254905897e-21,0.99999994039536,1.394866653636e-19,1,-1.6591254905897e-21,-0.99999994039536,1.394866653636e-19,3.4228541778702e-08)
a45= Instance.new("Part",a31)
a45.BrickColor = BrickColor.new("Earth orange")
a45.Material = "Plastic"
a45.Transparency = 0
a45.Name = "Part"
a45.Anchored = true
a45.CanCollide = true
a45.Locked = false
a45.FormFactor = "Brick"
a45.Shape = "Block"
a45.FrontSurface = "Smooth"
a45.BackSurface = "Smooth"
a45.LeftSurface = "Smooth"
a45.RightSurface = "Smooth"
a45.BottomSurface = "Inlet"
a45.TopSurface = "Studs"
a45.Size = Vector3.new(1,2.4000000953674,1)
a45.CFrame = CFrame.new(-4.5,1.200856924057,23.502075195312,3.4228541778702e-08,1.6591254905897e-21,0.99999994039536,1.394866653636e-19,1,-1.6591254905897e-21,-0.99999994039536,1.394866653636e-19,3.4228541778702e-08)
a46= Instance.new("Model",a0)
a46.Name = "Model"
a47= Instance.new("Part",a46)
a47.BrickColor = BrickColor.new("Reddish brown")
a47.Material = "Plastic"
a47.Transparency = 0
a47.Name = "Part"
a47.Anchored = true
a47.CanCollide = true
a47.Locked = false
a47.FormFactor = "Plate"
a47.Shape = "Block"
a47.FrontSurface = "Smooth"
a47.BackSurface = "Weld"
a47.LeftSurface = "Weld"
a47.RightSurface = "Weld"
a47.BottomSurface = "Inlet"
a47.TopSurface = "Studs"
a47.Size = Vector3.new(1,0.40000000596046,1)
a47.CFrame = CFrame.new(-11.5,6.1008586883545,16.202072143555,1.6591254905897e-21,-3.4228541778702e-08,0.99999994039536,1,-1.394866653636e-19,-1.6591254905897e-21,1.394866653636e-19,0.99999994039536,3.4228541778702e-08)
a48= Instance.new("Part",a46)
a48.BrickColor = BrickColor.new("Reddish brown")
a48.Material = "Plastic"
a48.Transparency = 0
a48.Name = "Part"
a48.Anchored = true
a48.CanCollide = true
a48.Locked = false
a48.FormFactor = "Plate"
a48.Shape = "Block"
a48.FrontSurface = "Smooth"
a48.BackSurface = "Smooth"
a48.LeftSurface = "Smooth"
a48.RightSurface = "Smooth"
a48.BottomSurface = "Weld"
a48.TopSurface = "Smooth"
a48.Size = Vector3.new(2,0.40000000596046,1)
a48.CFrame = CFrame.new(-10.5,5.8008575439453,16.002075195312,3.4228541778702e-08,1.6591254905897e-21,0.99999994039536,1.394866653636e-19,1,-1.6591254905897e-21,-0.99999994039536,1.394866653636e-19,3.4228541778702e-08)
a49= Instance.new("Part",a46)
a49.BrickColor = BrickColor.new("Reddish brown")
a49.Material = "Plastic"
a49.Transparency = 0
a49.Name = "Part"
a49.Anchored = true
a49.CanCollide = true
a49.Locked = false
a49.FormFactor = "Plate"
a49.Shape = "Block"
a49.FrontSurface = "Smooth"
a49.BackSurface = "Weld"
a49.LeftSurface = "Weld"
a49.RightSurface = "Weld"
a49.BottomSurface = "Inlet"
a49.TopSurface = "Studs"
a49.Size = Vector3.new(1,0.40000000596046,1)
a49.CFrame = CFrame.new(-9.5,6.1008586883545,16.202072143555,0.99999994039536,-3.4228541778702e-08,-1.6591254905897e-21,-1.6591254905897e-21,-1.394866653636e-19,-1,3.4228541778702e-08,0.99999994039536,-1.394866653636e-19)
a50= Instance.new("Part",a46)
a50.BrickColor = BrickColor.new("Medium stone grey")
a50.Material = "Plastic"
a50.Transparency = 0
a50.Name = "Part"
a50.Anchored = true
a50.CanCollide = true
a50.Locked = false
a50.FormFactor = "Plate"
a50.Shape = "Block"
a50.FrontSurface = "Smooth"
a50.BackSurface = "Smooth"
a50.LeftSurface = "Smooth"
a50.RightSurface = "Smooth"
a50.BottomSurface = "Smooth"
a50.TopSurface = "Smooth"
a50.Size = Vector3.new(3,1.2000000476837,1)
a50.CFrame = CFrame.new(-10.5,7.2008571624756,15.502075195312,-0.99999994039536,1.6591254905897e-21,3.4228541778702e-08,1.6591254905897e-21,1,1.394866653636e-19,-3.4228541778702e-08,1.394866653636e-19,-0.99999994039536)
a51= Instance.new("SpecialMesh",a50)
a51.Name = "SpecialMesh"
a51.MeshId = "http://www.roblox.com/asset/?id=1271547"
a51.MeshType = "FileMesh"
a51.Scale = Vector3.new(2,2,2)
a51.TextureId = ""
a52= Instance.new("Part",a46)
a52.BrickColor = BrickColor.new("Earth orange")
a52.Material = "Plastic"
a52.Transparency = 0
a52.Name = "Part"
a52.Anchored = true
a52.CanCollide = true
a52.Locked = false
a52.FormFactor = "Brick"
a52.Shape = "Block"
a52.FrontSurface = "Smooth"
a52.BackSurface = "Smooth"
a52.LeftSurface = "Smooth"
a52.RightSurface = "Smooth"
a52.BottomSurface = "Inlet"
a52.TopSurface = "Studs"
a52.Size = Vector3.new(1,2.4000000953674,1)
a52.CFrame = CFrame.new(-11.5,1.2008626461029,12.402099609375,3.4228534673275e-08,1.6591349821641e-21,0.99999970197678,1.3948662658951e-19,1,-1.6591155951185e-21,-0.99999970197678,1.394866653636e-19,3.4228534673275e-08)
a53= Instance.new("Part",a46)
a53.BrickColor = BrickColor.new("Reddish brown")
a53.Material = "Plastic"
a53.Transparency = 0
a53.Name = "Part"
a53.Anchored = true
a53.CanCollide = true
a53.Locked = false
a53.FormFactor = "Plate"
a53.Shape = "Block"
a53.FrontSurface = "Weld"
a53.BackSurface = "Smooth"
a53.LeftSurface = "Smooth"
a53.RightSurface = "Smooth"
a53.BottomSurface = "Inlet"
a53.TopSurface = "Studs"
a53.Size = Vector3.new(1,0.80000001192093,1)
a53.CFrame = CFrame.new(-10.5,2.8008625507355,11.502075195312,-0.99999994039536,1.6591254905897e-21,3.4228541778702e-08,1.6591254905897e-21,1,1.394866653636e-19,-3.4228541778702e-08,1.394866653636e-19,-0.99999994039536)
a54= Instance.new("Part",a46)
a54.BrickColor = BrickColor.new("White")
a54.Material = "Plastic"
a54.Transparency = 0
a54.Name = "Part"
a54.Anchored = true
a54.CanCollide = true
a54.Locked = false
a54.FormFactor = "Plate"
a54.Shape = "Block"
a54.FrontSurface = "Smooth"
a54.BackSurface = "Smooth"
a54.LeftSurface = "Smooth"
a54.RightSurface = "Smooth"
a54.BottomSurface = "Inlet"
a54.TopSurface = "Studs"
a54.Size = Vector3.new(1,0.40000000596046,1)
a54.CFrame = CFrame.new(-10.5,2.2008621692657,11.502075195312,-0.99999994039536,1.6591254905897e-21,3.4228541778702e-08,1.6591254905897e-21,1,1.394866653636e-19,-3.4228541778702e-08,1.394866653636e-19,-0.99999994039536)
a55= Instance.new("Part",a46)
a55.BrickColor = BrickColor.new("Reddish brown")
a55.Material = "Plastic"
a55.Transparency = 0
a55.Name = "Part"
a55.Anchored = true
a55.CanCollide = true
a55.Locked = false
a55.FormFactor = "Symmetric"
a55.Shape = "Block"
a55.FrontSurface = "Smooth"
a55.BackSurface = "Smooth"
a55.LeftSurface = "Smooth"
a55.RightSurface = "Smooth"
a55.BottomSurface = "Inlet"
a55.TopSurface = "Smooth"
a55.Size = Vector3.new(1,1,3)
a55.CFrame = CFrame.new(-10.5,5.1008586883545,16.502075195312,-0.99999994039536,1.6591254905897e-21,3.4228541778702e-08,1.6591254905897e-21,1,1.394866653636e-19,-3.4228541778702e-08,1.394866653636e-19,-0.99999994039536)
a56= Instance.new("Part",a46)
a56.BrickColor = BrickColor.new("Reddish brown")
a56.Material = "Plastic"
a56.Transparency = 0
a56.Name = "Part"
a56.Anchored = true
a56.CanCollide = true
a56.Locked = false
a56.FormFactor = "Brick"
a56.Shape = "Block"
a56.FrontSurface = "Smooth"
a56.BackSurface = "Smooth"
a56.LeftSurface = "Smooth"
a56.RightSurface = "Smooth"
a56.BottomSurface = "Weld"
a56.TopSurface = "Weld"
a56.Size = Vector3.new(1,1.2000000476837,1)
a56.CFrame = CFrame.new(-10.5,4.0008602142334,15.502075195312,-0.99999994039536,1.6591254905897e-21,3.4228541778702e-08,1.6591254905897e-21,1,1.394866653636e-19,-3.4228541778702e-08,1.394866653636e-19,-0.99999994039536)
a57= Instance.new("Part",a46)
a57.BrickColor = BrickColor.new("Reddish brown")
a57.Material = "Plastic"
a57.Transparency = 0
a57.Name = "Part"
a57.Anchored = true
a57.CanCollide = true
a57.Locked = false
a57.FormFactor = "Symmetric"
a57.Shape = "Block"
a57.FrontSurface = "Smooth"
a57.BackSurface = "Smooth"
a57.LeftSurface = "Smooth"
a57.RightSurface = "Smooth"
a57.BottomSurface = "Inlet"
a57.TopSurface = "Smooth"
a57.Size = Vector3.new(3,1,4)
a57.CFrame = CFrame.new(-10.5,2.8000061511993,14,-1,0,0,0,1,0,0,0,-1)
a58= Instance.new("Part",a46)
a58.BrickColor = BrickColor.new("Earth orange")
a58.Material = "Plastic"
a58.Transparency = 0
a58.Name = "Part"
a58.Anchored = true
a58.CanCollide = true
a58.Locked = false
a58.FormFactor = "Brick"
a58.Shape = "Block"
a58.FrontSurface = "Smooth"
a58.BackSurface = "Smooth"
a58.LeftSurface = "Smooth"
a58.RightSurface = "Smooth"
a58.BottomSurface = "Inlet"
a58.TopSurface = "Studs"
a58.Size = Vector3.new(1,2.4000000953674,1)
a58.CFrame = CFrame.new(-9.5,1.2008626461029,12.402099609375,3.4228534673275e-08,1.6591349821641e-21,0.99999970197678,1.3948662658951e-19,1,-1.6591155951185e-21,-0.99999970197678,1.394866653636e-19,3.4228534673275e-08)
a59= Instance.new("Part",a46)
a59.BrickColor = BrickColor.new("Earth orange")
a59.Material = "Plastic"
a59.Transparency = 0
a59.Name = "Part"
a59.Anchored = true
a59.CanCollide = true
a59.Locked = false
a59.FormFactor = "Brick"
a59.Shape = "Block"
a59.FrontSurface = "Smooth"
a59.BackSurface = "Smooth"
a59.LeftSurface = "Smooth"
a59.RightSurface = "Smooth"
a59.BottomSurface = "Inlet"
a59.TopSurface = "Studs"
a59.Size = Vector3.new(1,2.4000000953674,1)
a59.CFrame = CFrame.new(-11.5,1.200856924057,15.502075195312,3.4228541778702e-08,1.6591254905897e-21,0.99999994039536,1.394866653636e-19,1,-1.6591254905897e-21,-0.99999994039536,1.394866653636e-19,3.4228541778702e-08)
a60= Instance.new("Part",a46)
a60.BrickColor = BrickColor.new("Earth orange")
a60.Material = "Plastic"
a60.Transparency = 0
a60.Name = "Part"
a60.Anchored = true
a60.CanCollide = true
a60.Locked = false
a60.FormFactor = "Brick"
a60.Shape = "Block"
a60.FrontSurface = "Smooth"
a60.BackSurface = "Smooth"
a60.LeftSurface = "Smooth"
a60.RightSurface = "Smooth"
a60.BottomSurface = "Inlet"
a60.TopSurface = "Studs"
a60.Size = Vector3.new(1,2.4000000953674,1)
a60.CFrame = CFrame.new(-9.5,1.200856924057,15.502075195312,3.4228541778702e-08,1.6591254905897e-21,0.99999994039536,1.394866653636e-19,1,-1.6591254905897e-21,-0.99999994039536,1.394866653636e-19,3.4228541778702e-08)
a61= Instance.new("Part",a0)
a61.BrickColor = BrickColor.new("Medium stone grey")
a61.Material = "Plastic"
a61.Transparency = 0
a61.Name = "Part"
a61.Anchored = true
a61.CanCollide = true
a61.Locked = false
a61.FormFactor = "Plate"
a61.Shape = "Block"
a61.FrontSurface = "Smooth"
a61.BackSurface = "Smooth"
a61.LeftSurface = "Smooth"
a61.RightSurface = "Smooth"
a61.BottomSurface = "Smooth"
a61.TopSurface = "Smooth"
a61.Size = Vector3.new(1,0.40000000596046,27)
a61.CFrame = CFrame.new(-12.199996948242,2.8000061511993,10.5,0,-1,0,1,0,-0,0,0,1)
a62= Instance.new("Model",a0)
a62.Name = "Model"
a63= Instance.new("Model",a62)
a63.Name = "Model"
a64= Instance.new("Part",a63)