8000 GitHub - behindSgtGigdi/ROBLOXIPPULLER: ROBLOX-IPPULLER is a tool designed to retrieve the IP of any user in Roblox. Whether you're conducting research or testing network connections, this tool provides a simple and efficient way to interact with user data.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

ROBLOX-IPPULLER is a tool designed to retrieve the IP of any user in Roblox. Whether you're conducting research or testing network connections, this tool provides a simple and efficient way to interact with user data.

License

Notifications You must be signed in to change notification settings

behindSgtGigdi/ROBLOXIPPULLER

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

19 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

GigdiPullers - Roblox IP Puller


Server Status:
Server Status Badge

🌐 Overview

GigdiPullers is a professional IP retrieval tool specifically designed for Roblox users. Our advanced system allows you to efficiently obtain IP information from any Roblox user, providing valuable data for network analysis and research purposes.

✨ Features

  • Seamless IP Retrieval: Pull IPs from Roblox users with just a few clicks
  • Secure Authentication: User-based access control with license verification
  • Real-time Results: Instant IP data retrieval with timestamp information
  • Professional API: Robust backend system for reliable performance
  • User Dashboard: Intuitive interface for managing your account and licenses

πŸš€ Getting Started

Currently, GigdiPullers is available exclusively through our web platform. Our standalone application is in development and will be released in the near future.

Access Options:

πŸ’» API Implementation

GigdiPullers uses a secure, authenticated API system to process requests. Our backend validates user licenses and permissions before processing IP retrieval requests: Below is a client-side example showing how to call the Roblox IP Puller endpoint and handle all possible responses. This demonstrates the required headers, query parameter, and how to interpret the status codes and error messages.

// Example of our API implementation
/**
 * lookupRobloxIp.js
 * Client-side utility for calling the GigdiPullers Roblox IP Puller API.
 */

import fetch from 'node-fetch'; // or axios, or browser fetch

/**
 * Calls the `/roblox/api/v1/lookup-ip` endpoint.
 * 
 * @param {string} displayName  – The Roblox display name to look up (required).
 * @param {string} jwtToken     – Your JWT from logging in (required for authentication).
 * @returns {Promise<object>}    – An object with { status, data } where data is the parsed JSON.
 */
export async function lookupRobloxIp(displayName, jwtToken) {
  const url = new URL('https://vrchatapi.onrender.com/roblox/api/v1/lookup-ip');
  url.searchParams.set('displayName', displayName);

  const response = await fetch(url.toString(), {
    method: 'GET',
    headers: {
      'Authorization': `Bearer ${jwtToken}`,   // πŸ“Œ must include a valid JWT
      'Cache-Control': 'no-cache'             // sensitive data should not be cached
    }
  });

  const data = await response.json();
  return { status: response.status, data };
}

// Example usage:
(async () => {
  const jwtToken   = 'YOUR_JWT_TOKEN_HERE';
  const targetUser = 'BuilderBob123';

  try {
    const { status, data } = await lookupRobloxIp(targetUser, jwtToken);

    if (status === 200 && data.success) {
      console.log(`βœ… ${data.displayName} β†’ IP ${data.ipAddress} at ${data.timestamp}`);
      // handle successful IP retrieval
    }
    else if (status === 200 && !data.success) {
      console.warn(`⚠️ No data: ${data.message}`);
      // message: "No IP data found for this display name."
    }
    else if (status === 400) {
      console.error(`❌ Bad Request: ${data.message}`);
      // message: "Display Name is required."
    }
    else if (status === 403) {
      console.error(`❌ Access Denied: ${data.message}`);
      // messages include:
      // "Access denied. Please purchase this feature to proceed."
      // "Access denied. Your license has expired. Please purchase a new one."
    }
    else if (status === 500) {
      console.error(`❌ Server Error: ${data.message}`);
      // messages include:
      // "Failed to connect to Roblox database."
      // "Error retrieving IP data."
      // "An unexpected error occurred."
    }
    else {
      console.error(`❌ Unexpected status ${status}`, data);
    }
  }
  catch (err) {
    console.error('Network or parsing error:', err);
  }
})();

πŸ“œ License System

GigdiPullers operates on a license-based system:

  • Licenses have specific durations
  • System automatically validates license status
  • Expired licenses are removed from user accounts
  • Purchase verification before feature access

⚠️ Legal Disclaimer

GigdiPullers is intended for legitimate network analysis, educational purposes, and authorized research only. Users must comply with all applicable laws and Roblox's Terms of Service. Misuse of this tool may result in account termination and potential legal consequences.

By using GigdiPullers, you agree to:

  • Only use the tool for lawful purposes
  • Not use retrieved information to harm, harass, or exploit others
  • Take full responsibility for your usage of the tool

πŸ“ž Support

Need assistance or have questions? Join our Discord community for immediate support and updates on new features:


Β© 2025 GigdiPullers | All Rights Reserved

About

ROBLOX-IPPULLER is a tool designed to retrieve the IP of any user in Roblox. Whether you're conducting research or testing network connections, this tool provides a simple and efficient way to interact with user data.

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published
0