Infinite robux on roblox prank to trick your friends!
// ==UserScript==
// @name Get infinite robux to troll you're friends!
// @namespace http://tampermonkey.net/
// @version 1.1
// @description Infinite robux on roblox prank to trick your friends!
// @author Flamex116
// @match https://www.roblox.com/*
// @grant none
// ==/UserScript==
function start() {
var robux = document.getElementById("nav-robux-amount");
robux.innerHTML = "192919718781T+";
setTimeout(start, 0);
}
start();