-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.json
More file actions
4826 lines (4826 loc) · 154 KB
/
script.json
File metadata and controls
4826 lines (4826 loc) · 154 KB
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
[
{
"title": "Chop (mission)",
"lines": [
{
"character": "<a href=\"/Denise_Clinton\" title=\"Denise Clinton\">Denise Clinton</a>",
"line": "Girl, of course I saved that poor boy's life. But you know what? It's getting to be a bit much."
},
{
"character": "Friend",
"line": "I have no idea how you cope."
},
{
"character": "Denise Clinton",
"line": "'Course I cope. I'm a woman."
},
{
"character": "Friend",
"line": "Ain't that the truth?"
},
{
"character": "Denise Clinton",
"line": "But, girl, I done done all that I can do, but you know how boys are."
},
{
"character": "Denise Clinton",
"line": "Wait a minute... Oh, girl... Oh, hey, how much further?"
},
{
"character": "Friend",
"line": "We ain't even gone five yards yet."
},
{
"character": "Denise Clinton",
"line": "Okay. I know. I'm just asking."
},
{
"character": "Friend",
"line": "This is spirit walking. Exercises body and soul. It's all the rage."
},
{
"character": "Friend",
"line": "We are women and we are free!"
},
{
"character": "Denise Clinton",
"line": "We are women..."
},
{
"character": "Friend",
"line": "Bringing an end to the patriarchy."
},
{
"character": "Friend",
"line": "We are women, hear our pain,"
},
{
"character": "Denise Clinton",
"line": "We are women, hear our pain,"
},
{
"character": "Friend",
"line": "we are women, hear our shout,"
},
{
"character": "Denise Clinton",
"line": "we are women, hear our shout,"
},
{
"character": "Friend",
"line": "and we are free, have no doubt."
},
{
"character": "Denise Clinton",
"line": "and we are women, have no doubt."
},
{
"character": "Friend",
"line": "We are women and we are free..."
},
{
"character": "Lamar Davis",
"line": "Damn, F is that your auntie?"
},
{
"character": "Franklin Clinton",
"line": "Yeah, thank God I missed her crazy ass. She spirit walking and shit now, man... that's just her attempts to..."
},
{
"character": "Lamar Davis",
"line": "Hey, hey! Don't be talking shit about your auntie, man, she got... I mean she cool as a motherfucker, man, come on."
},
{
"character": "Franklin Clinton",
"line": "Come where?"
},
{
"character": "Lamar Davis",
"line": "We gotta go pick up some shit from round the corner, man. We can walk and talk at the same time, my nigga."
},
{
"character": "Franklin Clinton",
"line": "Why the fuck we can't drive?"
},
{
"character": "Lamar Davis",
"line": "Around the block? With Chop? You need to walk with your fat ass."
},
{
"character": "Franklin Clinton",
"line": "Yeah, okay, you tall, lanky son of a bitch."
},
{
"character": "Lamar Davis",
"line": "Come on, homie, we ain't got all day, let's go."
},
{
"character": "Franklin Clinton",
"line": "Fo' sho, but what you got up?"
},
{
"character": "Lamar Davis",
"line": "Kidnapping, fool. That clown D, that OG fool from Ballas."
},
{
"character": "Franklin Clinton",
"line": "Dog, I told you; no more gangbanging, retro-vengeance bullshit. I'm trying to make some fucking paper."
},
{
"character": "Lamar Davis",
"line": "You gonna make some paper, loc. And ain't nobody out here gangbanging, it just looks like that. You gotta know the difference, man."
},
{
"character": "Franklin Clinton",
"line": "Fuck, man, great. My aunt will be very happy, homie. She wants me dead anyway so she can get the fucking house."
},
{
"character": "Lamar Davis",
"line": "I told you to quit talking shit about your auntie, loco. That's my bitch. I'm just fucking with ya...I'm just fucking with ya."
},
{
"character": "Lamar Davis",
"line": "Do I need to put a leash on your ass? Come on, let's go, dog."
},
{
"character": "Lamar Davis",
"line": "Man, you always was the easily distracted motherfucker."
},
{
"character": "Lamar Davis",
"line": "Task at hand, homie. Come on."
},
{
"character": "Lamar Davis",
"line": "Come on, homie. You worse than Chop."
},
{
"character": "Lamar Davis",
"line": "What y'all doin'? Let's go."
},
{
"character": "Lamar Davis",
"line": "You got more important things to do?"
},
{
"character": "Lamar Davis",
"line": "You driving."
},
{
"character": "Lamar Davis",
"line": "You got the wheel, homie."
},
{
"character": "Lamar Davis",
"line": "Get in the van, Chop. Get in the van. Good dog."
},
{
"character": "Lamar Davis",
"line": "We goin' up Vinewood Boulevard."
},
{
"character": "Franklin Clinton",
"line": "I like your dog, homie. Me and Chop got a lot in common - your annoying ass."
},
{
"character": "Lamar Davis",
"line": "Man, I'm carrying both of y'all asses homie. Look what I set up."
},
{
"character": "Franklin Clinton",
"line": "Man, fuck this, man - you seen Tanisha?"
},
{
"character": "Lamar Davis",
"line": "She straight. It's me and you that ain't straight though, homie."
},
{
"character": "Franklin Clinton",
"line": "Dog, I know, homie. But look, I met this contact, this white dude. Real serious dude, man. This motherfucker knows the streets. homie. I know he'd be a good hookup for us."
},
{
"character": "Lamar Davis",
"line": "We don't need no hookup, fool. I know these streets."
},
{
"character": "Franklin Clinton",
"line": "You? Know these streets? Man, all you know is dime bag hustling, credit card stealing. Boosting gas tankers, homie, come on man. You trying to be some fucking commodity trader or something?"
},
{
"character": "Lamar Davis",
"line": "Fool, that shit went up, man."
},
{
"character": "Franklin Clinton",
"line": "Look homie, I don't mind dying. You feel me? But I just want to die with something that matters, homie. That's what Forum gangsters should be really about."
},
{
"character": "Lamar Davis",
"line": "And I know this much, the motherfucking OGs ain't even giving a fuck about us, though."
},
{
"character": "Franklin Clinton",
"line": "Man, fuck the OGs then. You know what I'm saying? This ain't no motherfucking pyramid scheme."
},
{
"character": "Lamar Davis",
"line": "Wait, hold on. Listen to your boy one time. Listen to your boy. You want some paper, my nigga? This is what it's about. Check it out. I'm talking about forty thousand. No problem. Cash in hand. Two days time, no killing. Nothing."
},
{
"character": "Franklin Clinton",
"line": "Nah, just starting another beef with the fucking Ballas, nigga, that's class-A felony bullshit."
},
{
"character": "Lamar Davis",
"line": "We gonna keep our disguise on. Ain't nobody gotta know it was us."
},
{
"character": "Franklin Clinton",
"line": "Yeah, whatever, homie. We'll see about that."
},
{
"character": "Franklin Clinton",
"line": "Man, what a long way we've come, homie."
},
{
"character": "Lamar Davis",
"line": "Fuck you want to go a long way for? We right here, right now, loco."
},
{
"character": "Franklin Clinton",
"line": "That's cool if you want to be bending corners on coke and cough syrup all your days."
},
{
"character": "Lamar Davis",
"line": "I seen you on that shit before."
},
{
"character": "Franklin Clinton",
"line": "There you go. Maybe you have. But shit has got to get serious, man. Forum gangsters is about real shit."
},
{
"character": "Lamar Davis",
"line": "You think running repos for them Armenian fraudsters was serious? Man, please."
},
{
"character": "Franklin Clinton",
"line": "Nah. That why I didn't come at your ass for fucking shit up."
},
{
"character": "Lamar Davis",
"line": "I fucked it up? Man, you the genius that crashed through the dude's window."
},
{
"character": "Franklin Clinton",
"line": "Man, one - I had a gun to my fucking head. Two - You the one fucked with them eses, man."
},
{
"character": "Lamar Davis",
"line": "When you met a man who could tell you what to do?"
},
{
"character": "Franklin Clinton",
"line": "Like I said, this dude is serious. Creeped on me like some stealth shit."
},
{
"character": "Lamar Davis",
"line": "Fool, you slippin'."
},
{
"character": "Franklin Clinton",
"line": "You don't wanna fuck with this man, dog, even you."
},
{
"character": "Lamar Davis",
"line": "Man, I don't give a fuck."
},
{
"character": "Franklin Clinton",
"line": "Yeah, your ass keep saying that."
},
{
"character": "Lamar Davis",
"line": "Man, I don't even know what you trippin' on."
},
{
"character": "Franklin Clinton",
"line": "Man, what the fuck Chop do to deserve a fool like you?"
},
{
"character": "Lamar Davis",
"line": "Chop lucky, homie. Ain't you, Chop? Ain't you, boy?"
},
{
"character": "Franklin Clinton",
"line": "Poor dog, man, he don't know what the fuck you sayin'."
},
{
"character": "Lamar Davis",
"line": "Oh, you wouldn't understand that shit. Us Apache - we got a bond with the animal kingdom."
},
{
"character": "Franklin Clinton",
"line": "Yeah, you do got a bond, nigga. I seen you bonding with plenty of animal-type bitches. I'm talking big-ass, hairy, scary bitches. It's true about you Apache motherfuckers, y'all do got a bond."
},
{
"character": "Lamar Davis",
"line": "Fuck you, homie. A little mustache ain't shit. That's just a sign of virility."
},
{
"character": "Franklin Clinton",
"line": "Maybe in the dog world, nigga. What you think, Chop? Come on boy, what you think? You like a little hair on your lips, puppy?"
},
{
"character": "Lamar Davisp",
"line": "Least I know what I can get. You still after the same bitch from high school. Only she ain't interested in some of your...uh...life choices."
},
{
"character": "Franklin Clinton",
"line": "Nigga, you the life choices she don't like, nigga."
},
{
"character": "Lamar Davis",
"line": "Nah, nigga, we cool, man. She kick it with me more than you do. Tells me about the lawyer, nuclear physicist, humanitarian, super nigga she fucking."
},
{
"character": "Franklin Clinton",
"line": "Nigga, shut the fuck up with that shit. I'm done, nigga. I moved on many a times, nigga."
},
{
"character": "Lamar Davis",
"line": "Oh, whatever nigga, that's cool. But on some other shit though, you heard the boy Stretch gettin' out, huh?"
},
{
"character": "Franklin Clinton",
"line": "He gettin' out? Then the State is in some real motherfucking trouble, nigga. I didn't think no amount of over-crowding would put that nigga back on the streets, dog."
},
{
"character": "Lamar Davis",
"line": "Budgetary realignment, homie. They aligning the homie right up outta Bolingbroke."
},
{
"character": "Franklin Clinton",
"line": "Damn! Well, let's just hope he don't fall back intro that same downward spiral that put him in to begin with, nigga."
},
{
"character": "Lamar Davis",
"line": "You fucking with me, right?"
},
{
"character": "Franklin Clinton",
"line": "Yeah, I'm fuckin' with you, dog."
},
{
"character": "Lamar Davis",
"line": "Going to snatch a fool, acting all judgmental and shit. Look at you man, that shit is lame."
},
{
"character": "Franklin Clinton",
"line": "Eh, why we doing this, dog?"
},
{
"character": "Lamar Davis",
"line": "Man, 'cause we supplementing our income."
},
{
"character": "Franklin Clinton",
"line": "More like supplementing the drama in our lives."
},
{
"character": "Lamar Davis",
"line": "Is that fool Simeon looking out for us? Or is he looking out for hisself?"
},
{
"character": "Franklin Clinton",
"line": "Shit, hisself, I guess."
},
{
"character": "Lamar Davis",
"line": "So, how a couple of gutter-ass fools like us get ahead?"
},
{
"character": "Franklin Clinton",
"line": "By getting serious."
},
{
"character": "Lamar Davis",
"line": "Exactly. We two highly motivated, results-driven motherfuckers with an entrepreneurial mindset."
},
{
"character": "Franklin Clinton",
"line": "Oh, yeah, yeah. Highly motivated self-starters, huh? In the kidnapping sector."
},
{
"character": "Lamar Davis",
"line": "Yeah. Starting big."
},
{
"character": "Franklin Clinton",
"line": "But it always go wrong, don't it? All your schemes, for years."
},
{
"character": "Lamar Davis",
"line": "They don't go right, but I wouldn't say that they go wrong all the time, neither. Not as wrong as they could."
},
{
"character": "Franklin Clinton",
"line": "I ain't dead but I ain't rich neither."
},
{
"character": "Lamar Davis",
"line": "How does forty thousand sound? 'Cause that's what happening right here."
},
{
"character": "Franklin Clinton",
"line": "Man, I'll believe it when I'm holding it."
},
{
"character": "Lamar Davis",
"line": "Three way split, homie. Me, you, and Chop."
},
{
"character": "Franklin Clinton",
"line": "Man, Chop don't get shit. Chop a intern."
},
{
"character": "Lamar Davis",
"line": "You hear that, Chop? Man, Frank tryin' to screw you."
},
{
"character": "<br><i>(If Chop barks.)\n",
"line": ""
},
{
"character": "Lamar Davis",
"line": "Chop a free spirit. He bark all he likes."
},
{
"character": "Lamar Davis",
"line": "He down this alley up here.Or:\n<b>Lamar Davis</b>: I been told he up in the alley.\n"
},
{
"character": "D",
"line": "Hey what's up, boo? Ain't you little Laita's cousin?"
},
{
"character": "Girl",
"line": "Yeah."
},
{
"character": "D",
"line": "Damn, you short with it? I was just saying, I was trying to holla at you."
},
{
"character": "Girl",
"line": "And? You ain't hollering at nothin' over here."
},
{
"character": "D",
"line": "Why is it gotta be like that? I'm a OG..."
},
{
"character": "Girl",
"line": "An OG, so what? So the fuck what, nigga? S'million OG's around here."
},
{
"character": "D",
"line": "Well shit, how about I put one of these little X pills up your ass crack? Next thing you know you gonna be begging for it, boo boo."
},
{
"character": "Girl",
"line": "That's disgusting."
},
{
"character": "Lamar Davis",
"line": "What's happening now, D man? Ain't no fun if the gangsters can't have none."
},
{
"character": "D",
"line": "Man, fuck you, mark. I ain't sharing no ass with the CGFs."
},
{
"character": "Girl",
"line": "Ain't nobody sharin' nothin'."
},
{
"character": "D",
"line": "Man, shut the hell up, bitch!"
},
{
"character": "Girl",
"line": "Fuck you, nigga!"
},
{
"character": "D",
"line": "Man, fuck y'all. Hey, ain't there a law against you mark-ass gangstas, insignia-mask-wearing motherfuckers?"
},
{
"character": "Lamar Davis",
"line": "Oh, so what's up now, nigga? You snitchin' or somethin', nigga?"
},
{
"character": "Girl",
"line": "Oh, shit!"
},
{
"character": "Lamar Davis",
"line": "Bitch-ass nigga."
},
{
"character": "D",
"line": "Fuck you, nigga. I'm outta here!"
},
{
"character": "Franklin Clinton",
"line": "Watch out, nigga!"
},
{
"character": "D",
"line": "Fuck y'all, bitch!"
},
{
"character": "Lamar Davis",
"line": "Hey, come and get that nigga. Come on, let's go. Go! Go! Get in the van!"
},
{
"character": "Franklin Clinton",
"line": "You see what he's driving? Man, we in a van, motherfucker. We fucked!"
},
{
"character": "Lamar Davis",
"line": "Oh, gangster. We got this."
},
{
"character": "Franklin Clinton",
"line": "Hold on, Chop."
},
{
"character": "Lamar Davis",
"line": "He leaving us behind, fool."
},
{
"character": "Franklin Clinton",
"line": "You okay, Chop?"
},
{
"character": "Lamar Davis",
"line": "OG's gettin' away!"
},
{
"character": "Franklin Clinton",
"line": "What the fuck you say something for? We could have creeped up on this nigga."
},
{
"character": "Lamar Davis",
"line": "You seen yourself, Franklin? You is a big black motherfucker, nigga. You creepin' days is over."
},
{
"character": "Lamar Davis",
"line": "Do that weird, like, focus shit you do. That's forty Gs gettin' away right there."
},
{
"character": "Lamar Davis",
"line": "I should have took the wheel."
},
{
"character": "Franklin Clinton",
"line": "Like you coulda done better. This piece of shit ain't going no faster!"
},
{
"character": "Lamar Davis",
"line": "You get all sex face when you do that, homie. That's hilarious."
},
{
"character": "Lamar Davis",
"line": "Get on him."
},
{
"character": "Franklin Clinton",
"line": "We in a van, nigga. This motherfucker is slow as hell! Next time we goin' after a motherfucker in a car, alright? All these punk-ass bikes. If we snatching this dude, we snatching his ass right. Remember the homies around the block?"
},
{
"character": "Lamar Davis",
"line": "Man, the homies is lame."
},
{
"character": "Franklin Clinton Yeah, so we not. Cops were on their cellphone soon as they made the ransom call. Triangulated the signal. Ghetto birds all over the place. Surveillance, my nigga.",
"line": ""
},
{
"character": "Franklin Clinton",
"line": "Oh, shit!"
},
{
"character": "Lamar Davis",
"line": "Damn, he got fucked up! Man, take Chop, go get that fool!"
},
{
"character": "Franklin Clinton",
"line": "Nigga, you just sit on your ass there with your feet kicked up!"
},
{
"character": "Franklin Clinton",
"line": "Come on, Chop, come on, go bite his ass, get that motherfucker, Chop!"
},
{
"character": "Franklin Clinton",
"line": "Get him!"
},
{
"character": "Franklin Clinton",
"line": "The ransom's still the same if you got a bite taken out your ass."
},
{
"character": "Franklin Clinton",
"line": "How the fuck you end up with your dumb ass owner, man? And how the fuck did I?"
},
{
"character": "Passer-by",
"line": "Put that dog on a leash!"
},
{
"character": "Passer-by",
"line": "You a trill hound, homie."
},
{
"character": "Franklin Clinton",
"line": "I don't wanna watch you get eaten by this canine, punk./Let's do this, Chop Chop."
},
{
"character": "Franklin Clinton",
"line": "Least I'm getting a workout./I thought you was an original gangster. You just a motherfucking chump. This like sprint training."
},
{
"character": "Franklin Clinton Get him, boy!/Take him down, homie!",
"line": ""
},
{
"character": "Franklin Clinton",
"line": "Aw, fuck! Come on, boy. Find that fool. Sniff him out, Chop Chop. Lead me to him."
},
{
"character": "Franklin Clinton",
"line": "He hiding in that train, boy."
},
{
"character": "Franklin Clinton",
"line": "You in here?"
},
{
"character": "Franklin Clinton",
"line": "Shit, this motherfucker empty."
},
{
"character": "Franklin Clinton",
"line": "Come on. Where you at?"
},
{
"character": "Franklin Clinton",
"line": "You a mean motherfucker, man. Let's go."
},
{
"character": "Franklin Clinton",
"line": "Yo' ass caught!/Lay down, bitch!"
},
{
"character": "Franklin Clinton",
"line": "Come on. Where you at?/Man, fuck."
},
{
"character": "Franklin Clinton",
"line": "There you go."
},
{
"character": "Franklin Clinton",
"line": "Where is he, boy? Come on, where is he?"
},
{
"character": "Franklin Clinton",
"line": "You got a whiff of him, Chop?"
},
{
"character": "Franklin Clinton",
"line": "We in this together, Chop. Let's go."
},
{
"character": "Franklin Clinton",
"line": "Hey, where you going, boy? That don't look like no Ballas OG to me. Chop! No! Down, boy!"
},
{
"character": "Franklin Clinton",
"line": "Shit, Chop. Man, that's a dude, dog. Your little nasty ass ain't picky, is you?Or:\n<b>D</b>: Come on, Chop. Get off there, man. We got shit to do. Man, that's a dude, Chop. You'll fuck anything. Get out that thing, Chop, you filthy motherfucker.\n"
},
{
"character": "Franklin Clinton",
"line": "Not the time, Chop. We got to go.Or:\n<b>D</b>: This ain't time for humpin', Chop. Come on, man.\n"
},
{
"character": "Franklin Clinton",
"line": "Come on, you horny little motherfucker. You need boot camp or some shit."
},
{
"character": "Franklin Clinton",
"line": "Get back on that fat motherfucker, Chop! Eh, Chop. That smell like a Balla? You smell that motherfucker, boy?Or:\n<b>D</b>: Go boy! Where that OG at?\n"
},
{
"character": "Franklin Clinton",
"line": "Come on, Chop. Come on boy./You a mean motherfucker, man. Let's go."
},
{
"character": "Franklin Clinton",
"line": "Stop running, dog!"
},
{
"character": "D",
"line": "Give it up!"
},
{
"character": "Franklin Clinton",
"line": "You scared of dogs, nigga?"
},
{
"character": "D",
"line": "Oh, shit! Screw that dog, man."
},
{
"character": "D",
"line": "Fuck you and your stupid dog."
},
{
"character": "Franklin Clinton",
"line": "Don't hump him, bite his ass, Chop. Get his ass."
},
{
"character": "D",
"line": "Get off me! Fuck you, son of a bitch!"
},
{
"character": "Franklin Clinton",
"line": "Good boy, good boy."
},
{
"character": "D",
"line": "That bitch just fucking bit me, man!"
},
{
"character": "Franklin Clinton",
"line": "Shut the fuck up."
},
{
"character": "Franklin Clinton",
"line": "Hey, man, get over here!"
},
{
"character": "D",
"line": "Oh, shit, what the fuck, man, I ain't got no beef with the CGF."
},
{
"character": "Franklin Clinton",
"line": "'Cause maybe we doing our own thing."
},
{
"character": "D",
"line": "What the fuck, man?!"
},
{
"character": "Lamar Davis",
"line": "Get the fuck in the van, punk!"
},
{
"character": "D",
"line": "Shit! Hey, Lamar Davis, is that you, nigga?"
},
{
"character": "Lamar Davis",
"line": "Nigga, shut the fuck up, just get in."
},
{
"character": "D",
"line": "Yeah that's you, nigga..."
},
{
"character": "Franklin Clinton",
"line": "Man, you fucking idiot."
},
{
"character": "D",
"line": "Aww shit."
},
{
"character": "Franklin Clinton",
"line": "Come on."
},
{
"character": "D",
"line": "I said I had no beef, man."
},
{
"character": "Franklin Clinton",
"line": "Shut the fuck up."
},
{
"character": "D",
"line": "Hey, man, what the fuck?"
},
{
"character": "Franklin Clinton",
"line": "Watch him, boy."
},
{
"character": "D",
"line": "Keep this fucking dog away from me!"
},
{
"character": "Lamar Davis",
"line": "Move, move! Come on!"
},
{
"character": "D",
"line": "Fuck!"
},
{
"character": "Franklin Clinton",
"line": "Hey, if you don't train Chop, he goin' be a lost cause like you."
},
{
"character": "Lamar Davis",
"line": "We gonna stash this dude at my spot."
},
{
"character": "D",
"line": "We going back to your crib? I been there when you was in diapers."
},
{
"character": "Lamar Davis",
"line": "Shut up, man. You ain't recognize me."
},
{
"character": "D",
"line": "I knew it was you before you took that flag off. You always been dumb, Lamar."
},
{
"character": "Lamar Davis",
"line": "Really? Well, I guess that mean we gonna have to shoot yo' ass when we pick up our forty stacks."
},
{
"character": "D",
"line": "You ain't gonna pick up shit. Feds gonna be on you before you can even move, nigga."
},
{
"character": "Lamar Davis",
"line": "Be quiet. I gotta make a call."
},
{
"character": "Lamar Davis",
"line": "We got your boy."
},
{
"character": "Franklin Clinton",
"line": "You calling them on a cellphone, you dumb motherfucker? They going to trace this shit in a sec!"
},
{
"character": "Lamar Davis",
"line": "We want forty thousand. It's pay me or pay the funeral director, motherfucker."
},
{
"character": "Franklin Clinton",
"line": "What the fuck you gone done? You just gave them our location. Now we gotta let this motherfucker outta here."
},
{
"character": "Franklin Clinton",
"line": "Why the fuck you pull your flag down?"
},
{
"character": "Lamar Davis",
"line": "Man, needed to breathe."
},
{
"character": "D",
"line": "Lamar motherfucking Davis. This just the kind of lame-ass shit marks like you try to pull."
},
{
"character": "Lamar Davis",
"line": "Man, fuck you. And who the fuck is this Lamar nigga?"
},
{
"character": "D",
"line": "You lame, sucker."
},
{
"character": "Lamar Davis",
"line": "We gonna see who lame when they got my two in the back of the head and little Chop Chop chewing on their shit. I'ma make some bills off this fool. Just shut up while I make the call."
},
{
"character": "Lamar Davis",
"line": "Yeah, we got your homeboy, and we ain't trippin'. We goin' smoke his ass if you don't come with that bread."
},
{
"character": "Franklin Clinton",
"line": "This shit dumb. They goin' be all over your fuckin' cellphone."
},
{
"character": "Lamar Davis",
"line": "Forty thousand, motherfuckers. Or this nigga goin' be in forty little pieces."
},
{
"character": "Franklin Clinton",
"line": "What the fuck, homie? Half the city goin' be mobilized on this shit! We got to drop his ass!"
},
{
"character": "Franklin Clinton",
"line": "Get the fuck outta here. And, gimme that damn phone."
},
{
"character": "Lamar Davis",
"line": "What the fuck?"
},
{
"character": "D",
"line": "Fuck y'all. I be seein' y'all soon..."
},
{
"character": "Franklin Clinton",
"line": "Nigga, the only reason you been seein' shit 'cause we went easy on your ass. Remember that, dog!"
},
{
"character": "D",
"line": "And you owe me a bike too, you motherfuckers!Or\n"
},
{
"character": "D",
"line": "Dumb bitches!"
},
{
"character": "Lamar Davis",
"line": "This some bullshit. Take me down the cut."
},
{
"character": "Franklin Clinton",
"line": "Man, what the fuck is wrong with you, nigga?"
},
{
"character": "Lamar Davis",
"line": "I was getting us paid. What the fuck is wrong with you, nigga? That was a good phone."
},
{
"character": "Franklin Clinton",
"line": "A good phone? The cops was all over, nigga."
},
{
"character": "Lamar Davis",
"line": "I coulda swallowed my card. Try to triangule that."
},
{
"character": "Franklin Clinton",
"line": "It's too late. Shit's done. Least I saved you the indignity of pullin' apart your shit."
},
{
"character": "Lamar Davis",
"line": "Nigga, I ain't afraid to get my hands dirty. Ol' precious motherfucker."
},
{
"character": "Franklin Clinton",
"line": "This is what I mean, homie. We need to get serious. Get paid. This shit ain't working."
},
{
"character": "Lamar Davis",
"line": "So your old white dude's gonna fix us. Where's my first class?"
},
{
"character": "Franklin Clinton",
"line": "Look, I'ma learn some skills, man. Pass 'em on. There's a whole city out there. It's waiting to be taken, nigga."
},
{
"character": "Lamar Davis",
"line": "You just give me the heads up when you over that shit, nigga. Ready to wipe old due nut off your face. Ol' lame-ass mark!"
},
{
"character": "Franklin Clinton",
"line": "Man, fuck you Lamar."
},