-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrequests.html
433 lines (394 loc) · 29.1 KB
/
requests.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>MyNameMadeYouSmiley's Requests</title> <!-- Change this to your username -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--===============================================================================================-->
<link rel="icon" type="image/png" href="images/icons/favicon.ico" />
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/bootstrap/css/bootstrap.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="fonts/font-awesome-4.7.0/css/font-awesome.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/animate/animate.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/select2/select2.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/perfect-scrollbar/perfect-scrollbar.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="css/util.css">
<link id="pagestyle" rel="stylesheet" type="text/css" href="css/main.css">
<!--===============================================================================================-->
<!--===============================================================================================-->
</head>
<!-- Do not change anything inside the <head></head> tag other than the title. If you do, things will probably explode -->
<body>
<script> // Script that creates all of the functional part of the page. Do not modify anything inside this tag unless you really know what you're doing
(function (document) {
'index.html';
var mode = localStorage['mode']; // Gets current light/dark setting
function swapStyleSheet(button) { // Swaps light/dark mode on button click
if (mode == "dark") {
document.getElementById("pagestyle").setAttribute("href", "css/mainlight.css");
mode = "light";
localStorage['mode'] = 'light';
button.innerHTML = "Dark Mode";
}
else if (mode == "light") {
document.getElementById("pagestyle").setAttribute("href", "css/main.css");
mode = "dark";
localStorage['mode'] = 'dark';
button.innerHTML = "Light Mode";
}
}
function keepStyleSheet(button) { // Decides if the site will be on light or dark theme depending on the previous setting
if (mode == "light") {
document.getElementById("pagestyle").setAttribute("href", "css/mainlight.css");
mode = "light";
localStorage['mode'] = 'light';
button.innerHTML = "Dark Mode";
}
else if (mode == "dark") {
document.getElementById("pagestyle").setAttribute("href", "css/main.css");
mode = "dark";
localStorage['mode'] = 'dark';
button.innerHTML = "Light Mode";
}
$('td').each(function () { // Marks Age, Beast and Rape tags as red. If you don't want this feature, delete everything from the $
$(this).html(
$(this).html()
.replace(
/(?<!-)(\[\brape\b\])(?!([^<]+)?>)(?!-)/ig,
'<span style="color:#ff4747;">$1</span>'
)
.replace(
/(?<!-)(\[\bage\b\])(?!([^<]+)?>)(?!-)/ig,
'<span style="color:#ff4747;">$1</span>'
)
.replace(
/(?<!-)(\[\bbeast\b\])(?!([^<]+)?>)(?!-)/ig,
'<span style="color:#ff4747;">$1</span>'
)
);
}); // Until here. If you want to mark other tags as red too, add more replaces after the last one and switch the word between the /b's for
// the one you want
}
var LightTableFilter = (function (Arr) {
var _input;
function _onInputEvent(e) { // A lot of stuff to make the table filter work
_input = e.target;
var tables = document.getElementsByClassName(_input.getAttribute('data-table'));
Arr.forEach.call(tables, function (table) {
Arr.forEach.call(table.tBodies, function (tbody) {
Arr.forEach.call(tbody.rows, _filter);
});
});
}
function _filter(row) {
var text = row.textContent.toLowerCase(), val = _input.value.toLowerCase();
row.style.display = text.indexOf(val) === -1 ? 'none' : 'table-row';
}
return {
init: function () {
var inputs = document.getElementsByClassName('light-table-filter');
Arr.forEach.call(inputs, function (input) {
input.oninput = _onInputEvent;
});
}
};
})(Array.prototype);
document.addEventListener('readystatechange', function () { // Adds table filter, event listeners and calls the initial page settings
if (document.readyState === 'complete') {
LightTableFilter.init();
var a = document.getElementById("modechange");
a.innerHTML = "Light Mode";
a.onclick = function () { swapStyleSheet(this); };
if (mode != "dark" && mode != "light") {
mode = "dark";
localStorage['mode'] = 'dark';
}
keepStyleSheet(a);
}
});
})(document);
</script>
<header>
<div id="topbuttons"><button name="modechange" id="modechange"></button><br>
<a href=index.html><button name="scriptsoraudios" id="scriptsoraudios">My Scripts</button></a></div>
</header>
<div class="limiter">
<div class="container-table100">
<div class="wrap-table100">
<h1>MyNameMadeYouSmiley's Requests</h1>
<div class="table100">
<table class="order-table"><br /><br />
<thead>
<tr class="table100-head">
<th class="column1">Request Title</th>
<th class="column2">More Info</th>
<th class="column3">Tags</th>
<th class="column4">Fills</th>
</tr>
</thead>
<tbody>
<tr>
<td class="column1"><a
href="https://www.reddit.com/r/GonewildAudible/comments/tflj5o/f4m_request_forced_to_play_a_rough_game_with_a/" target="_blank">[F4M]
Forced to Play a Rough Game With a Wild Predator Who Just Wants to Get Dominated</a> </td>
<td class="column2">
<p>Some kind of horny & playful Monster Girl gets interested in a regular man and sees a great opportunity to play once he's all by himself. She obviously has way more strength and is a threat to any regular human's life but she don't want to hurt the man, she just wants to "wrestle" a little bit (while going easy on him of course) and just desires to be topped & punished in the end. The monster girl wants the human to be rough with her and dominate her, despite her having the ability to overpower him at any moment. She wants to be fucked like a bitch today and feel how it's like to be submissive.</p>
</td>
<td class="column3">
<p><b>[From FDom to FSub] [Monster Girl] [Wild] [Capable of Easily Taking You Down] [Choosing To Be Submissive Today] [Top Me Human] [Playful & Rough Wrestling] [Claws] [Hair/Furr Pulling] [Animalistic Growls]</b></p>
</td>
<td class="column4"><a href="https://www.reddit.com/r/gonewildaudio/comments/spkg6u/f4m_script_offer_forced_to_play_a_rough_game_wit" target="_blank">foxlover93 [script]</a>
</td>
</tr>
<tr>
<td class="column1"><a
href="https://www.reddit.com/r/MyNameMadeYouSmiley/comments/tyzbq4/f4m_request_fucking_in_the_wild_with_your_hot/" target="_blank">[F4M]
Fucking In The Wild, With Your Hot Best Friend</a> </td>
<td class="column2">
<p>Two best friends found themselves lost in a total wild. They got distracted by a couple things when walking with their tourist group and by the time they realized, everyone was already gone. The more they tried to find their people, the more they got themselves walking into the absolute no no zone. Who knows what kind of dangerous animals they might stumble upon if they go any further. Lions is guaranteed, so they just stopped and decided to enjoy the beautiful sunset and everything sorrounding them. The more they talk about the beautiful nature they see, the more closer they get and then.. primal insticts are just bound to activate in an environment like this. They get hungry for eachother and fuck like wild animals, in the wild. Is it risky? Risky as fuck, but they don't care at this moment.</p>
</td>
<td class="column3">
<p><b>[Switchy] [Sunset] [Alone in The Wild] [In Nature] [Lost But Don't Care] [Scary Dangers] [Among Wild Animals] [Primal Instincts Fully Activated] [Hardcore, Wild Fucking] [Sounds of Nature]</b></p>
</td>
<td class="column4"><font color="#FF0000">None Yet</font>
</td>
</tr>
<tr>
<td class="column1"><a
href="https://www.reddit.com/r/GonewildAudible/comments/th1evu/f4m_request_sexy_assassin_from_deep_web_only/" target="_blank">[F4M]
Sexy Assassin From Deep Web Only Accepts Dick as Payment</a> </td>
<td class="column2">
<p>So a man hired a professional assassin/killer from the deep web. To his surprise it's this super hot woman. She hears him out and instantly realizes that it's not going to be easy work. And big work means big price. Not the kind of price the man thought about though. She's in this shit because she needs dick, all the time. She's a nymphomaniac with high needs. If he wants the job done, he will have to fuck her good.. and be into whatever she's into.</p>
</td>
<td class="column3">
<p><b>[FDom] [Professional Killer] [Martial Artist] [Nympho] [Hard, Aggressive Fuck] [Kinky] [Dirty Talk] [Hair Pulling] [Ass Spanking] [Two Rounds]? [Anal]?</b></p>
</td>
<td class="column4"><a href="https://www.reddit.com/r/gonewildaudio/comments/soogzh/f4m_sexy_assassin_from_deep_web_only_accepts_dick/" target="_blank">foxlover93 [script]</a><br><br>
<a
href="https://www.reddit.com/r/gonewildaudio/comments/t9wpi6/f4m_sexy_assassin_from_deep_web_only_accepts_dick/" target="_blank">Far-Scarcity492</a>
</td>
</tr>
<tr>
<td class="column1"><a
href="https://www.reddit.com/r/GonewildAudible/comments/ti6y2a/f4m_request_having_a_well_deserved_drink_with/" target="_blank">[F4M]
Having a Well Deserved Drink With Your Childhoog Friend After Finally Winning at Life</a> </td>
<td class="column2">
<p>Two people who has been good friends since their childhoods never had it easy in life. Both came from poverty and a lot of mental struggle. Today, they are both finally successful and rich and can forget about most of the life problems. They finally can have a well deserved drink/smoke and laugh about the past. The reminiscing and fun atmosphere eventually leads to them fucking like animals in the bed.</p>
</td>
<td class="column3">
<p><b>[Friends] [Reminiscing About Past Struggles] [Finally Successful & Rich] [Drinking/Smoking] [Problems Are Over] [Eventually Leading to Bed] [Hard, Passionate Fucking] [Always Wanted Eachother]</b></p>
</td>
<td class="column4"><font color="#FF0000">None Yet</font>
</td>
</tr>
<tr>
<td class="column1"><a
href="https://www.reddit.com/r/GonewildAudible/comments/tio6nj/f4m_request_stuck_alone_with_your_big_sisters_hot/" target="_blank">[F4M]
Stuck Alone With Your Big Sister's Hot Vampire Friend</a> </td>
<td class="column2">
<p>The shy boy has a popular big sister who for some reason always thinks it's okay to leave him alone at home with the company of her crazy friends. The brother fears this particular friend the most though. She's a vampire and he knows it's only a matter of time she'll bite him. She loves to tease and scare the fuck out of him all the time. Her favorite game is making the boy hide and run while she "hunts" him.. and then once she catches him, she just does what she wants. Touches him all over, kisses, and whispers more and more threats just for his reactions. She goes all the way today though and fucks this shy cutie.. with the help of her superhuman strength.</p>
</td>
<td class="column3">
<p><b>[FDom] [Monster Girl] [Shy Boy] [Adults] [Rape] [Scary Game] [Hide n Seek] [She Hunts You] [Molesting You] [Stronger Than You] [Very Upclose n Personal] [On Top of You] [Teasing] [Lots of Earplay] [Bite Threats] [Sexual Bullying]</b></p>
</td>
<td class="column4"><a href="https://www.reddit.com/r/gonewildaudio/comments/saiay4/f4m_script_offer_stuck_alone_with_your_big/htue6ob/?context=3">foxlover93 [script]</a><br><br>
<a
href="https://www.reddit.com/r/gonewildaudio/comments/so3qi3/f4m_stuck_alone_with_your_big_sisters_hot_vampire/" target="_blank">Angel_Audio [audio]</a>
</td>
</tr>
<tr>
<td class="column1"><a
href="https://www.reddit.com/r/GonewildAudible/comments/tg7id5/m4f_request_i_dont_care_if_my_family_doesnt/" target="_blank">[M4F]
I Don't Care If My Family Doesn't Accept You</a> </td>
<td class="column2">
<p>The couple finally decided to go to the dinner with boyfriend's family for first time. It wasn't a great experience.. the parents did not receive the girlfriend well when they saw her color. The boyfriend is very embarassed from this and clearly states that he doesn't agree with their view on things and that the girlfriend is more important to him than his family, and is ready to cut the contacts with them (if they don't will to change). So basically the boyfriend shows major support to his gf, comforts her, speaks out against racism and then they make love.</p>
</td>
<td class="column3">
<p><b>[MDom] [Interracial Couple] [For Black Listeners] [BF Ignores Family's Prejudice] [True Love] [You Over The Family] [No Fetishization] [No Skin Color Mentions] [Romantic]?</b></p>
</td>
<td class="column4"><a href="https://www.reddit.com/r/gonewildaudio/comments/t0r43j/m4frequest_fill_i_dont_care_if_my_family_doesnt/" target="_blank">Sorry-to-hear-that</a>
</td>
</tr>
<tr>
<td class="column1"><a
href="https://www.reddit.com/r/MyNameMadeYouSmiley/comments/tz05df/f4m_request_hot_superstar_takes_out_sexual/" target="_blank">[F4M]
Hot Superstar Takes Out Sexual Frustration On a Random Fan</a> </td>
<td class="column2">
<p>So a fan waits for his turn to get the autograph from this hot superstar/celebrity whatever. After everyone else is gone and it's just him, her and the security in the room she refuses to give him the autograph so fast. Instead, she kicks out the security and starts talking about her recent breakup and how stressed she is from the fame and work.. all that. She tries to seduce him the regular way at first but the fan is shy and confused of course so he reacts differently. Eventually she tells him straight up what she wants and what the fan will have to do to get this autograph. She needs to fuck somebody asap and don't care who it is. It helps of course that the fan looks pretty good.</p>
</td>
<td class="column3">
<p><b>[FDom] [Fresh Off a Breakup] but still [Cheating]? [Revenge Fuck] [You're Gonna Help Me] [Do It or No Autograph] [Blackmail]ish? so [Rape]ish? [Sporty Girl] [Shy Fan]</b></p>
</td>
<td class="column4"><font color="#FF0000">None Yet</font>
</td>
</tr>
<tr>
<td class="column1"><a
href="https://www.reddit.com/r/MyNameMadeYouSmiley/comments/tz06r4/f4m_request_aggressive_switchy_full_of_energy/" target="_blank">[F4M]
Aggressive, Switchy, Full of Energy Hardcore Sex</a> </td>
<td class="column2">
<p>I was just thinking of a audio that would be full of crazy, wild sex between couple, friends.. or whoever the fuck (it don't even matter to me, up to you). The two would compete with eachother, tease eachother about who can fuck better and who got more stamina and who's more dominant and stuff like that. I just think it's a sexy idea.. maybe the two been going to the gym lately and now are trying to test themselves.. idk, get as creative as you wish. I hear the audio being just full of sexy aggression, wild moans, and bunch of playfulness.</p>
</td>
<td class="column3">
<p><b>[Switching between FSub and FDom] [Dominating Eachother] [Competing With Eachother] [Who got more stamina?] [Who can fuck better?] [Wild, Steamy Sex] [Multiple Positions] [Show me what you got] [Dirty Talk] [Teasing Eachother]</b></p>
</td>
<td class="column4"><font color="#FF0000">None Yet</font>
</td>
</tr>
<tr>
<td class="column1"><a
href="https://www.reddit.com/r/gonewildaudio/comments/q99hvd/requestf4m_teased_by_a_horny_experienced_woman/" target="_blank">[F4M]
Teased By a Horny & Experienced Woman Who Wants Your Virginity</a> </td>
<td class="column2">
<p>I always found it super hot to imagine a horny woman who's trying her hardest to seduce the reluctant & shy virgin guy. Especially if it's a very closeup contact, with her lying on top of the guy.. her lips close to his ears.. just teasing and talking dirty to him, trying to convince him to have sex with her or let her show him some things..<br><br>
Would love to hear an audio like that. Preferably very close to the mic, with optional back and forth between left and right ear.<br><br>
The audio can end up with her either succeeding and then taking the lead to fuck the guy, or it can end with her eventually just giving up but letting it be known that she won't stop trying.</p>
</td>
<td class="column3">
<p><b>[Gentle FDom] [Shy Guy] [Virgin Guy] [Teasing You] [Whispering] [Close and Personal] [Lying On Top of You From Behind] [You're On Your Stomach] [ASMR] [Nibbling On Your Ears] [Convincing You To Have Sex] [Dirty Talking]</b></p>
</td>
<td class="column4"><font color="#FF0000">None Yet</font>
</td>
</tr>
<tr>
<td class="column1"><a
href="https://www.reddit.com/r/gonewildaudio/comments/q6486p/request_ff4m_two_girls_fucking_eachother_and/" target="_blank">[FF4M]
Two Girls Fucking Eachother and Encouraging the Listener to Keep Watching</a> </td>
<td class="column2">
<p>Would love to hear a collab where the listener isn't necesarrily doing anything, but watching (listening) to what the girls are doing (fucking eachother).</p>
</td>
<td class="column3">
<p><b>[Lesbian or Bisexual Girls] [Girl on Girl] [Making Out] [Moaning] [JOI] [Eating Eachother Out] [Just a Bunch of Hot & Wild action]</b></p>
</td>
<td class="column4"><font color="#FF0000">None Yet</font>
</td>
</tr>
<tr>
<td class="column1"><a
href="https://www.reddit.com/r/gonewildaudio/comments/pimnt4/request_f4m_a_short_12_min_audio_of_you_moaning/" target="_blank">[F4M]
A short (1-2 min) audio of you moaning or saying my name in sexy way?</a> </td>
<td class="column2">
<p>I know this one is very personal and my name is polish so it's not popular here so I know the chances are slim af but I'm just trying my luck here :D So the name is "Michał". I'm fine with you either guessing how to pronounce it (it's very close to "michael") or checking in the google translator and trying to mimic it.
I just really wanna hear how some1 from a different country says it, that's all. In a sexy way tho, bonus points if you can moan it too definitely :)</p>
</td>
<td class="column3">
<p><b>[Polish name] [Moaning]</b></p>
</td>
<td class="column4"><font color="#FF0000">None Yet</font>
</td>
</tr>
<tr>
<td class="column1"><a
href="https://www.reddit.com/r/gonewildaudio/comments/p1pc61/f4m_request_your_girlfriend_takes_care_of_you/" target="_blank">[F4M]
Your Girlfriend Takes Care of You With an Edging Handjob</a> </td>
<td class="column2">
<p>Your boyfriend is sick and not able to do anything at all. You offer to take care of him with a slippery, edging handjob. You want to milk him good and dry, and let him enjoy it for a long time, before finally letting him cum.<br><br>
I'm cool with any improvements such as prostate massage, balls massage, maybe a bit of use of tongue.. anything really. Any ideas? :)</p>
</td>
<td class="column3">
<p><b>[Gentle FDom] [Sick Boyfriend/Listener] [Lube] [Slippery, Wet Handjob] [Helping You Recover] [Edging You] [Don't Cum Yet, Just Enjoy Me] [Hard Tugging] [Milking You] [Don't Do Anything] [Just Relax] [Cum Everywhere]</b></p>
</td>
<td class="column4"><a href="https://www.reddit.com/r/gonewildaudio/comments/p6joyt/f4m_your_gf_takes_care_of_you_with_an_edging/" target="_blank">MissThiccBooty</a>
</td>
</tr>
<tr>
<td class="column1"><a
href="https://www.reddit.com/r/gonewildaudio/comments/p02twu/f4m_request_try_your_hardest_to_seduce_me_and/" target="_blank">[F4M]
Try Your Hardest to Seduce Me and Then Fuck Me Wild</a> </td>
<td class="column2">
<p>I like to imagine a scenario where the top hot slut that gets every guy with ease gets rejected by me, but doesn't give up no matter what and tries her hardest to seduce me and convince me with a bunch of sexy dirty talk.<br><br>
At first you approach me thinking it's just gonna take a couple seconds, but then like a lightning strike, it hits you that I'm not the one. You realize it's gonna take a little (much) more work than you thought.<br><br>
Convince me why you're that girl, and why I should pull out my cock for you. Why should I sleep with you. What makes you special. Is the pussy really that fire? What can your mouth do? How nasty can you get for me? What do you want to do to me? And what do you want me to do to you? How badly do you want it? Maybe talk about how it lowkey turns you on that I'm making this a challenge for you..<br><br>
Idk, I just sometimes like imagining myself in the role of an irresistable guy who finally is a match for the overconfident slut that all the other regular guys would instantly fall for. And once I finally agree to let you have me, you just go crazy wild on me like you waited for this moment for years.<br><br>
Any ideas? Anyone would be into making an audio like that? It's probably a bit much, but hey I'm just trying my luck out here :)</p>
</td>
<td class="column3">
<p><b>[FDom to FSub] [Very Horny Slut] [Reluctant Guy/Listener] [You Don't Take No For an Answer] [Dirty Talk] [Convince Me] [You Gotta Have Me] [Long Seduction] [Ride Me Hard Afterwards] [Be Wild With Me] [Creampie]</b></p>
</td>
<td class="column4"><font color="#FF0000">None Yet</font>
</td>
</tr>
<tr>
<td class="column1"><a
href="https://www.reddit.com/r/gonewildaudio/comments/oxufbk/f4m_request_your_girlfriend_teases_you_about_not/" target="_blank">[F4M]
Your Girlfriend Teases You About Not Letting You Stick It In Her Ass</a> </td>
<td class="column2">
<p>I'd like to see an audio where your hot girlfriend or wife teases you with her tight, virgin little butthole. She knows how bad you want it and teases you heavy. She tells you to go ahead and stick it in, but then changes her mind when you're about to do it and says no.<br><br>
Lots of dirty talk about how good it'd feel to go inside of her tight little asshole. Talking about doing anal one day, but making it clear that it's not today. Talking about letting the bf (listener) go balls deep in that ass and stretch it out if they do it.<br><br>
Maybe it could be a whole audio where you're actually fucking, but constantly denying anal sex and teasing with the anal idea a lot, it doesn't need to be a joi type audio or just talking. For example the bf (listener) can be teased while fucking the pussy and looking at the asshole and how it's so inviting and how easy it'd be to just grab some lube and stick it in.<br><br>
I like when women tease with something that the guy can't have but in a fun and sexy way, not mean, degrading or humilating. For example if a girl doesn't wanna suck bf's cock today but almost does it, just to tease him and give a little hope.. idk, I like that kind of thing.</p>
</td>
<td class="column3">
<p><b>[Gentle FDom] [Anal Virgin] [Fantasizing About First Anal Sex] [Tons of Teasing] [Showing Off The Butthole] [You Can't Have It, But You Can Think About It] [I Know How Bad You Want It, But Nope] [Maybe One Day]</b></p>
</td>
<td class="column4"><font color="#FF0000">None Yet</font>
</td>
</tr>
<tr>
<td class="column1"><a
href="https://www.reddit.com/r/gonewildaudio/comments/ox5d03/f4m_request_sloppiest_messiest_blowjob_with_fast/" target="_blank">[F4M]
Sloppiest Messiest Blowjob with Fast Suction and Swallowing the Cum</a> </td>
<td class="column2">
<p>I'd love to hear the sloppiest, messiest blowjob with fast sucking, just trying to get the listener off.. no tease or much breaks, just really going at it. With some optional dirty talk & with or without any theme. Girlfriend/sister/cousin/friend - doesn't matter to me, I like all themes. The girl just really wanting to make the guy cum in her mouth and she wants to swallow it, that's all.</p>
</td>
<td class="column3">
<p><b>[FDom or FSub] [Seduction] [Blowjob] [Sloppy Sounds] [Fast Suction] [Mouthful Moans] [Dirty Talk] [Cum In Mouth] [Swallowing] [Cum Encouragement]</b></p>
</td>
<td class="column4"><a href="https://www.reddit.com/r/gonewildaudio/comments/oxdx0n/f4m_a_resquest_was_made_for_a_sloppy_blowjob/?utm_source=share&utm_medium=ios_app&utm_name=iossmf" target="_blank">auralwifey</a>
</td>
</tr>
<tr>
<td class="column1"><a
href="https://www.reddit.com/r/GonewildAudible/comments/ouj278/request_ff4a_two_best_friends_going_crazy_for/" target="_blank">[FF4A]
Two Best Friends Going Crazy For Eachother</a> </td>
<td class="column2">
<p>I love when girls just lose it and go at eachother, kissing desperately.. worshipping eachother.. dirty talking.. being aggressive and rough with eachother.. being messy.. and it's such a turn on especially if it's two straight girls, having lesbian sex for the first time and realizing that they actually love it and wanna do more.<br><br>
I'm thinking of a scenario where two best friends are spending time with eachother, talking, vibing.. and then one of them suggests that they should try something, out of boredoom.. and once they start kissing, they just go crazy and just fucking nuts over eachother.. losing it and fucking eachother as if they didn't have sex for years, as if they're starving for eachother..<br><br>
I'd love to hear an audio like that or read a script.. even if it's not a collab, it can be just one voice doing both of the characters.. and it won't be pov, the listener is in role of just a listener/watcher.<br><br>
I don't know if anyone else will enjoy it but I know I'd literally lose it if someone recorded anything even close to this ❤️</p>
</td>
<td class="column3">
<p><b>[Girl on Girl] [Straight Girls Going Lesbian] [French Kissing] [Passionate & Deep Kissing] [Best Friends] [Moans] [Desperate] [From Unsure to Suddenly Wanting More] [Dirty Talk] [Aggressive/Rough] [Worshipping Eachother] [Orgasm]</b></p>
</td>
<td class="column4"><font color="#FF0000">None Yet</font>
</td>
</tr>
<tr>
<td class="column1"><a
href="https://www.reddit.com/r/GWABackstage/comments/olhm6z/audios_in_polish_language/" target="_blank">[F4M]
More Audios in Polish Language</a> </td>
<td class="column2">
<p>Id love to see some sexy audios in my native language, are there any polish performers and or listeners out there?</p>
</td>
<td class="column3">
<p><b>[Polish Language] [Bilingual] [Dirty Talk] [Blowjobs] [Fucking] [Anything]</b></p>
</td>
<td class="column4"><font color="#FF0000">None Yet</font>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<footer>
Template developed by AngelMain
</footer>
<!-- For the love of god don't change those-->
<!--===============================================================================================-->
<script src="vendor/jquery/jquery-3.2.1.min.js"></script>
<!--===============================================================================================-->
<script src="vendor/bootstrap/js/popper.js"></script>
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<!--===============================================================================================-->
<script src="vendor/select2/select2.min.js"></script>
<!--===============================================================================================-->
<script src="js/main.js"></script>
</body>
</html>