forked from LuaGunsX/LuasLegacyScripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path[GUI] Ultimate Van GUI
11123 lines (10666 loc) · 454 KB
/
[GUI] Ultimate Van GUI
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
--[[
I know this is the wrong section. but jump over to the part where I release a very very rare script!.
Hi. You may know me and you may not. I have quit roblox exploiting due to all games are basicly FE. I do not like exploiting games anymore because they're 99.9% FE and they probably barley even have atleast 3 people. I will now enter the illigal world. I will stick around on the market place now and then but extremely rarely here. This is the people I would like to thank
- Sigma. My best friend that has started me off on v3rmillion and even taught me some scripting. We've been friends for 1 and a half years! He is very helpful to me when making scripts.
- ICanLevitate 1 and a half years to. good friend with sigma and me. Has access to the rc7 panel and gives us free rc7 accounts Heart also created serverside lua model maker that worked on any game but we was stupid to sell it and someone leaked it and got pathed. this was 1 year ago
- TypicalModders He has inspired me to make youtube videos and also made me want to make scripts. I have given him some private scripts 2.
- iCookieBG New friend (I guess?) We do trades for fe scripts. Before I tried to be a leech and steal the fe gui (by hark). But after we got along and yeah.
- Big L aka OneBullet360 We have both have many things in common. Same religion and both like the same pizza company and live in the same region. He is a very kind person and let me use Seraph via Teamviewer (don't worry Autumn said its fine!)
- Lau Kinda one of my skiddie friends but still we use to exploit in a game called Vehicle Simulator.
- Choose Goose We both like to raid discord servers!
- Google Don't know you much but still a good synapse mod.
- Kewt Good youtuber friend and made a video with him you should subscribe to him XD
- eiginger. You will probably not know him at all because he has nothing to do with roblox. He is from Hack Forums and normally cryptes my stubs!
- Christian Male good sex game creator xd
I would give a farewell to the community with the exploiting. Please do not forget about me. Might stick around some time rarley but here is my gift for all of you. thanks.
--]]
-- Objects
local UVG12 = Instance.new("ScreenGui")
local Opener = Instance.new("Frame")
local Open = Instance.new("TextButton")
local hoi = Instance.new("Frame")
local Closeframe = Instance.new("Frame")
local Close = Instance.new("TextButton")
local Username = Instance.new("TextBox")
local VanDaPlayer = Instance.new("TextButton")
local MG2 = Instance.new("TextButton")
local Page2 = Instance.new("TextButton")
local Credits = Instance.new("TextButton")
local MG1 = Instance.new("TextButton")
local PG2Frame = Instance.new("Frame")
local Close2 = Instance.new("TextButton")
local Mossberg = Instance.new("TextButton")
local M9B = Instance.new("TextButton")
local TextBox = Instance.new("TextBox")
local PG3 = Instance.new("TextButton")
local WoodChip = Instance.new("TextButton")
local CreditsF = Instance.new("Frame")
local DMCredits = Instance.new("TextLabel")
local MEcredits = Instance.new("TextLabel")
local PS = Instance.new("TextLabel")
local Close3 = Instance.new("TextButton")
local PG3Frame = Instance.new("Frame")
local Close3_2 = Instance.new("TextButton")
local Usr3 = Instance.new("TextBox")
local Mossberg_2 = Instance.new("TextButton")
local Guilotine = Instance.new("TextButton")
local Whip = Instance.new("TextButton")
local KKKMap = Instance.new("TextButton")
local PG4Frame = Instance.new("Frame")
local Close3_3 = Instance.new("TextButton")
local Usr4 = Instance.new("TextBox")
local Hook = Instance.new("TextButton")
local SuicideGrenade = Instance.new("TextButton")
local astafiruAllah = Instance.new("TextButton")
local ScrollingFrame = Instance.new("ScrollingFrame")
local QA = Instance.new("Frame")
local QAT = Instance.new("Frame")
local TextLabel = Instance.new("TextLabel")
local QAPG1 = Instance.new("TextButton")
local QAPG2 = Instance.new("TextButton")
local QAPG3 = Instance.new("TextButton")
local QAPG4 = Instance.new("TextButton")
local QAPGC = Instance.new("TextButton")
-- Properties
UVG12.Name = "UVG12"
UVG12.Parent = CMouse:GetPlayer().PlayerGui
Opener.Name = "Opener"
Opener.Parent = UVG12
Opener.BackgroundColor3 = Color3.new(0, 0, 0)
Opener.BackgroundTransparency = 0.5
Opener.Position = UDim2.new(0, 19, 0, 564)
Opener.Size = UDim2.new(0, 224, 0, 40)
Open.Name = "Open"
Open.Parent = Opener
Open.BackgroundColor3 = Color3.new(0, 0, 0)
Open.BackgroundTransparency = 0.5
Open.Size = UDim2.new(0, 224, 0, 40)
Open.Font = Enum.Font.SciFi
Open.FontSize = Enum.FontSize.Size42
Open.Text = "Open"
Open.TextColor3 = Color3.new(0, 1, 1)
Open.TextSize = 42
hoi.Name = "hoi"
hoi.Parent = UVG12
hoi.BackgroundColor3 = Color3.new(0, 0, 0)
hoi.BackgroundTransparency = 0.5
hoi.Draggable = true
hoi.Position = UDim2.new(0, 107, 0, 309)
hoi.Size = UDim2.new(0, 345, 0, 197)
hoi.Visible = false
Closeframe.Name = "Closeframe"
Closeframe.Parent = hoi
Closeframe.BackgroundColor3 = Color3.new(1, 0, 0.0156863)
Closeframe.Position = UDim2.new(0, 313, 0, 0)
Closeframe.Size = UDim2.new(0, 30, 0, 26)
Close.Name = "Close"
Close.Parent = Closeframe
Close.BackgroundColor3 = Color3.new(1, 0, 0.0156863)
Close.Size = UDim2.new(0, 30, 0, 26)
Close.Font = Enum.Font.SciFi
Close.FontSize = Enum.FontSize.Size14
Close.Text = "X"
Close.TextColor3 = Color3.new(1, 1, 1)
Close.TextSize = 14
Close.TextStrokeTransparency = 5
Username.Name = "Username"
Username.Parent = hoi
Username.BackgroundColor3 = Color3.new(0, 0, 0)
Username.BackgroundTransparency = 0.5
Username.Size = UDim2.new(0, 200, 0.0999999866, 24)
Username.Font = Enum.Font.SciFi
Username.FontSize = Enum.FontSize.Size18
Username.Text = "Username"
Username.TextColor3 = Color3.new(0, 1, 1)
Username.TextSize = 18
VanDaPlayer.Name = "VanDaPlayer"
VanDaPlayer.Parent = hoi
VanDaPlayer.BackgroundColor3 = Color3.new(0, 0, 0)
VanDaPlayer.BackgroundTransparency = 0.5
VanDaPlayer.Position = UDim2.new(0.0199999996, 15, 0.00999999978, 71)
VanDaPlayer.Size = UDim2.new(0, 150, 0, 26)
VanDaPlayer.Font = Enum.Font.SciFi
VanDaPlayer.FontSize = Enum.FontSize.Size14
VanDaPlayer.Text = "Van Player"
VanDaPlayer.TextColor3 = Color3.new(0, 1, 1)
VanDaPlayer.TextSize = 14
MG2.Name = "MG2"
MG2.Parent = hoi
MG2.BackgroundColor3 = Color3.new(0, 0, 0)
MG2.BackgroundTransparency = 0.5
MG2.Position = UDim2.new(0.0199999996, 29, 0.00999999978, 149)
MG2.Size = UDim2.new(0, 271, 0, 26)
MG2.Font = Enum.Font.SciFi
MG2.FontSize = Enum.FontSize.Size14
MG2.Text = "Mustard Gas (Mask Off) No name needed"
MG2.TextColor3 = Color3.new(0, 1, 1)
MG2.TextSize = 14
Page2.Name = "Page2"
Page2.Parent = hoi
Page2.BackgroundColor3 = Color3.new(0, 0, 0)
Page2.BackgroundTransparency = 0.5
Page2.Position = UDim2.new(0.0199999996, 180, 0.00999999978, 71)
Page2.Size = UDim2.new(0, 48, 0, 26)
Page2.Font = Enum.Font.SciFi
Page2.FontSize = Enum.FontSize.Size14
Page2.Text = "Page 2"
Page2.TextColor3 = Color3.new(0, 1, 1)
Page2.TextSize = 14
Credits.Name = "Credits"
Credits.Parent = hoi
Credits.BackgroundColor3 = Color3.new(0, 0, 0)
Credits.BackgroundTransparency = 0.5
Credits.Position = UDim2.new(0.0199999996, 246, 0.00999999978, 71)
Credits.Size = UDim2.new(0, 66, 0, 26)
Credits.Font = Enum.Font.SciFi
Credits.FontSize = Enum.FontSize.Size14
Credits.Text = "Credits"
Credits.TextColor3 = Color3.new(0, 1, 1)
Credits.TextSize = 14
MG1.Name = "MG1"
MG1.Parent = hoi
MG1.BackgroundColor3 = Color3.new(0, 0, 0)
MG1.BackgroundTransparency = 0.5
MG1.Position = UDim2.new(0.0199999996, 29, 0.00999999978, 113)
MG1.Size = UDim2.new(0, 271, 0, 26)
MG1.Font = Enum.Font.SciFi
MG1.FontSize = Enum.FontSize.Size14
MG1.Text = "Mustard Gas (Mask On) No name needed"
MG1.TextColor3 = Color3.new(0, 1, 1)
MG1.TextSize = 14
PG2Frame.Name = "PG2Frame"
PG2Frame.Parent = UVG12
PG2Frame.Active = true
PG2Frame.BackgroundColor3 = Color3.new(0, 0, 0)
PG2Frame.BackgroundTransparency = 0.5
PG2Frame.Position = UDim2.new(0, 108, 0, 309)
PG2Frame.Size = UDim2.new(0, 340, 0, 162)
PG2Frame.Visible = false
Close2.Name = "Close2"
Close2.Parent = PG2Frame
Close2.BackgroundColor3 = Color3.new(1, 0, 0)
Close2.Position = UDim2.new(0, 310, 0, 0)
Close2.Size = UDim2.new(0, 30, 0, 20)
Close2.Font = Enum.Font.SciFi
Close2.FontSize = Enum.FontSize.Size24
Close2.Text = "X"
Close2.TextColor3 = Color3.new(1, 1, 1)
Close2.TextSize = 24
Mossberg.Name = "Mossberg"
Mossberg.Parent = PG2Frame
Mossberg.BackgroundColor3 = Color3.new(0, 0, 0)
Mossberg.BackgroundTransparency = 0.5
Mossberg.Position = UDim2.new(0, 27, 0, 70)
Mossberg.Size = UDim2.new(0, 143, 0, 26)
Mossberg.Font = Enum.Font.SciFi
Mossberg.FontSize = Enum.FontSize.Size18
Mossberg.Text = "Mossberg 500 BROKEN ATM"
Mossberg.TextColor3 = Color3.new(0, 1, 1)
Mossberg.TextSize = 15
M9B.Name = "M9B"
M9B.Parent = PG2Frame
M9B.BackgroundColor3 = Color3.new(0, 0, 0)
M9B.BackgroundTransparency = 0.5
M9B.Position = UDim2.new(0.0299999993, 170, 0, 70)
M9B.Size = UDim2.new(0, 143, 0, 26)
M9B.Font = Enum.Font.SciFi
M9B.FontSize = Enum.FontSize.Size18
M9B.Text = "M9 Bayonet No Name"
M9B.TextColor3 = Color3.new(0, 1, 1)
M9B.TextSize = 15
TextBox.Parent = PG2Frame
TextBox.BackgroundColor3 = Color3.new(0, 0, 0)
TextBox.BackgroundTransparency = 0.5
TextBox.Size = UDim2.new(0, 200, 0, 50)
TextBox.Font = Enum.Font.SciFi
TextBox.FontSize = Enum.FontSize.Size24
TextBox.Text = "Username"
TextBox.TextColor3 = Color3.new(0, 1, 1)
TextBox.TextSize = 24
PG3.Name = "PG3"
PG3.Parent = PG2Frame
PG3.BackgroundColor3 = Color3.new(0, 0, 0)
PG3.BackgroundTransparency = 0.5
PG3.Position = UDim2.new(-0.0299999993, 269, 0.00999999978, 115)
PG3.Size = UDim2.new(-0.00999999978, 71, 0, 26)
PG3.Font = Enum.Font.SciFi
PG3.FontSize = Enum.FontSize.Size18
PG3.Text = "Page 3"
PG3.TextColor3 = Color3.new(0, 1, 1)
PG3.TextSize = 15
WoodChip.Name = "WoodChip"
WoodChip.Parent = PG2Frame
WoodChip.BackgroundColor3 = Color3.new(0, 0, 0)
WoodChip.BackgroundTransparency = 0.5
WoodChip.Position = UDim2.new(0, 19, 0, 117)
WoodChip.Size = UDim2.new(0, 227, 0, 26)
WoodChip.Font = Enum.Font.SciFi
WoodChip.FontSize = Enum.FontSize.Size24
WoodChip.Text = "Wood chip. Needs name"
WoodChip.TextColor3 = Color3.new(0, 1, 1)
WoodChip.TextSize = 24
CreditsF.Name = "CreditsF"
CreditsF.Parent = UVG12
CreditsF.BackgroundColor3 = Color3.new(0, 0, 0)
CreditsF.BackgroundTransparency = 0.5
CreditsF.Position = UDim2.new(0, 106, 0, 312)
CreditsF.Size = UDim2.new(0, 339, 0, 191)
CreditsF.Visible = false
DMCredits.Name = "DMCredits"
DMCredits.Parent = CreditsF
DMCredits.BackgroundColor3 = Color3.new(0, 0, 0)
DMCredits.BackgroundTransparency = 0.5
DMCredits.Position = UDim2.new(0, 32, 0, 28)
DMCredits.Size = UDim2.new(0, 275, 0, 24)
DMCredits.Font = Enum.Font.SciFi
DMCredits.FontSize = Enum.FontSize.Size18
DMCredits.Text = "Converterd by Bee#7291 or BeeVEVO"
DMCredits.TextColor3 = Color3.new(0, 1, 1)
DMCredits.TextSize = 18
MEcredits.Name = "MEcredits"
MEcredits.Parent = CreditsF
MEcredits.BackgroundColor3 = Color3.new(0, 0, 0)
MEcredits.BackgroundTransparency = 0.5
MEcredits.Position = UDim2.new(0, 18, 0, 70)
MEcredits.Size = UDim2.new(0, 303, 0, 50)
MEcredits.Font = Enum.Font.SciFi
MEcredits.FontSize = Enum.FontSize.Size14
MEcredits.Text = "Credits to me (345678) Talha for making the gui"
MEcredits.TextColor3 = Color3.new(0, 1, 1)
MEcredits.TextSize = 14
PS.Name = "PS"
PS.Parent = CreditsF
PS.BackgroundColor3 = Color3.new(0, 0, 0)
PS.BackgroundTransparency = 0.5
PS.Position = UDim2.new(0, 0, 0, 141)
PS.Size = UDim2.new(0, 339, 0, 50)
PS.Font = Enum.Font.SciFi
PS.FontSize = Enum.FontSize.Size10
PS.Text = "P.S. If your doing a vid. Let me be on your vid. My discord is Talha#6078"
PS.TextColor3 = Color3.new(0, 1, 1)
PS.TextSize = 10
PS.TextWrapped = true
Close3.Name = "Close3"
Close3.Parent = CreditsF
Close3.BackgroundColor3 = Color3.new(1, 0, 0)
Close3.Position = UDim2.new(0, 314, 0, 0)
Close3.Size = UDim2.new(0, 25, 0, 18)
Close3.Font = Enum.Font.SciFi
Close3.FontSize = Enum.FontSize.Size14
Close3.Text = "X"
Close3.TextColor3 = Color3.new(1, 1, 1)
Close3.TextSize = 14
PG3Frame.Name = "PG3Frame"
PG3Frame.Parent = UVG12
PG3Frame.BackgroundColor3 = Color3.new(0, 0, 0)
PG3Frame.BackgroundTransparency = 0.5
PG3Frame.Position = UDim2.new(0, 108, 0, 310)
PG3Frame.Size = UDim2.new(0, 340, 0, 162)
PG3Frame.Visible = false
Close3_2.Name = "Close3"
Close3_2.Parent = PG3Frame
Close3_2.BackgroundColor3 = Color3.new(1, 0, 0)
Close3_2.Position = UDim2.new(0, 310, 0, 0)
Close3_2.Size = UDim2.new(0, 30, 0, 20)
Close3_2.Font = Enum.Font.SciFi
Close3_2.FontSize = Enum.FontSize.Size24
Close3_2.Text = "X"
Close3_2.TextColor3 = Color3.new(1, 1, 1)
Close3_2.TextSize = 24
Usr3.Name = "Usr3"
Usr3.Parent = PG3Frame
Usr3.BackgroundColor3 = Color3.new(0, 0, 0)
Usr3.BackgroundTransparency = 0.5
Usr3.Size = UDim2.new(0, 200, 0, 50)
Usr3.Font = Enum.Font.SciFi
Usr3.FontSize = Enum.FontSize.Size24
Usr3.Text = "Username"
Usr3.TextColor3 = Color3.new(0, 1, 1)
Usr3.TextSize = 24
Mossberg_2.Name = "Mossberg"
Mossberg_2.Parent = PG3Frame
Mossberg_2.BackgroundColor3 = Color3.new(0, 0, 0)
Mossberg_2.BackgroundTransparency = 0.5
Mossberg_2.Position = UDim2.new(0, 27, 0, 68)
Mossberg_2.Size = UDim2.new(0, 143, 0, 26)
Mossberg_2.Font = Enum.Font.SciFi
Mossberg_2.FontSize = Enum.FontSize.Size18
Mossberg_2.Text = "Hang"
Mossberg_2.TextColor3 = Color3.new(0, 1, 1)
Mossberg_2.TextSize = 15
Guilotine.Name = "Guilotine"
Guilotine.Parent = PG3Frame
Guilotine.BackgroundColor3 = Color3.new(0, 0, 0)
Guilotine.BackgroundTransparency = 0.5
Guilotine.Position = UDim2.new(0, 209, 0, 68)
Guilotine.Size = UDim2.new(0, 98, 0, 26)
Guilotine.Font = Enum.Font.SciFi
Guilotine.FontSize = Enum.FontSize.Size18
Guilotine.Text = "Guilotine no plr"
Guilotine.TextColor3 = Color3.new(0, 1, 1)
Guilotine.TextSize = 15
Whip.Name = "Whip"
Whip.Parent = PG3Frame
Whip.BackgroundColor3 = Color3.new(0, 0, 0)
Whip.BackgroundTransparency = 0.5
Whip.Position = UDim2.new(0.00999999978, 23, 0, 112)
Whip.Size = UDim2.new(0, 130, 0, 26)
Whip.Font = Enum.Font.SciFi
Whip.FontSize = Enum.FontSize.Size18
Whip.Text = "Whip no plr"
Whip.TextColor3 = Color3.new(0, 1, 1)
Whip.TextSize = 15
KKKMap.Name = "KKKMap"
KKKMap.Parent = PG3Frame
KKKMap.BackgroundColor3 = Color3.new(0, 0, 0)
KKKMap.BackgroundTransparency = 0.5
KKKMap.Position = UDim2.new(0.00999999978, 184, 0, 111)
KKKMap.Size = UDim2.new(0, 130, 0, 26)
KKKMap.Font = Enum.Font.SciFi
KKKMap.FontSize = Enum.FontSize.Size18
KKKMap.Text = "KKK map no plr ofc"
KKKMap.TextColor3 = Color3.new(0, 1, 1)
KKKMap.TextSize = 15
PG4Frame.Name = "PG4Frame"
PG4Frame.Parent = UVG12
PG4Frame.BackgroundColor3 = Color3.new(0, 0, 0)
PG4Frame.BackgroundTransparency = 0.5
PG4Frame.Position = UDim2.new(0, 108, 0, 310)
PG4Frame.Size = UDim2.new(0, 340, 0, 162)
PG4Frame.Visible = false
Close3_3.Name = "Close3"
Close3_3.Parent = PG4Frame
Close3_3.BackgroundColor3 = Color3.new(1, 0, 0)
Close3_3.Position = UDim2.new(0, 310, 0, 0)
Close3_3.Size = UDim2.new(0, 30, 0, 20)
Close3_3.Font = Enum.Font.SciFi
Close3_3.FontSize = Enum.FontSize.Size24
Close3_3.Text = "X"
Close3_3.TextColor3 = Color3.new(1, 1, 1)
Close3_3.TextSize = 24
Usr4.Name = "Usr4"
Usr4.Parent = PG4Frame
Usr4.BackgroundColor3 = Color3.new(0, 0, 0)
Usr4.BackgroundTransparency = 0.5
Usr4.Size = UDim2.new(0, 200, 0, 50)
Usr4.Font = Enum.Font.SciFi
Usr4.FontSize = Enum.FontSize.Size24
Usr4.Text = "Username"
Usr4.TextColor3 = Color3.new(0, 1, 1)
Usr4.TextSize = 24
Hook.Name = "Hook"
Hook.Parent = PG4Frame
Hook.BackgroundColor3 = Color3.new(0, 0, 0)
Hook.BackgroundTransparency = 0.5
Hook.Position = UDim2.new(0, 27, 0, 68)
Hook.Size = UDim2.new(0, 143, 0, 26)
Hook.Font = Enum.Font.SciFi
Hook.FontSize = Enum.FontSize.Size18
Hook.Text = "Hook Plr"
Hook.TextColor3 = Color3.new(0, 1, 1)
Hook.TextSize = 15
SuicideGrenade.Name = "Suicide Grenade"
SuicideGrenade.Parent = PG4Frame
SuicideGrenade.BackgroundColor3 = Color3.new(0, 0, 0)
SuicideGrenade.BackgroundTransparency = 0.5
SuicideGrenade.Position = UDim2.new(0, 209, 0, 68)
SuicideGrenade.Size = UDim2.new(0, 98, 0, 26)
SuicideGrenade.Visible = true
SuicideGrenade.Font = Enum.Font.SciFi
SuicideGrenade.FontSize = Enum.FontSize.Size18
SuicideGrenade.Text = "Suicide Grenade No plr"
SuicideGrenade.TextColor3 = Color3.new(0, 1, 1)
SuicideGrenade.TextScaled = true
SuicideGrenade.TextSize = 15
SuicideGrenade.TextWrapped = true
astafiruAllah.Name = "astafiruAllah"
astafiruAllah.Parent = PG4Frame
astafiruAllah.BackgroundColor3 = Color3.new(0, 0, 0)
astafiruAllah.BackgroundTransparency = 0.5
astafiruAllah.Position = UDim2.new(0.00999999978, 23, 0, 112)
astafiruAllah.Size = UDim2.new(0, 130, 0, 26)
astafiruAllah.Font = Enum.Font.SciFi
astafiruAllah.FontSize = Enum.FontSize.Size18
astafiruAllah.Text = "astarfirulah. no plr. just find out im muslim so ye. you find this out if u dont know arabic xd no plr btw"
astafiruAllah.TextColor3 = Color3.new(0, 1, 1)
astafiruAllah.TextScaled = true
astafiruAllah.TextSize = 15
astafiruAllah.TextWrapped = true
ScrollingFrame.Parent = UVG12
ScrollingFrame.BackgroundColor3 = Color3.new(0, 0, 0)
ScrollingFrame.BackgroundTransparency = 0.5
ScrollingFrame.Position = UDim2.new(0, 0, 0, 308)
ScrollingFrame.Size = UDim2.new(0, 100, 0, 200)
ScrollingFrame.Visible = false
ScrollingFrame.CanvasSize = UDim2.new(0, 0, 0.400000006, 0)
QA.Name = "QA"
QA.Parent = ScrollingFrame
QA.BackgroundColor3 = Color3.new(0, 0, 0)
QA.BackgroundTransparency = 1
QA.Draggable = true
QA.Position = UDim2.new(0, -4, 0, 3)
QA.Size = UDim2.new(0, 104, 0, 197)
QAT.Name = "QAT"
QAT.Parent = QA
QAT.BackgroundColor3 = Color3.new(0, 0, 0)
QAT.BackgroundTransparency = 0.5
QAT.Size = UDim2.new(0, 104, 0, 37)
TextLabel.Parent = QAT
TextLabel.BackgroundColor3 = Color3.new(0, 0, 0)
TextLabel.BackgroundTransparency = 1
TextLabel.Size = UDim2.new(0, 104, 0, 37)
TextLabel.Font = Enum.Font.SciFi
TextLabel.FontSize = Enum.FontSize.Size18
TextLabel.Text = "Quick Access"
TextLabel.TextColor3 = Color3.new(0.333333, 1, 1)
TextLabel.TextSize = 18
QAPG1.Name = "QAPG1"
QAPG1.Parent = QA
QAPG1.BackgroundColor3 = Color3.new(0, 0, 0)
QAPG1.BackgroundTransparency = 0.5
QAPG1.Position = UDim2.new(0, 0, 0, 48)
QAPG1.Size = UDim2.new(0, 87, 0, 34)
QAPG1.Font = Enum.Font.SciFi
QAPG1.FontSize = Enum.FontSize.Size24
QAPG1.Text = "Page 1"
QAPG1.TextColor3 = Color3.new(0.333333, 1, 1)
QAPG1.TextSize = 24
QAPG2.Name = "QAPG2"
QAPG2.Parent = QA
QAPG2.BackgroundColor3 = Color3.new(0, 0, 0)
QAPG2.BackgroundTransparency = 0.5
QAPG2.Position = UDim2.new(0, 0, 0, 98)
QAPG2.Size = UDim2.new(0, 86, 0, 34)
QAPG2.Font = Enum.Font.SciFi
QAPG2.FontSize = Enum.FontSize.Size24
QAPG2.Text = "Page 2"
QAPG2.TextColor3 = Color3.new(0.333333, 1, 1)
QAPG2.TextSize = 24
QAPG3.Name = "QAPG3"
QAPG3.Parent = QA
QAPG3.BackgroundColor3 = Color3.new(0, 0, 0)
QAPG3.BackgroundTransparency = 0.5
QAPG3.Position = UDim2.new(0, 0, 0, 143)
QAPG3.Size = UDim2.new(0, 85, 0, 34)
QAPG3.Font = Enum.Font.SciFi
QAPG3.FontSize = Enum.FontSize.Size24
QAPG3.Text = "Page 3"
QAPG3.TextColor3 = Color3.new(0.333333, 1, 1)
QAPG3.TextSize = 24
QAPG4.Name = "QAPG4"
QAPG4.Parent = QA
QAPG4.BackgroundColor3 = Color3.new(0, 0, 0)
QAPG4.BackgroundTransparency = 0.5
QAPG4.Position = UDim2.new(0, 0, 0.0299999993, 180)
QAPG4.Size = UDim2.new(0, 85, 0, 34)
QAPG4.Font = Enum.Font.SciFi
QAPG4.FontSize = Enum.FontSize.Size24
QAPG4.Text = "Page 4"
QAPG4.TextColor3 = Color3.new(0.333333, 1, 1)
QAPG4.TextSize = 24
QAPGC.Name = "QAPGC"
QAPGC.Parent = QA
QAPGC.BackgroundColor3 = Color3.new(0, 0, 0)
QAPGC.BackgroundTransparency = 0.5
QAPGC.Position = UDim2.new(0, 0, 0.0299999993, 226)
QAPGC.Size = UDim2.new(0, 85, 0, 34)
QAPGC.Font = Enum.Font.SciFi
QAPGC.FontSize = Enum.FontSize.Size24
QAPGC.Text = "Credits"
QAPGC.TextColor3 = Color3.new(0.333333, 1, 1)
QAPGC.TextSize = 24
Open.MouseButton1Down:connect(function()
CMouse:GetPlayer().PlayerGui.UVG12.hoi.Visible = true
CMouse:GetPlayer().PlayerGui.UVG12.ScrollingFrame.Visible = true
CMouse:GetPlayer().PlayerGui.UVG12.Opener.Visible = false
end)
Close.MouseButton1Down:connect(function()
CMouse:GetPlayer().PlayerGui.UVG12.hoi.Visible = false
CMouse:GetPlayer().PlayerGui.UVG12.Opener.Visible = true
CMouse:GetPlayer().PlayerGui.UVG12.ScrollingFrame.Visible = false
end)
Close2.MouseButton1Down:connect(function()
CMouse:GetPlayer().PlayerGui.UVG12.hoi.Visible = true
CMouse:GetPlayer().PlayerGui.UVG12.PG2Frame.Visible = false
end)
Close3.MouseButton1Down:connect(function()
CMouse:GetPlayer().PlayerGui.UVG12.hoi.Visible = true
CMouse:GetPlayer().PlayerGui.UVG12.CreditsF.Visible = false
end)
Credits.MouseButton1Down:connect(function()
CMouse:GetPlayer().PlayerGui.UVG12.hoi.Visible = false
CMouse:GetPlayer().PlayerGui.UVG12.CreditsF.Visible = true
end)
Page2.MouseButton1Down:connect(function()
CMouse:GetPlayer().PlayerGui.UVG12.hoi.Visible = false
CMouse:GetPlayer().PlayerGui.UVG12.PG2Frame.Visible = true
end)
Close3_2.MouseButton1Down:connect(function()
CMouse:GetPlayer().PlayerGui.UVG12.PG3Frame.Visible = false
CMouse:GetPlayer().PlayerGui.UVG12.PG2Frame.Visible = true
end)
PG3.MouseButton1Down:connect(function()
CMouse:GetPlayer().PlayerGui.UVG12.PG3Frame.Visible = true
CMouse:GetPlayer().PlayerGui.UVG12.PG2Frame.Visible = false
end)
MG1.MouseButton1Down:connect(function()
--MUSTARD GAS BY DMS
GasMask = true
xd = Instance.new("Tool")
xdd = Instance.new("Part")
xddd = Instance.new("Part")
xdddd = Instance.new("Part")
xddddd = Instance.new("Smoke")
xdddddd = Instance.new("Smoke")
xddddddd = Instance.new("Smoke")
xdddddddd = Instance.new("Part")
xddddddddd = Instance.new("Part")
xd0 = Instance.new("Part")
xd.Name = "Mustard Gas Grenade"
xd.Parent = CMouse:GetPlayer().Backpack
xdd.Parent = xd
xdd.Material = Enum.Material.SmoothPlastic
xdd.BrickColor = BrickColor.new("Deep orange")
xdd.Position = Vector3.new(-9.08949184, 0.563135147, 33.200779)
xdd.Rotation = Vector3.new(-0, 0, -90)
xdd.CanCollide = false
xdd.Shape = Enum.PartType.Cylinder
xdd.Size = Vector3.new(0.26000011, 0.819999993, 1)
xdd.CFrame = CFrame.new(-9.08949184, 0.563135147, 33.200779, 0, 1, 0, -1, 0, 0, 0, 0, 1)
xdd.BackSurface = Enum.SurfaceType.SmoothNoOutlines
xdd.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
xdd.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
xdd.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
xdd.RightSurface = Enum.SurfaceType.SmoothNoOutlines
xdd.TopSurface = Enum.SurfaceType.SmoothNoOutlines
xdd.Color = Color3.new(1, 0.686275, 0)
xddd.Parent = xd
xddd.Material = Enum.Material.SmoothPlastic
xddd.BrickColor = BrickColor.new("Really black")
xddd.Position = Vector3.new(-9.09000397, 0.615009904, 33.2000046)
xddd.Rotation = Vector3.new(-0, 0, 90)
xddd.CanCollide = false
xddd.Shape = Enum.PartType.Cylinder
xddd.Size = Vector3.new(1.21000016, 0.799999952, 1)
xddd.CFrame = CFrame.new(-9.09000397, 0.615009904, 33.2000046, 0, -1, 0, 1, 0, 0, 0, 0, 1)
xddd.BackSurface = Enum.SurfaceType.SmoothNoOutlines
xddd.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
xddd.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
xddd.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
xddd.RightSurface = Enum.SurfaceType.SmoothNoOutlines
xddd.TopSurface = Enum.SurfaceType.SmoothNoOutlines
xddd.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
xdddd.Parent = xd
xdddd.Material = Enum.Material.SmoothPlastic
xdddd.BrickColor = BrickColor.new("Dark stone grey")
xdddd.Position = Vector3.new(-9.09270954, 1.33200657, 33.2021408)
xdddd.CanCollide = false
xdddd.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
xdddd.CFrame = CFrame.new(-9.09270954, 1.33200657, 33.2021408, 1, 0, 0, 0, 1, 0, 0, 0, 1)
xdddd.BackSurface = Enum.SurfaceType.SmoothNoOutlines
xdddd.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
xdddd.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
xdddd.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
xdddd.RightSurface = Enum.SurfaceType.SmoothNoOutlines
xdddd.TopSurface = Enum.SurfaceType.SmoothNoOutlines
xdddd.Color = Color3.new(0.388235, 0.372549, 0.384314)
xddddd.Parent = xdddd
xddddd.Color = Color3.new(0.756863, 0.584314, 0.0588235)
xddddd.Opacity = 1
xddddd.RiseVelocity = 4
xdddddd.Parent = xdddd
xdddddd.Color = Color3.new(0.756863, 0.584314, 0.0588235)
xdddddd.Opacity = 1
xdddddd.RiseVelocity = 4
xddddddd.Parent = xdddd
xddddddd.Color = Color3.new(0.756863, 0.584314, 0.0588235)
xddddddd.Opacity = 1
xddddddd.RiseVelocity = 4
xdddddddd.Parent = xd
xdddddddd.Material = Enum.Material.SmoothPlastic
xdddddddd.BrickColor = BrickColor.new("Deep orange")
xdddddddd.Position = Vector3.new(-9.08949184, 0.899091303, 33.200779)
xdddddddd.Rotation = Vector3.new(-0, 0, 90)
xdddddddd.CanCollide = false
xdddddddd.Shape = Enum.PartType.Cylinder
xdddddddd.Size = Vector3.new(0.200000003, 0.819999993, 1)
xdddddddd.CFrame = CFrame.new(-9.08949184, 0.899091303, 33.200779, 0, -1, 0, 1, 0, 0, 0, 0, 1)
xdddddddd.BackSurface = Enum.SurfaceType.SmoothNoOutlines
xdddddddd.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
xdddddddd.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
xdddddddd.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
xdddddddd.RightSurface = Enum.SurfaceType.SmoothNoOutlines
xdddddddd.TopSurface = Enum.SurfaceType.SmoothNoOutlines
xdddddddd.Color = Color3.new(1, 0.686275, 0)
xddddddddd.Parent = xd
xddddddddd.Material = Enum.Material.SmoothPlastic
xddddddddd.BrickColor = BrickColor.new("Black")
xddddddddd.Position = Vector3.new(-9.09270954, 1.26311076, 33.2003593)
xddddddddd.Rotation = Vector3.new(-0, 0, 90)
xddddddddd.CanCollide = false
xddddddddd.Shape = Enum.PartType.Cylinder
xddddddddd.Size = Vector3.new(0.200000003, 0.799999952, 0.540000021)
xddddddddd.CFrame = CFrame.new(-9.09270954, 1.26311076, 33.2003593, 0, -1, 0, 1, 0, 0, 0, 0, 1)
xddddddddd.BackSurface = Enum.SurfaceType.SmoothNoOutlines
xddddddddd.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
xddddddddd.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
xddddddddd.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
xddddddddd.RightSurface = Enum.SurfaceType.SmoothNoOutlines
xddddddddd.TopSurface = Enum.SurfaceType.SmoothNoOutlines
xddddddddd.Color = Color3.new(0.105882, 0.164706, 0.207843)
xd0.Name = "Handle"
xd0.Parent = xd
xd0.BrickColor = BrickColor.new("Earth green")
xd0.Transparency = 1
xd0.Position = Vector3.new(-9.11234188, 0.5, 33.1982155)
xd0.Rotation = Vector3.new(0, 90, 0)
xd0.CanCollide = false
xd0.FormFactor = Enum.FormFactor.Custom
xd0.Size = Vector3.new(0.800000131, 0.920000255, 0.799998164)
xd0.CFrame = CFrame.new(-9.11234188, 0.5, 33.1982155, -0, 0, 1, 0, 1, 0, -1, 0, 0)
xd0.BottomSurface = Enum.SurfaceType.Smooth
xd0.TopSurface = Enum.SurfaceType.Smooth
xd0.Color = Color3.new(0.152941, 0.27451, 0.176471)
KILLPART = Instance.new("Part")
KILLPART.Size = Vector3.new(16,16,16)
KILLPART.Name = "TOUCHPART"
KILLPART.Anchored = true
KILLPART.BrickColor = BrickColor.new("Black")
KILLPART.Transparency = 1
KILLPART.CanCollide = false
KILLPART.CFrame = xd0.CFrame
KILLPART.Parent = workspace
KILLPART.Color = Color3.new(0.105882, 0.164706, 0.207843)
Gas = Instance.new("Sound")
Gas.Parent = xd0
Gas.Volume = 0.8
Gas.Looped = true
Gas.SoundId = "http://www.roblox.com/asset/?id=137065982"
Gas.Pitch = 1
Gas.Name = "Sound"
ison = false
function Weld(x,y)
local W = Instance.new("Weld")
W.Part0 = x
W.Part1 = y
local CJ = CFrame.new(x.Position)
local C0 = x.CFrame:inverse()*CJ
local C1 = y.CFrame:inverse()*CJ
W.C0 = C0
W.C1 = C1
W.Parent = x
end
function Get(A)
if A.className == "Part" then
Weld(xd.Handle, A)
A.Anchored = false
A.CanCollide = false
else
local C = A:GetChildren()
for i=1, #C do
Get(C[i])
end
end
end
function Finale()
Get(xd)
end
function XDdd ()
ison = true
end
function Xddd ()
ison = false
end function lol () xdg = true Gas.Playing = true KILLPART.Parent = workspace while xdg == true do wait() KILLPART.CFrame = xd0.CFrame end end
function Posijew ()
KILLPART.CFrame = xd0.CFrame
end function loln () KILLPART.Parent = game Gas.Playing = false xdg = false end
xdg = false
xd.Equipped:connect(XDdd)
xd.Unequipped:connect(Xddd)
xd.Equipped:connect(Finale)
xd.Equipped:connect(lol)
xd.Unequipped:connect(loln)
xd.Unequipped:connect(Finale)
Finale()
function Kill (Part)
for i,v in pairs(Part.Parent:GetChildren()) do
if v:IsA("Humanoid") and v.Parent.Name ~= CMouse:GetPlayer().Name then
v:Destroy()
end end
end
KILLPART.Touched:connect(Kill)
if GasMask == true then
o1 = Instance.new("Model")
o2 = Instance.new("Part")
o3 = Instance.new("SpecialMesh")
o4 = Instance.new("Part")
o5 = Instance.new("Part")
o6 = Instance.new("Part")
o7 = Instance.new("SpecialMesh")
o8 = Instance.new("Part")
o9 = Instance.new("Part")
o10 = Instance.new("SpecialMesh")
o11 = Instance.new("Part")
o12 = Instance.new("Part")
o13 = Instance.new("SpecialMesh")
o14 = Instance.new("Part")
o15 = Instance.new("Part")
o16 = Instance.new("Part")
o17 = Instance.new("Part")
o1.Name = "MODEL"
o2.Name = "Middle"
o2.Parent = o1
o2.BrickColor = BrickColor.new("Pastel brown")
o2.Transparency = 1
o2.Position = Vector3.new(-13.5356159, 3.71991396, 50.2649117)
o2.Rotation = Vector3.new(-5.66336393, -89.7626114, -5.66246414)
o2.Anchored = true
o2.FormFactor = Enum.FormFactor.Custom
o2.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
o2.CFrame = CFrame.new(-13.5356159, 3.71991396, 50.2649117, 1.75646369e-006, 1.74156298e-007, -0.999991417, -1.04150445e-007, 1, 1.60883403e-007, 0.999999762, 9.62157287e-008, 1.6223396e-006)
o2.BottomSurface = Enum.SurfaceType.Smooth
o2.TopSurface = Enum.SurfaceType.Smooth
o2.Color = Color3.new(1, 0.8, 0.6)
o3.Parent = o2
o3.Scale = Vector3.new(6.25, 6.25, 6.25)
o3.MeshType = Enum.MeshType.FileMesh
o4.Name = "Lense 1"
o4.Parent = o1
o4.Material = Enum.Material.Metal
o4.Transparency = 0.050000011920929
o4.Position = Vector3.new(-12.900528, 3.77991295, 50.5080605)
o4.Rotation = Vector3.new(-180, 20.6807137, -179.999985)
o4.Anchored = true
o4.CanCollide = false
o4.FormFactor = Enum.FormFactor.Custom
o4.Shape = Enum.PartType.Cylinder
o4.Size = Vector3.new(0.200000003, 0.320000023, 0.939999998)
o4.CFrame = CFrame.new(-12.900528, 3.77991295, 50.5080605, -0.935553849, 3.06141374e-007, 0.353159934, 3.19927466e-007, 1, 2.01617603e-008, -0.353163034, 1.1997561e-007, -0.935561478)
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
o5.Name = "Lense2"
o5.Parent = o1
o5.Material = Enum.Material.Metal
o5.Transparency = 0.050000011920929
o5.Position = Vector3.new(-12.8961124, 3.77492094, 50.0302277)
o5.Rotation = Vector3.new(-180, -23.8323021, -179.999985)
o5.Anchored = true
o5.CanCollide = false
o5.FormFactor = Enum.FormFactor.Custom
o5.Shape = Enum.PartType.Cylinder
o5.Size = Vector3.new(0.200000003, 0.330000043, 0.99000001)
o5.CFrame = CFrame.new(-12.8961124, 3.77492094, 50.0302277, -0.914722979, 2.85652249e-007, -0.404061079, 2.36339361e-007, 1, 1.37493373e-007, 0.404064298, 2.15865228e-008, -0.914730668)
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
o6.Name = "Handle"
o6.Parent = o1
o6.Material = Enum.Material.Metal
o6.BrickColor = BrickColor.new("Really black")
o6.Position = Vector3.new(-12.8799381, 3.69992495, 50.2599869)
o6.Rotation = Vector3.new(-90, 9.97842108e-006, -89.9999008)
o6.Anchored = true
o6.CanCollide = false
o6.FormFactor = Enum.FormFactor.Plate
o6.Size = Vector3.new(1, 0.400000006, 1)
o6.CFrame = CFrame.new(-12.8799381, 3.69992495, 50.2599869, 1.75646369e-006, 0.999991417, 1.74156298e-007, -1.04150445e-007, -1.60883403e-007, 1, 0.999999762, -1.6223396e-006, 9.62157287e-008)
o6.BottomSurface = Enum.SurfaceType.Weld
o6.TopSurface = Enum.SurfaceType.Smooth
o6.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
o7.Parent = o6
o7.MeshId = "http://www.roblox.com/asset/?id=5158270"
o7.Scale = Vector3.new(0.140000001, 0.170000002, 0.100000001)
o7.MeshType = Enum.MeshType.FileMesh
o8.Name = "Straps"
o8.Parent = o1
o8.Material = Enum.Material.Fabric
o8.BrickColor = BrickColor.new("Really black")
o8.Position = Vector3.new(-13.5199518, 3.48991394, 50.2599869)
o8.Rotation = Vector3.new(5.96738209e-006, 0.000100637961, 89.9999924)
o8.Anchored = true
o8.CanCollide = false
o8.FormFactor = Enum.FormFactor.Custom
o8.Shape = Enum.PartType.Cylinder
o8.Size = Vector3.new(0.200000003, 1.49000013, 1.25999999)
o8.CFrame = CFrame.new(-13.5199518, 3.48991394, 50.2599869, 1.44325043e-007, -0.999991238, 1.75646369e-006, 0.999999881, 1.31081052e-007, -1.04150445e-007, 9.48765404e-008, 1.6242019e-006, 0.999999762)
o8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
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.0666667, 0.0666667, 0.0666667)
o9.Name = "Ring2"
o9.Parent = o1
o9.BrickColor = BrickColor.new("Dark stone grey")
o9.Position = Vector3.new(-12.8061161, 3.77991295, 49.9993477)
o9.Rotation = Vector3.new(-1.48261315e-005, -66.1664276, -2.4695395e-005)
o9.Anchored = true
o9.CanCollide = false
o9.FormFactor = Enum.FormFactor.Custom
o9.Size = Vector3.new(0.600000024, 0.200000003, 1)
o9.CFrame = CFrame.new(-12.8061161, 3.77991295, 49.9993477, 0.404059976, 1.74156298e-007, -0.914723039, -1.6136562e-007, 1, 1.0455733e-007, 0.914730787, 9.62157287e-008, 0.404063195)
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.388235, 0.372549, 0.384314)
o10.Parent = o9
o10.MeshId = "http://www.roblox.com/asset/?id=3270017"
o10.Scale = Vector3.new(0.340000004, 0.300000012, 0.300000012)
o10.MeshType = Enum.MeshType.FileMesh
o11.Name = "Straps"
o11.Parent = o1
o11.Material = Enum.Material.Fabric
o11.BrickColor = BrickColor.new("Really black")
o11.Position = Vector3.new(-13.5199518, 4.00991392, 50.2599869)
o11.Rotation = Vector3.new(5.96738209e-006, 0.000100637961, 89.9999924)
o11.Anchored = true
o11.CanCollide = false
o11.FormFactor = Enum.FormFactor.Custom
o11.Shape = Enum.PartType.Cylinder
o11.Size = Vector3.new(0.200000003, 1.49000013, 1.25999999)
o11.CFrame = CFrame.new(-13.5199518, 4.00991392, 50.2599869, 1.44325043e-007, -0.999991238, 1.75646369e-006, 0.999999881, 1.31081052e-007, -1.04150445e-007, 9.48765404e-008, 1.6242019e-006, 0.999999762)
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)
o12.Name = "Ring1"
o12.Parent = o1
o12.BrickColor = BrickColor.new("Dark stone grey")
o12.Position = Vector3.new(-12.7999144, 3.76992106, 50.5299988)
o12.Rotation = Vector3.new(-179.999969, -69.3177338, -179.999985)
o12.Anchored = true
o12.CanCollide = false
o12.FormFactor = Enum.FormFactor.Custom
o12.Size = Vector3.new(0.600000024, 0.200000003, 1)
o12.CFrame = CFrame.new(-12.7999144, 3.76992106, 50.5299988, -0.353160918, 1.74156298e-007, -0.935553372, -4.22077129e-008, 1, 1.87534141e-007, 0.935561061, 9.62157287e-008, -0.353164017)
o12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o12.Color = Color3.new(0.388235, 0.372549, 0.384314)
o13.Parent = o12
o13.MeshId = "http://www.roblox.com/asset/?id=3270017"
o13.Scale = Vector3.new(0.340000004, 0.300000012, 0.300000012)
o13.MeshType = Enum.MeshType.FileMesh
o14.Name = "Breather"
o14.Parent = o1
o14.Material = Enum.Material.Metal
o14.BrickColor = BrickColor.new("Really black")
o14.Position = Vector3.new(-12.7419596, 3.69627094, 50.2550011)
o14.Rotation = Vector3.new(5.96738209e-006, 0.000100637961, -39.5510521)
o14.Anchored = true
o14.CanCollide = false
o14.FormFactor = Enum.FormFactor.Custom
o14.Shape = Enum.PartType.Cylinder
o14.Size = Vector3.new(0.600000024, 0.340000093, 0.25000003)
o14.CFrame = CFrame.new(-12.7419596, 3.69627094, 50.2550011, 0.771050453, 0.636759639, 1.75646369e-006, -0.636765182, 0.771057129, -1.04150445e-007, -1.31184265e-006, -9.5997575e-007, 0.999999762)
o14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
o14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
o14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
o14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
o15.Name = "Breather"
o15.Parent = o1
o15.Material = Enum.Material.Metal
o15.BrickColor = BrickColor.new("Really black")
o15.Position = Vector3.new(-12.5337915, 3.51434994, 50.2550011)
o15.Rotation = Vector3.new(5.96738209e-006, 0.000100637961, -39.5510521)
o15.Anchored = true
o15.CanCollide = false
o15.FormFactor = Enum.FormFactor.Custom
o15.Shape = Enum.PartType.Cylinder
o15.Size = Vector3.new(0.200000003, 0.340000093, 0.350000024)
o15.CFrame = CFrame.new(-12.5337915, 3.51434994, 50.2550011, 0.771050453, 0.636759639, 1.75646369e-006, -0.636765182, 0.771057129, -1.04150445e-007, -1.31184265e-006, -9.5997575e-007, 0.999999762)
o15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
o15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
o15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
o15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines