-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGrab V4 (1)
4926 lines (4680 loc) · 178 KB
/
Grab V4 (1)
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
local player = game:GetService('Players').LocalPlayer
local rightclone = Instance.new('Motor6D')
rightclone.Name = "Right Shoulder"
rightclone.C0 = CFrame.new(1, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
rightclone.C1 = CFrame.new(-0.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
local leftclone = Instance.new('Motor6D')
leftclone.Name = "Left Shoulder"
leftclone.C0 = CFrame.new(-1, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
leftclone.C1 = CFrame.new(0.5, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
local leftlegclone = Instance.new('Motor6D')
leftlegclone.Name = "Left Hip"
leftlegclone.C0 = CFrame.new(-1, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
leftlegclone.C1 = CFrame.new(-0.5, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
local rightlegclone = Instance.new('Motor6D')
rightlegclone.Name = "Right Hip"
rightlegclone.C0 = CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
rightlegclone.C1 = CFrame.new(0.5, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
local torsoclone = Instance.new('Motor6D')
torsoclone.Name = "RootJoint"
torsoclone.C0 = CFrame.new(0, 0, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
torsoclone.C1 = CFrame.new(0, 0, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
local mouse = player:GetMouse()
local rag1 = false
local rag2 = false
local firsttime = true
local firsttime2 = true
local firsttime3 = true
local firsttime4 = true
local firsttime5 = true
local childlock = false
local math1 = math.random(1,5)
math1 = math1+(math.random(0,9)/10)
local math2 = math.random(1,15)
math2 = math2+(math.random(0,9)/10)
local math3 = math.random(1,10)
math3 = math3+(math.random(0,9)/10)
local math4 = math.random(5,100)
math4 = math4+(math.random(0,9)/10)
local answer = (math4+(math1*math3))/(math1*math2)
answer = 69
answer = 69
print([[To be fair, you have to have a very high IQ to understand Rick and Morty.
The humor is extremely subtle, and without a solid grasp of theoretical physics most of the jokes will go over a typical viewer's head.
There's also Rick's nihilistic outlook, which is deftly woven into his characterisation -
his personal philosophy draws heavily from Narodnaya Volya literature, for instance.
The fans understand this stuff;
they have the intellectual capacity to truly appreciate the depths of these jokes, to realize that they're not just funny- they say something deep about LIFE.
As a consequence people who dislike Rick and Morty truly ARE idiots-
of course they wouldn't appreciate, for instance, the humour in Rick's existencial catchphrase "Wubba Lubba Dub Dub," which itself is a cryptic reference to Turgenev's Russian epic Fathers and Sons.
I'm smirking right now just imagining one of those addlepated simpletons scratching their heads in confusion as Dan Harmon's genius unfolds itself on their television screens.
What fools... how I pity them.
And yes by the way, I DO have a Rick and Morty tattoo.
And no, you cannot see it.
It's for the ladies' eyes only-
And even they have to demonstrate that they're within ]]..answer..[[ IQ points of my own (preferably lower) beforehand.]])
local rekt = {}
-- Objects
local MainGUI = Instance.new("ScreenGui")
local Customize = Instance.new("TextButton")
local Frame = Instance.new("Frame")
local TextLabel = Instance.new("TextLabel")
local Frame_2 = Instance.new("Frame")
local Frame_3 = Instance.new("Frame")
local ImageLabel = Instance.new("ImageLabel")
local R = Instance.new("TextBox")
local G = Instance.new("TextBox")
local B = Instance.new("TextBox")
local TextLabel_2 = Instance.new("TextLabel")
local TextLabel_3 = Instance.new("TextLabel")
local TextLabel_4 = Instance.new("TextLabel")
local Slider = Instance.new("Frame")
local Slidee = Instance.new("ImageButton")
local ChildLock = Instance.new("Frame")
local TextLabel_5 = Instance.new("TextLabel")
local mathz = Instance.new("TextLabel")
local TextBox = Instance.new("TextBox")
local Black = Instance.new('Frame')
local fps = Instance.new('TextLabel')
-- Properties
MainGUI.Name = "MainGUI"
MainGUI.ResetOnSpawn = false
pcall(function()
MainGUI.Parent = player.PlayerGui
end)
pcall(function()
MainGUI.Parent = game.CoreGui
game.CoreGui.RobloxGui.Backpack.Hotbar.AnchorPoint = Vector2.new(0.5,0.5)
game.CoreGui.RobloxGui.Backpack.Hotbar.Position = UDim2.new(0.5,0,0.85,0)
end)
Customize.Name = "Customize"
Customize.Parent = MainGUI
Customize.BackgroundColor3 = Color3.new(0, 0.776471, 0.282353)
Customize.BorderSizePixel = 0
Customize.Position = UDim2.new(0.15, 0, 0.9, 0)
Customize.Size = UDim2.new(0.699999988, 0, 0.100000001, 0)
Customize.Font = Enum.Font.SourceSans
Customize.FontSize = Enum.FontSize.Size14
Customize.Text = "Customize V4"
Customize.TextColor3 = Color3.new(1, 1, 1)
Customize.TextScaled = true
Customize.TextSize = 14
Customize.TextWrapped = true
Frame.Parent = Customize
Frame.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
Frame.BorderSizePixel = 0
Frame.Position = UDim2.new(0, 0, 1, 0)
Frame.Size = UDim2.new(1, 0, 6.5, 0)
TextLabel.Parent = Frame
TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
TextLabel.BackgroundTransparency = 1
TextLabel.Position = UDim2.new(0, 0, 0.100000001, 0)
TextLabel.Size = UDim2.new(0.300000012, 0, 0.200000003, 0)
TextLabel.Font = Enum.Font.SourceSansLight
TextLabel.FontSize = Enum.FontSize.Size14
TextLabel.Text = "Blood Color: [255, 255, 255]"
TextLabel.TextColor3 = Color3.new(1, 1, 1)
TextLabel.TextScaled = true
TextLabel.TextSize = 14
TextLabel.TextWrapped = true
TextLabel.TextXAlignment = Enum.TextXAlignment.Right
Frame_2.Parent = TextLabel
Frame_2.BackgroundColor3 = Color3.new(0.458824, 0, 0)
Frame_2.BorderSizePixel = 0
Frame_2.Position = UDim2.new(1.04999995, 0, 0, 0)
Frame_2.Size = UDim2.new(1, 0, 1, 0)
Frame_2.SizeConstraint = Enum.SizeConstraint.RelativeYY
Frame_3.Parent = Frame
Frame_3.BackgroundColor3 = Color3.new(1, 1, 1)
Frame_3.BackgroundTransparency = 1
Frame_3.BorderSizePixel = 0
Frame_3.Position = UDim2.new(0.0500000007, 0, 0.449999988, 0)
Frame_3.Size = UDim2.new(0.5, 0, 0.5, 0)
Frame_3.SizeConstraint = Enum.SizeConstraint.RelativeYY
ImageLabel.Parent = Frame_3
ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
ImageLabel.BackgroundTransparency = 1
ImageLabel.Size = UDim2.new(1, 0, 1, 0)
ImageLabel.Image = "rbxassetid://328298876"
R.Name = "R"
R.Parent = Frame_3
R.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
R.BorderSizePixel = 0
R.Position = UDim2.new(1.39999998, 0, 0, 0)
R.Size = UDim2.new(0.75, 0, 0.300000012, 0)
R.Font = Enum.Font.SourceSans
R.FontSize = Enum.FontSize.Size14
R.Text = "Input"
R.TextColor3 = Color3.new(1, 1, 1)
R.TextScaled = true
R.TextSize = 14
R.TextWrapped = true
R.TextXAlignment = Enum.TextXAlignment.Left
G.Name = "G"
G.Parent = Frame_3
G.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
G.BorderSizePixel = 0
G.Position = UDim2.new(1.39999998, 0, 0.349999994, 0)
G.Size = UDim2.new(0.75, 0, 0.300000012, 0)
G.Font = Enum.Font.SourceSans
G.FontSize = Enum.FontSize.Size14
G.Text = "Input"
G.TextColor3 = Color3.new(1, 1, 1)
G.TextScaled = true
G.TextSize = 14
G.TextWrapped = true
G.TextXAlignment = Enum.TextXAlignment.Left
B.Name = "B"
B.Parent = Frame_3
B.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
B.BorderSizePixel = 0
B.Position = UDim2.new(1.39999998, 0, 0.699999988, 0)
B.Size = UDim2.new(0.75, 0, 0.300000012, 0)
B.Font = Enum.Font.SourceSans
B.FontSize = Enum.FontSize.Size14
B.Text = "Input"
B.TextColor3 = Color3.new(1, 1, 1)
B.TextScaled = true
B.TextSize = 14
B.TextWrapped = true
B.TextXAlignment = Enum.TextXAlignment.Left
TextLabel_2.Parent = Frame_3
TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
TextLabel_2.BackgroundTransparency = 1
TextLabel_2.Position = UDim2.new(1.04999995, 0, 0, 0)
TextLabel_2.Size = UDim2.new(0.300000012, 0, 0.300000012, 0)
TextLabel_2.Font = Enum.Font.SourceSansLight
TextLabel_2.FontSize = Enum.FontSize.Size14
TextLabel_2.Text = "R"
TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
TextLabel_2.TextScaled = true
TextLabel_2.TextSize = 14
TextLabel_2.TextWrapped = true
TextLabel_3.Parent = Frame_3
TextLabel_3.BackgroundColor3 = Color3.new(1, 1, 1)
TextLabel_3.BackgroundTransparency = 1
TextLabel_3.Position = UDim2.new(1.04999995, 0, 0.349999994, 0)
TextLabel_3.Size = UDim2.new(0.300000012, 0, 0.300000012, 0)
TextLabel_3.Font = Enum.Font.SourceSansLight
TextLabel_3.FontSize = Enum.FontSize.Size14
TextLabel_3.Text = "G"
TextLabel_3.TextColor3 = Color3.new(1, 1, 1)
TextLabel_3.TextScaled = true
TextLabel_3.TextSize = 14
TextLabel_3.TextWrapped = true
TextLabel_4.Parent = Frame_3
TextLabel_4.BackgroundColor3 = Color3.new(1, 1, 1)
TextLabel_4.BackgroundTransparency = 1
TextLabel_4.Position = UDim2.new(1.04999995, 0, 0.699999988, 0)
TextLabel_4.Size = UDim2.new(0.300000012, 0, 0.300000012, 0)
TextLabel_4.Font = Enum.Font.SourceSansLight
TextLabel_4.FontSize = Enum.FontSize.Size14
TextLabel_4.Text = "B"
TextLabel_4.TextColor3 = Color3.new(1, 1, 1)
TextLabel_4.TextScaled = true
TextLabel_4.TextSize = 14
TextLabel_4.TextWrapped = true
Slider.Name = "Slider"
Slider.Parent = Frame
Slider.BackgroundColor3 = Color3.new(0.121569, 0.121569, 0.121569)
Slider.Position = UDim2.new(0.0500000007, 0, 0.375, 0)
Slider.Size = UDim2.new(0.230000004, 0, 0.00999999978, 0)
Slidee.Name = "Slidee"
Slidee.Parent = Slider
Slidee.AnchorPoint = Vector2.new(0.5, 0.5)
Slidee.BackgroundColor3 = Color3.new(0.0941177, 0.0941177, 0.0941177)
Slidee.BorderSizePixel = 0
Slidee.Size = UDim2.new(0.0299999993, 0, 7, 0)
Slidee.ImageTransparency = 1
ChildLock.Name = "ChildLock"
ChildLock.Parent = Frame
ChildLock.Active = true
ChildLock.BackgroundColor3 = Color3.new(0, 0, 0)
ChildLock.BackgroundTransparency = 0.60000002384186
ChildLock.BorderSizePixel = 0
ChildLock.Position = UDim2.new(0.600000024, 0, 0, 0)
ChildLock.Size = UDim2.new(0.400000006, 0, 1, 0)
ChildLock.ZIndex = 2
TextLabel_5.Parent = ChildLock
TextLabel_5.BackgroundColor3 = Color3.new(1, 1, 1)
TextLabel_5.BackgroundTransparency = 1
TextLabel_5.BorderSizePixel = 0
TextLabel_5.Position = UDim2.new(0.125, 0, 0.150000006, 0)
TextLabel_5.Size = UDim2.new(0.75, 0, 0.200000003, 0)
TextLabel_5.ZIndex = 3
TextLabel_5.Font = Enum.Font.SourceSans
TextLabel_5.FontSize = Enum.FontSize.Size14
TextLabel_5.Text = "do this math to disable child lock"
TextLabel_5.TextColor3 = Color3.new(1, 1, 1)
TextLabel_5.TextScaled = true
TextLabel_5.TextSize = 14
TextLabel_5.TextWrapped = true
mathz.Name = "mathz"
mathz.Parent = ChildLock
mathz.BackgroundColor3 = Color3.new(1, 1, 1)
mathz.BackgroundTransparency = 1
mathz.Position = UDim2.new(0.125, 0, 0.449999988, 0)
mathz.Size = UDim2.new(0.75, 0, 0.200000003, 0)
mathz.ZIndex = 3
mathz.Font = Enum.Font.SourceSans
mathz.FontSize = Enum.FontSize.Size14
mathz.Text = math1.."("..math2.."r - "..math3..") = "..math4
mathz.TextColor3 = Color3.new(1, 1, 1)
mathz.TextScaled = true
mathz.TextSize = 14
mathz.TextWrapped = true
fps.Name = "fps"
fps.Parent = Frame
fps.BackgroundColor3 = Color3.new(1, 1, 1)
fps.BackgroundTransparency = 1
fps.Size = UDim2.new(0.75, 0, 0.05, 0)
fps.ZIndex = 3
fps.Font = Enum.Font.SourceSansLight
fps.FontSize = Enum.FontSize.Size14
fps.Text = "FPS: N/A"
fps.TextColor3 = Color3.new(1, 1, 1)
fps.TextScaled = true
fps.TextSize = 14
fps.TextWrapped = true
fps.TextXAlignment = Enum.TextXAlignment.Left
TextBox.Parent = ChildLock
TextBox.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
TextBox.BorderSizePixel = 0
TextBox.Position = UDim2.new(0.200000003, 0, 0.699999988, 0)
TextBox.Size = UDim2.new(0.600000024, 0, 0.200000003, 0)
TextBox.ZIndex = 3
TextBox.Font = Enum.Font.SourceSans
TextBox.FontSize = Enum.FontSize.Size14
TextBox.Text = "Answer (rounded to nearest tenth)"
TextBox.TextColor3 = Color3.new(1, 1, 1)
TextBox.TextScaled = true
TextBox.TextSize = 14
TextBox.TextWrapped = true
TextBox.TextXAlignment = Enum.TextXAlignment.Left
Black.Size = UDim2.new(1,0,1,0)
Black.BackgroundTransparency = 1
Black.BorderSizePixel = 0
Black.BackgroundColor3 = Color3.new(0,0,0)
Black.Parent = Frame_3
TextBox.FocusLost:connect(function()
if TextBox.Text == tostring(answer) or TextBox.Text == "r="..tostring(answer) or TextBox.Text == "r= "..tostring(answer) or TextBox.Text == "r = "..tostring(answer) or TextBox.Text == "r= "..tostring(answer) or TextBox.Text == tostring(answer).."=r" or TextBox.Text == tostring(answer).." =r" or TextBox.Text == tostring(answer).."= r" or TextBox.Text == tostring(answer).." = r" then
ChildLock:Destroy()
childlock = false
notify("Child lock disabled, press B to enable dildo mode.",true)
end
end)
local mousedown = false
mouse.Button1Down:connect(function()
mousedown = true
end)
mouse.Button1Up:connect(function()
mousedown = false
slidee = false
end)
Slidee.MouseButton1Down:connect(function()
slidee = true
end)
Slidee.MouseButton1Up:connect(function()
slidee = false
end)
mouse.Move:connect(function()
if mousedown then
if mouse.X >= ImageLabel.AbsolutePosition.X and mouse.X <= ImageLabel.AbsolutePosition.X+ ImageLabel.AbsoluteSize.X and mouse.Y >= ImageLabel.AbsolutePosition.Y and mouse.Y <= ImageLabel.AbsolutePosition.Y+ ImageLabel.AbsoluteSize.Y then
local newX = ImageLabel.AbsoluteSize.X-(mouse.X-ImageLabel.AbsolutePosition.X)
local newY = ImageLabel.AbsoluteSize.Y-(mouse.Y-ImageLabel.AbsolutePosition.Y)
local newcolor = Color3.fromHSV(newX/ImageLabel.AbsoluteSize.X,newY/ImageLabel.AbsoluteSize.Y,Black.Transparency)
Frame_2.BackgroundColor3 = newcolor
TextLabel.Text = "Blood Color: ["..math.floor(255*newcolor.r)..", "..math.floor(255*newcolor.g)..", "..math.floor(255*newcolor.b).."]"
end
end
if slidee then
local ree = mouse.X
if ree < Slider.AbsolutePosition.X then
ree = Slider.AbsolutePosition.X
elseif ree > Slider.AbsolutePosition.X+Slider.AbsoluteSize.X then
ree = Slider.AbsolutePosition.X+Slider.AbsoluteSize.X
end
Slidee.Position = UDim2.new(0,ree-Slider.AbsolutePosition.X,0,0)
Black.Transparency = 1-(Slidee.Position.X.Offset/Slider.AbsoluteSize.X)
end
end)
R.FocusLost:connect(function()
if R.Text ~= "Input" then
if tonumber(R.Text) then
if tonumber(R.Text) > 255 then
R.Text = "255"
end
local newcolor = Color3.new(tonumber(R.Text/255),Frame_2.BackgroundColor3.g,Frame_2.BackgroundColor3.b)
Frame_2.BackgroundColor3 = newcolor
TextLabel.Text = "Blood Color: ["..math.floor(255*newcolor.r)..", "..math.floor(255*newcolor.g)..", "..math.floor(255*newcolor.b).."]"
R.Text = "Input"
end
end
end)
G.FocusLost:connect(function()
if G.Text ~= "Input" then
if tonumber(G.Text) then
if tonumber(G.Text) > 255 then
G.Text = "255"
end
local newcolor = Color3.new(Frame_2.BackgroundColor3.r,tonumber(G.Text/255),Frame_2.BackgroundColor3.b)
Frame_2.BackgroundColor3 = newcolor
TextLabel.Text = "Blood Color: ["..math.floor(255*newcolor.r)..", "..math.floor(255*newcolor.g)..", "..math.floor(255*newcolor.b).."]"
G.Text = "Input"
end
end
end)
B.FocusLost:connect(function()
if B.Text ~= "Input" then
if tonumber(B.Text) then
if tonumber(B.Text) > 255 then
B.Text = "255"
end
local newcolor = Color3.new(Frame_2.BackgroundColor3.r,Frame_2.BackgroundColor3.g,tonumber(B.Text/255))
Frame_2.BackgroundColor3 = newcolor
TextLabel.Text = "Blood Color: ["..math.floor(255*newcolor.r)..", "..math.floor(255*newcolor.g)..", "..math.floor(255*newcolor.b).."]"
B.Text = "Input"
end
end
end)
local open = false
local opening = false
Customize.MouseButton1Click:connect(function()
if opening == false then
if open == false then
open = true
opening = true
Customize:TweenPosition(UDim2.new(0.15, 0, 0.1, 0),Enum.EasingDirection.Out,Enum.EasingStyle.Quint,1)
wait(1)
opening = false
else
open = false
opening = true
Customize:TweenPosition(UDim2.new(0.15, 0, 0.9, 0),Enum.EasingDirection.Out,Enum.EasingStyle.Quint,1)
wait(1)
opening = false
end
end
end)
Frame_2.BackgroundColor3 = Color3.fromRGB(117,0,0)
function removewelds(part)
for i,v in pairs(part:GetChildren()) do
if v:IsA('Weld') then v:Destroy() end
end
end
function notify(msg,remove)
local coru= coroutine.wrap(function()
for i,v in pairs(MainGUI:GetChildren()) do
if v:IsA('TextLabel') then v:Destroy() end
end
if msg then
local TextLabel = Instance.new("TextLabel")
local Frame = Instance.new("Frame")
-- Properties
TextLabel.Parent = MainGUI
TextLabel.BackgroundColor3 = Color3.new(0.227451, 0.227451, 0.227451)
TextLabel.BorderSizePixel = 0
TextLabel.Position = UDim2.new(0.25, 0, 0.05, -10)
TextLabel.Size = UDim2.new(0.5, 0, 0.1, 0)
TextLabel.Font = Enum.Font.SourceSans
TextLabel.FontSize = Enum.FontSize.Size60
TextLabel.TextColor3 = Color3.new(1, 1, 1)
TextLabel.TextSize = 50
TextLabel.Transparency = 1
TextLabel.TextScaled = true
TextLabel.TextYAlignment = Enum.TextYAlignment.Top
TextLabel.Text = ""
TextLabel.TextXAlignment = Enum.TextXAlignment.Left
Frame.Parent = TextLabel
Frame.BackgroundColor3 = Color3.new(0.192157, 0.192157, 0.192157)
Frame.BorderSizePixel = 0
Frame.Transparency = 1
Frame.Position = UDim2.new(0, 0, 1,0)
Frame.Size = UDim2.new(1, 0, 0, 5)
for i=1,10 do
TextLabel.Transparency = TextLabel.Transparency-0.1
TextLabel.Position = TextLabel.Position+UDim2.new(0,0,0,1)
Frame.Transparency = Frame.Transparency-0.1
wait()
end
for i=1,#msg do
TextLabel.Text = string.sub(msg,1,i)
wait()
end
wait(1)
if remove ~= true then
for i=1,10 do
TextLabel.Transparency = TextLabel.Transparency+0.1
TextLabel.Position = TextLabel.Position-UDim2.new(0,0,0,1)
Frame.Transparency = Frame.Transparency+0.1
wait()
end
TextLabel:Destroy()
end
end
end)
coru()
end
if workspace.FilteringEnabled == false then
if workspace:PGSIsEnabled() then
notify('Press Z to equip. Created by mustardfoot and Tollonis.',true)
else
notify('(this game is really old or something and has the shitty physics so a lot of things wont work sorry) Press Z to equip. Created by mustardfoot and Tollonis.',true)
end
else
notify('LOL this game has filtering enabled so it literally wont work here')
end
local handProperties = {
{"LimitsEnabled", true};
{"UpperAngle",0};
{"LowerAngle",0};
}
local shinProperties = {
{"LimitsEnabled", true};
{"UpperAngle", 0};
{"LowerAngle", -75};
}
local footProperties = {
{"LimitsEnabled", true};
{"UpperAngle", 15};
{"LowerAngle", -45};
}
function bleed(frick,OwO)
while frick.Parent ~= nil and frick.Parent.Parent ~= nil do
local reeee = coroutine.wrap(function()
local thing = Instance.new('Part',workspace)
thing.Size = Vector3.new(0.2,0.2,0.2)
thing.CFrame = frick.CFrame
thing.Transparency = 1
thing.BrickColor = BrickColor.new(Frame_2.BackgroundColor3)
thing.Material = Enum.Material.SmoothPlastic
thing.Name = "Blood"
thing.CanCollide =false
thing:BreakJoints()
local rawrxd = Instance.new('BodyForce',thing)
rawrxd.Force = frick.CFrame.upVector*(math.random()*2)+Vector3.new(math.random(-5, 5)/10,1.5,0)
local coru = coroutine.wrap(function()
wait(0.01)
rawrxd:Destroy()
end)
coru()
local ree = Instance.new('ParticleEmitter',thing)
if OwO ~= true then
ree.Color = ColorSequence.new({ColorSequenceKeypoint.new(0,Frame_2.BackgroundColor3),ColorSequenceKeypoint.new(1,Frame_2.BackgroundColor3)})
else
ree.Color = ColorSequence.new({ColorSequenceKeypoint.new(0,Color3.new(1,1,1)),ColorSequenceKeypoint.new(1,Color3.new(1,1,1))})
end
ree.Size = NumberSequence.new({NumberSequenceKeypoint.new(0,0.1),NumberSequenceKeypoint.new(1,0.1)})
ree.Texture = 'rbxassetid://867743272'
ree.Lifetime = NumberRange.new(0.4)
ree.Rate = 50
ree.LockedToPart = true
ree.Speed = NumberRange.new(0, 2)
thing.Touched:connect(function(tou)
if tou.Parent and tou.Parent:IsA('Tool') == false and tou.Parent.Parent:FindFirstChildOfClass('Humanoid') == nil and tou.Parent:FindFirstChildOfClass('Humanoid') == nil and tou.Name ~= "Blood" and tou.Parent.Name ~= "Projectile" and tou.Parent.Name ~= "big ass knife" and tou.Parent ~= player.Character and tou.Parent.ClassName ~= "Accessory" and tou.Parent.Name ~= "bitch ass knife" and tou.Parent.Name ~= 'handle' and tou.Name ~= "blade" and tou.Name ~= 'handle' and tou.Name ~= "Projectile" and tou.Parent.Name ~= "Projectile" then
local pos = Vector3.new(thing.Position.X,(tou.Position.Y+(tou.Size.Y/2))+0.02,thing.Position.Z)
local Point1 = pos-Vector3.new(0.01,0.01,0.01)
local Point2 = pos+Vector3.new(0.01,0.01,0.01)
local Region = Region3.new(Point1,Point2)
for _,Part in pairs(game.Workspace:FindPartsInRegion3(Region,nil,math.huge)) do
if Part.Name == "BloodPuddle" then
tou = Part
end
end
thing:Destroy()
if tou.Name == "BloodPuddle" then
if tou.Size.X < 1 then
pcall(function()
tou.Sound:Play()
end)
end
local reee = tou.CFrame
if tou.Transparency > -0.2 then
tou.Transparency = tou.Transparency -0.1
end
if tou.Size.X < 5 then
tou.Size = tou.Size+Vector3.new(0.1,0,0.1)
tou.CFrame = reee
end
elseif tou.CanCollide == true then
local bloodlol = Instance.new('Part',workspace)
local sound = Instance.new('Sound',bloodlol)
sound.SoundId = 'rbxassetid://685857471'
sound.Volume = 0.025
sound:Play()
bloodlol.Size=Vector3.new(1,0.2,1)
bloodlol.Name = "BloodPuddle"
bloodlol.Anchored = true
bloodlol.CanCollide = false
bloodlol.Material = Enum.Material.SmoothPlastic
if OwO ~= true then
bloodlol.Color = Frame_2.BackgroundColor3
else
bloodlol.Color = Color3.new(1,1,1)
end
local cyl = Instance.new('CylinderMesh',bloodlol)
cyl.Scale = Vector3.new(1,0.1,1)
bloodlol.CFrame = CFrame.new(pos)
local coru=coroutine.wrap(function()
while bloodlol.Parent ~= nil do
if bloodlol.Transparency < 1 then
bloodlol.Transparency = bloodlol.Transparency+0.05
else
bloodlol:Destroy()
end
wait(0.1)
end
end)
coru()
end
end
end)
local coru = coroutine.wrap(function()
wait(1)
thing:Destroy()
end)
coru()
end)
reeee()
wait()
end
end
function stun(char)
local found = false
pcall(function()
char:FindFirstChildOfClass('Humanoid'):ChangeState(Enum.HumanoidStateType.Physics)
end)
for i,v in pairs(rekt) do
if v == char then
found = true
end
end
if found == false then
table.insert(rekt,char)
end
end
function unstun(char)
for i,v in pairs(rekt) do
if v == char then
if v:FindFirstChildOfClass('Humanoid') and v:FindFirstChildOfClass('Humanoid').Health>0 then
v:FindFirstChildOfClass('Humanoid'):ChangeState(Enum.HumanoidStateType.Running)
v:FindFirstChildOfClass('Humanoid').PlatformStand = false
v:FindFirstChildOfClass('Humanoid').Sit = false
v:FindFirstChildOfClass('Humanoid').Jump = true
v:FindFirstChildOfClass('Humanoid').JumpPower = 50
v:FindFirstChildOfClass('Humanoid').WalkSpeed = 16
v:FindFirstChildOfClass('Humanoid').Name = "Humanoid"
end
table.remove(rekt,i)
end
end
end
function recurse(root,callback,i)
i= i or 0
for _,v in pairs(root:GetChildren()) do
i = i + 1
callback(i,v)
if #v:GetChildren() > 0 then
i = recurse(v,callback,i)
end
end
return i
end
function ragdollJoint(character, part0, part1, attachmentName, className, properties)
if character:FindFirstChild("RagdollConstraint"..part1.Name) == nil then
if character:FindFirstChild('HumanoidRootPart')then
character.HumanoidRootPart.CanCollide = false
end
for i,v in pairs(character:GetChildren()) do
if v:IsA("MeshPart") and (v.MeshId == 'http://www.roblox.com/asset/?id=553602991' or v.MeshId == 'http://www.roblox.com/asset/?id=553602977' or v.MeshId == 'http://www.roblox.com/asset/?id=553602987') then
v.Size = Vector3.new(1,1,1)
end
end
recurse(character, function(_,v)
if v:IsA("Attachment") and v.Parent.Name ~= "ayybleed" then
v.Axis = Vector3.new(0, 1, 0)
v.SecondaryAxis = Vector3.new(0, 0, 1)
v.Rotation = Vector3.new(0, 0, 0)
end
end)
if part1:FindFirstChildOfClass('Motor6D') then
part1:FindFirstChildOfClass('Motor6D'):Destroy()
end
if attachmentName ~= "NeckAttachment" then
attachmentName = attachmentName.."RigAttachment"
end
local constraint = Instance.new(className.."Constraint")
constraint.Attachment0 = part0:FindFirstChild(attachmentName)
constraint.Attachment1 = part1:FindFirstChild(attachmentName)
constraint.Name = "RagdollConstraint"..part1.Name
if character:FindFirstChildOfClass('Humanoid').Health > 0 then
local collidepart = Instance.new('Part',part1)
collidepart.Size = part1.Size/2
if string.find(string.lower(part1.Name),"upper") then
if string.find(string.lower(part1.Name),"leg") then
collidepart.Size = part1.Size/3
else
collidepart.Size = part1.Size/2.5
end
end
collidepart.CanCollide = true
collidepart.Name = "Collision"
collidepart.Anchored = false
collidepart.Transparency = 1
collidepart.CFrame = part1.CFrame
collidepart:BreakJoints()
local attachment0 = Instance.new('Attachment',part1)
local attachment1 = Instance.new('Attachment',collidepart)
if attachment0 and attachment1 then
local constraint = Instance.new("HingeConstraint")
constraint.Attachment0 = attachment0
constraint.Attachment1 = attachment1
constraint.LimitsEnabled = true
constraint.UpperAngle = 0
constraint.LowerAngle = 0
constraint.Parent = character
end
if string.find(string.lower(part1.Name),"upper") then
if string.find(string.lower(part1.Name),"leg") then
attachment0.Position = Vector3.new(0,0.01,0)
else
attachment0.Position = Vector3.new(0,0.25,0)
end
else
attachment0.Position = Vector3.new(0,-0.1,0)
end
end
for _,propertyData in next,properties or {} do
constraint[propertyData[1]] = propertyData[2]
end
constraint.Parent = character
end
end
function R6ragdollJoint(character,limbname,attached,heded)
pcall(function()
if limbname == "Right Arm" and character:FindFirstChild("Right Arm") and character:FindFirstChild("Torso") and character.Torso:FindFirstChild("Right ArmRagdollConstraint") == nil and character[limbname]:FindFirstChild("Right ArmRagdollConstraint") == nil then
local torsoatt = Instance.new('Attachment',character.Torso)
torsoatt.Name = limbname.."RagdollConstraint"
torsoatt.Position = Vector3.new(1.45,0.768,-0.009)
torsoatt.Axis = Vector3.new(1,0,0)
torsoatt.SecondaryAxis = Vector3.new(0,1,0)
local limbatt = Instance.new("Attachment",character[limbname])
limbatt.Position = Vector3.new(-0.086, 0.755, -0.007)
limbatt.Name = limbname.."RagdollConstraint"
limbatt.Axis = Vector3.new(1,0,0)
limbatt.SecondaryAxis = Vector3.new(0,1,0)
local ballc = Instance.new('BallSocketConstraint',character)
ballc.Name = "RightArmRagdollRig"
ballc.Attachment0 = torsoatt
ballc.Attachment1 = limbatt
local part1 = character[limbname]
if character:FindFirstChildOfClass('Humanoid').Health > 0 then
local collidepart = Instance.new('Part',part1)
collidepart.Size = part1.Size/1.5
collidepart.CanCollide = true
collidepart.Name = "Collision"
collidepart.Anchored = false
collidepart.Transparency = 1
collidepart.CFrame = part1.CFrame
collidepart:BreakJoints()
local attachment0 = Instance.new('Attachment',part1)
local attachment1 = Instance.new('Attachment',collidepart)
if attachment0 and attachment1 then
local constraint = Instance.new("HingeConstraint")
constraint.Attachment0 = attachment0
constraint.Attachment1 = attachment1
constraint.LimitsEnabled = true
constraint.UpperAngle = 0
constraint.LowerAngle = 0
constraint.Parent = character
end
end
if character.Torso:FindFirstChild('Right Shoulder') then
character.Torso:FindFirstChild('Right Shoulder'):Destroy()
end
elseif limbname == "Left Arm" and character:FindFirstChild("Left Arm") and character:FindFirstChild("Torso") and character.Torso:FindFirstChild("Left ArmRagdollConstraint") == nil and character[limbname]:FindFirstChild("Left ArmRagdollConstraint") == nil then
local torsoatt = Instance.new('Attachment',character.Torso)
torsoatt.Name = limbname.."RagdollConstraint"
torsoatt.Position = Vector3.new(-1.45,0.768,-0.009)
torsoatt.Axis = Vector3.new(1,0,0)
torsoatt.SecondaryAxis = Vector3.new(0,1,0)
local limbatt = Instance.new("Attachment",character[limbname])
limbatt.Position = Vector3.new(-0.086, 0.755, -0.007)
limbatt.Name = limbname.."RagdollConstraint"
limbatt.Axis = Vector3.new(1,0,0)
limbatt.SecondaryAxis = Vector3.new(0,1,0)
local ballc = Instance.new('BallSocketConstraint',character)
ballc.Name = "LeftArmRagdollRig"
ballc.Attachment0 = torsoatt
ballc.Attachment1 = limbatt
local part1 = character[limbname]
if character:FindFirstChildOfClass('Humanoid').Health > 0 then
local collidepart = Instance.new('Part',part1)
collidepart.Size = part1.Size/1.5
collidepart.CanCollide = true
collidepart.Name = "Collision"
collidepart.Anchored = false
collidepart.Transparency = 1
collidepart.CFrame = part1.CFrame
collidepart:BreakJoints()
local attachment0 = Instance.new('Attachment',part1)
local attachment1 = Instance.new('Attachment',collidepart)
if attachment0 and attachment1 then
local constraint = Instance.new("HingeConstraint")
constraint.Attachment0 = attachment0
constraint.Attachment1 = attachment1
constraint.LimitsEnabled = true
constraint.UpperAngle = 0
constraint.LowerAngle = 0
constraint.Parent = character
end
end
if character.Torso:FindFirstChild('Left Shoulder') then
character.Torso:FindFirstChild('Left Shoulder'):Destroy()
end
elseif limbname == "Right Leg" and character:FindFirstChild("Right Leg") and character:FindFirstChild("Torso") and character.Torso:FindFirstChild("Right LegRagdollConstraint") == nil and character[limbname]:FindFirstChild("Right LegRagdollConstraint") == nil then
stun(character)
local torsoatt = Instance.new('Attachment',character.Torso)
torsoatt.Name = limbname.."RagdollConstraint"
torsoatt.Position = Vector3.new(0.45, -1.242, -0.009)
torsoatt.Axis = Vector3.new(1,0,0)
torsoatt.SecondaryAxis = Vector3.new(0,1,0)
local limbatt = Instance.new("Attachment",character[limbname])
limbatt.Position = Vector3.new(-0.086, 0.755, -0.007)
limbatt.Name = limbname.."RagdollConstraint"
limbatt.Axis = Vector3.new(1,0,0)
limbatt.SecondaryAxis = Vector3.new(0,1,0)
local ballc = Instance.new('BallSocketConstraint',character)
ballc.Name = "RightLegRagdollRig"
ballc.Attachment0 = torsoatt
ballc.Attachment1 = limbatt
local part1 = character[limbname]
if character:FindFirstChildOfClass('Humanoid').Health > 0 then
local collidepart = Instance.new('Part',part1)
collidepart.Size = part1.Size/1.5
collidepart.CanCollide = true
collidepart.Name = "Collision"
collidepart.Anchored = false
collidepart.Transparency = 1
collidepart.CFrame = part1.CFrame
collidepart:BreakJoints()
local attachment0 = Instance.new('Attachment',part1)
local attachment1 = Instance.new('Attachment',collidepart)
if attachment0 and attachment1 then
local constraint = Instance.new("HingeConstraint")
constraint.Attachment0 = attachment0
constraint.Attachment1 = attachment1
constraint.LimitsEnabled = true
constraint.UpperAngle = 0
constraint.LowerAngle = 0
constraint.Parent = character
end
end
if character.Torso:FindFirstChild('Right Hip') then
character.Torso:FindFirstChild('Right Hip'):Destroy()
end
elseif limbname == "Left Leg" and character:FindFirstChild("Left Leg") and character:FindFirstChild("Torso") and character.Torso:FindFirstChild("Left LegRagdollConstraint") == nil and character[limbname]:FindFirstChild("Left LegRagdollConstraint") == nil then
stun(character)
local torsoatt = Instance.new('Attachment',character.Torso)
torsoatt.Name = limbname.."RagdollConstraint"
torsoatt.Position = Vector3.new(-0.45, -1.242, -0.009)
torsoatt.Axis = Vector3.new(1,0,0)
torsoatt.SecondaryAxis = Vector3.new(0,1,0)
local limbatt = Instance.new("Attachment",character[limbname])
limbatt.Position = Vector3.new(-0.086, 0.755, -0.007)
limbatt.Name = limbname.."RagdollConstraint"
limbatt.Axis = Vector3.new(1,0,0)
limbatt.SecondaryAxis = Vector3.new(0,1,0)
local ballc = Instance.new('BallSocketConstraint',character)
ballc.Name = "LeftLegRagdollRig"
ballc.Attachment0 = torsoatt
ballc.Attachment1 = limbatt
local part1 = character[limbname]
if character:FindFirstChildOfClass('Humanoid').Health > 0 then
local collidepart = Instance.new('Part',part1)
collidepart.Size = part1.Size/1.5
collidepart.CanCollide = true
collidepart.Name = "Collision"
collidepart.Anchored = false
collidepart.Transparency = 1
collidepart.CFrame = part1.CFrame
collidepart:BreakJoints()
local attachment0 = Instance.new('Attachment',part1)
local attachment1 = Instance.new('Attachment',collidepart)
if attachment0 and attachment1 then
local constraint = Instance.new("HingeConstraint")
constraint.Attachment0 = attachment0
constraint.Attachment1 = attachment1
constraint.LimitsEnabled = true
constraint.UpperAngle = 0
constraint.LowerAngle = 0
constraint.Parent = character
end
end
if character.Torso:FindFirstChild('Left Hip') then
character.Torso:FindFirstChild('Left Hip'):Destroy()
end
elseif limbname == "Head" or limbname == "Torso" and character:FindFirstChild("Head") and character:FindFirstChild("Torso") and character.Head:FindFirstChild("Neck") == nil then
if character:FindFirstChildOfClass('Humanoid') then
character:FindFirstChildOfClass('Humanoid').Health = 0
end
while character:FindFirstChildOfClass('Humanoid').Health > 0 do wait() end
if character:FindFirstChild('HumanoidRootPart') then
character.HumanoidRootPart:Destroy()
end
game:GetService('Debris'):AddItem(character,10)
for _,child in next,character:GetChildren() do
if child:IsA("Accoutrement") then
for _,part in next,child:GetChildren() do
if part:IsA("BasePart") then
for _,c in pairs(part:GetChildren()) do
if c:IsA('Weld') then c:Destroy() end
end
local attachment1 = part:FindFirstChildOfClass("Attachment")
local attachment0 = getAttachment0(character,attachment1.Name)
if attachment0 and attachment1 then
local constraint = Instance.new("HingeConstraint")
constraint.Attachment0 = attachment0
constraint.Attachment1 = attachment1
constraint.LimitsEnabled = true
constraint.UpperAngle = 0
constraint.LowerAngle = 0
constraint.Parent = character
end
end
end
end
end
for i,v in pairs(character:GetChildren()) do
if v:IsA('MeshPart') or v:IsA('BasePart') then
for _,c in pairs(v:GetChildren()) do
if c.Name == "Collision" then c:Destroy() end
end
end
end
if character.Torso:FindFirstChild('Neck') then
character.Torso.Neck:Destroy()
end
if character:FindFirstChild('Torso') then
local collidepart = Instance.new('Part',character.Torso)
collidepart.Size = character.Torso.Size/1.5
collidepart.CanCollide = true
collidepart.Name = "Collision"
collidepart.Anchored = false
collidepart.Transparency = 1
collidepart.CFrame = character.Torso.CFrame
collidepart:BreakJoints()
local attachment0 = Instance.new('Attachment',character.Torso)
local attachment1 = Instance.new('Attachment',collidepart)
if attachment0 and attachment1 then
local constraint = Instance.new("HingeConstraint")
constraint.Attachment0 = attachment0
constraint.Attachment1 = attachment1
constraint.LimitsEnabled = true
constraint.UpperAngle = 0
constraint.LowerAngle = 0
constraint.Parent = character
end
end
if character:FindFirstChild('Torso') and character:FindFirstChild('Head') then
if character.Torso:FindFirstChild('NeckAttachment') == nil then
local neck = Instance.new('Attachment',character.Torso)
neck.Name = "NeckAttachment"
neck.Position = Vector3.new(0, 1, 0)
end
ragdollJoint(character,character.Torso, character.Head, "NeckAttachment", "Hinge", {
{"LimitsEnabled",true};
{"UpperAngle",50};
{"LowerAngle",-50};
})
end
if attached ~= false then
ragdollpart(character, "Right Leg")
ragdollpart(character, "Left Leg")
else
pcall(function()
local ayybleed = Instance.new('Part',character)
ayybleed.Size = Vector3.new(character.Torso.Size.X,0.1,character.Torso.Size.Z)
ayybleed.Transparency = 1
ayybleed.CanCollide = false
ayybleed.CFrame = character.Torso.CFrame
ayybleed:BreakJoints()
local attachment1 = Instance.new('Attachment',ayybleed)
attachment1.Position = Vector3.new(0,-character.Torso.Size.Y/2,0)
attachment1.Orientation = Vector3.new(0, 0, -180)
local attachment0 = Instance.new('Attachment',character.Torso)
if attachment0 and attachment1 then
local constraint = Instance.new("HingeConstraint")
constraint.Attachment0 = attachment0
constraint.Attachment1 = attachment1
constraint.LimitsEnabled = true
constraint.UpperAngle = 0
constraint.LowerAngle = 0
constraint.Parent = character