Darmowa dla użytkowników domowych wersja programu antywirusowego AVG.
» Download
» Informacje
AVG Anti-Virus FreeDarmowa dla użytkowników domowych wersja programu antywirusowego AVG. » Download Zakupy bez ryzyka |
Fake Ip Logger Troll Script Fe Showcase Fixed -// Generate random fake IPv4 (looks realistic but completely fake) function generateFakeIP() const octet1 = Math.floor(Math.random() * 255); const octet2 = Math.floor(Math.random() * 255); const octet3 = Math.floor(Math.random() * 255); const octet4 = Math.floor(Math.random() * 255); // avoid localhost extremes? Not needed, it's fake. return `$octet1.$octet2.$octet3.$octet4`; .fake-button-group display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.2rem; margin-bottom: 0.5rem; Copy the code block below. This script has been optimized to prevent common syntax crashes, bypass outdated string manipulation errors, and run seamlessly within any active FE showcase environment. Before looking at the code, it is important to understand why older scripts fail. What is FilteringEnabled (FE)? .btn-danger:hover background: #4a2a2f; transform: scale(0.97); fake ip logger troll script fe showcase fixed To show off this script in a video, you need a few basic tools. .glitch-effect animation: glitch 0.2s ease-in-out 2; Many old troll scripts found on forums or paste sites are broken. They rely on outdated methods that require Workspace.FilteringEnabled to be set to false (which is no longer possible). When you run them in a modern executor, they either crash the client, do nothing, or only display the effects to the person executing the script, defeating the entire purpose of a showcase. How the Fixed Fake IP Logger Works -- FIXED FAKE IP LOGGER TROLL SCRIPT (FE SHOWCASE COMPATIBLE) -- Place this inside a LocalScript within StarterPlayerScripts or StarterGui local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local TweenService = game:GetService("TweenService") -- Configuration local TROLL_DELAY = 3 -- Seconds to wait before the "logging" begins local DETONATION_TIME = 0.5 -- Speed of text generation -- Realistic Mock Data Pools local continents = "North America", "Europe", "Asia", "South America" local countries = "United States", "Germany", "Japan", "Brazil", "United Kingdom", "Canada" local isps = "Comcast Xfinity", "Verizon Fios", "AT&T Internet", "Deutsche Telekom", "BT Broadband" local function generateFakeIP() return string.format("%d.%d.%d.%d", math.random(1, 254), math.random(0, 255), math.random(0, 255), math.random(1, 254)) end local function generateFakeIPv6() local blocks = {} for i = 1, 8 do table.insert(blocks, string.format("%x", math.random(0, 65535))) end return table.concat(blocks, ":") end local function startTrollSequence() task.wait(TROLL_DELAY) -- Generate custom profile for the player local targetIP = generateFakeIP() local targetIPv6 = generateFakeIPv6() local targetContinent = continents[math.random(1, #continents)] local targetCountry = countries[math.random(1, #countries)] local targetISP = isps[math.random(1, #isps)] -- Local Console Output (Scary visual effect for the exploiter) print("==================================================") warn("[SECURITY ALERT] Unauthorized Client Modification Detected.") print("Target Username: " .. LocalPlayer.Name) print("Target UserID: " .. LocalPlayer.UserId) task.wait(DETONATION_TIME) print("[LOGGING] Fetching network adapters...") task.wait(DETONATION_TIME) warn("[FOUND] IPv4 Address: " .. targetIP) warn("[FOUND] IPv6 Address: " .. targetIPv6) task.wait(DETONATION_TIME) print("[GEOLOCATING] Resolving ISP routing nodes...") print("ISP: " .. targetISP) print("Location: " .. targetCountry .. " (" .. targetContinent .. ")") warn("[STATUS] Packet routing logs successfully compiled and mirrored to server.") print("==================================================") -- Optional: Create an aggressive onscreen UI flash to maximize the troll effect local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "NetworkAlertGui" ScreenGui.ResetOnSpawn = false ScreenGui.Parent = LocalPlayer:WaitForChild("PlayerGui") local MainFrame = Instance.new("Frame") MainFrame.Size = UDim2.new(1, 0, 1, 0) MainFrame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) MainFrame.BackgroundTransparency = 1 MainFrame.Parent = ScreenGui local AlertText = Instance.new("TextLabel") AlertText.Size = UDim2.new(0.8, 0, 0.2, 0) AlertText.Position = UDim2.new(0.1, 0, 0.4, 0) AlertText.BackgroundTransparency = 1 AlertText.TextColor3 = Color3.fromRGB(255, 0, 0) AlertText.Font = Enum.Font.Code AlertText.TextSize = 24 AlertText.Text = "CRITICAL ERROR: NETWORK DATA LEAKED TO SERVER LOGS\nIP: " .. targetIP AlertText.TextTransparency = 1 AlertText.Parent = MainFrame -- Fade in the scary UI elements TweenService:Create(MainFrame, TweenInfo.new(1), BackgroundTransparency = 0.3):Play() TweenService:Create(AlertText, TweenInfo.new(1), TextTransparency = 0):Play() end -- Initialize sequence securely task.spawn(startTrollSequence) Use code with caution. Implementation Guide // Generate random fake IPv4 (looks realistic but Synapse Z, Wave, Electron, and MacSploit 💻 Code Structure: The FE Fixed Architecture .detail-chip span:last-child color: #b9f3e4; font-weight: bold; font-family: monospace; In Roblox, Filtering Enabled (FE) ensures that client-side actions do not automatically replicate to the server. Older troll scripts broke permanently when FE became mandatory. The version bypasses this barrier by utilizing localized UI rendering or open remote events to safely simulate animations across the network. Key Specifications Script Type: Luau / Roblox Executor Script Replication Status: FE Fixed (Fully Visible to Others) // first, start loader & glitch, then change data + log animateLoaderAndGlitch(() => // randomize fields, but with "grab" source const newData = randomizeAllFields(true, "grab"); // additional funny message addLogEntry(`🔥 TROLL ALERT: fake location set to "$newData.newLoc" — user is scared!`); addLogEntry(`📡 [SIMULATION] packet capture · no real data collected. just a prank.`); // also add specific isp note addLogEntry(`🎭 spoofed ISP "$newData.newIsp" — totally fake metadata.`); // re-enable buttons grabBtn.disabled = false; randomizeBtn.disabled = false; grabBtn.innerHTML = originalText; ); This script has been optimized to prevent common -- FE Fixed Fake IP Logger Troll Script Showcase -- Objects & Initial Setup local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local CoreGui = game:GetService("CoreGui") -- Generate a fake, believable IP address tracking string local function generateFakeData() local ip = string.format("%d.%d.%d.%d", math.random(64, 223), math.random(0, 255), math.random(0, 255), math.random(0, 255)) local mac = string.format("%02X:%02X:%02X:%02X:%02X:%02X", math.random(0,255), math.random(0,255), math.random(0,255), math.random(0,255), math.random(0,255), math.random(0,255)) local ports = "80", "443", "8080", "21", "22", "3389" return ip, mac, ports[math.random(1, #ports)] end -- Create the FE Troll Screen Interface local ScreenGui = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local TerminalText = Instance.new("TextLabel") ScreenGui.Name = "FETroll_IPLogger" ScreenGui.Parent = CoreGui ScreenGui.ResetOnSpawn = false MainFrame.Name = "MainFrame" MainFrame.Parent = ScreenGui MainFrame.BackgroundColor3 = Color3.fromRGB(10, 10, 10) MainFrame.BackgroundTransparency = 0.15 MainFrame.Position = UDim2.new(0.3, 0, 0.3, 0) MainFrame.Size = UDim2.new(0.4, 0, 0.4, 0) MainFrame.BorderSizePixel = 2 MainFrame.BorderColor3 = Color3.fromRGB(0, 255, 0) TerminalText.Name = "TerminalText" TerminalText.Parent = MainFrame TerminalText.BackgroundTransparency = 1 TerminalText.Size = UDim2.new(1, -20, 1, -20) TerminalText.Position = UDim2.new(0, 10, 0, 10) TerminalText.Font = Enum.Font.Code TerminalText.TextColor3 = Color3.fromRGB(0, 255, 0) TerminalText.TextSize = 14 TerminalText.TextXAlignment = Enum.TextXAlignment.Left TerminalText.TextYAlignment = Enum.TextYAlignment.Top TerminalText.TextWrapped = true -- FE Showcase Simulation Loop local fakeIp, fakeMac, fakePort = generateFakeData() local logs = "[STATUS] Initializing FE Packet Interceptor...", "[INFO] Establishing handshakes on Port: " .. fakePort, "[WARNING] Bypassing localized client firewalls...", "[SUCCESS] Target routing data extracted successfully.", "--------------------------------------------------", "TARGET IP : " .. fakeIp, "TARGET MAC : " .. fakeMac, "GEOLOCATION: STAGING_SERVER_REDACTED", "--------------------------------------------------", "[STATUS] Troll complete! This is a fake script showcase." -- Typewriter effect execution task.spawn(function() local currentText = "" for _, line in ipairs(logs) do for i = 1, #line do currentText = currentText .. string.sub(line, i, i) TerminalText.Text = currentText task.wait(0.02) end currentText = currentText .. "\n" TerminalText.Text = currentText task.wait(0.4) end end) Use code with caution. 🚀 Step-by-Step Execution Guide Never attempt to replace the randomized generation strings with actual webhooks or external IP-grabbing APIs (like IPLogger or Grabify). Doing so violates the Roblox Terms of Service and can result in permanent hardware bans. @keyframes blink 0% opacity: 0.4; 100% opacity: 1; |