Guys you'd go gay for?

RaymondStone

Well-Known Member
Was watching Clerks, the animated series and Jay and Silent Bob brought up a very interesting topic. Is there a guy/girl you would go gay for? Me... James Franco :hump:
 

april

Pickle Queen
Mila Kunis, Jessica Alba, Sue joe Henson the sunday night sex show lady from way back when, freaky bitch knows way too much to suck in bed
 

StonedPony

Well-Known Member
PHOBIA STRIKES AGAIN.........should of worn my used Self contained Anti Gay suit from Rainbow Brite..........sheesh.....scardy cats LOL
 

Slojo69

Well-Known Member
Dude I'm with Wyte, Gays are just wrong, To say something like, I'd go gay for someone is just admitting you have gay tendencies lol. You love the cock, just admit it. I personally hate the whole gay community. Am I going to go out and gay bash people, prolly not, you can make yer own mind up about what you wanna be, but just don't bring that shit around me (and Wyte apparently lol) oh and ^5 Wyte, I feel ya 100%
 
Top
// Add this to your XenForo extra.js template or include in a separate JS file // 1. Basic Twemoji Implementation $(document).ready(function() { // Load Twemoji library $.getScript("https://unpkg.com/[email protected]/dist/twemoji.min.js", function() { // Function to replace native emojis with Twemoji function replaceTwemoji() { // Parse the DOM to replace emojis twemoji.parse(document.body, { folder: 'svg', ext: '.svg', callback: function(icon, options) { // Exclude certain characters if needed switch (icon) { case 'a9': // © copyright case 'ae': // ® registered trademark case '2122': // ™ trademark return false; } return ''.concat(options.base, options.folder, '/', icon, options.ext); } }); } // Initial replacement replaceTwemoji(); // Watch for new content (like when loading new posts) $(document).on('xf:layout', function() { replaceTwemoji(); }); // 2. Modify the XenForo emoji picker to use Twemoji if (XF.EmojiCompleter) { // Override the default emoji completer XF.EmojiCompleter = XF.extend(XF.EmojiCompleter, { insertEmoji: function(shortname) { // Call the original method to insert the emoji this.__super(shortname); // After insertion, replace with Twemoji setTimeout(function() { replaceTwemoji(); }, 10); } }); // Replace emojis in the picker $(document).on('shown.bs.dropdown', '.js-emojiContainer', function() { setTimeout(function() { twemoji.parse(document.querySelector('.js-emojiContainer'), { folder: 'svg', ext: '.svg' }); }, 50); }); } }); }); // 3. Add CSS for proper emoji display $(document).ready(function() { // Add CSS for emoji styling $("