Fake Ip Logger Troll — Script Fe Showcase Fixed

-- FIXED FAKE IP LOGGER TROLL SCRIPT (FE SHOWCASE VERSION) -- Safe, randomized, and optimized for modern executors local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local PlayerGui = LocalPlayer:WaitForChild("PlayerGui") -- Prevent duplicate UI instances if PlayerGui:FindFirstChild("FakeHackerTerminal") then PlayerGui.FakeHackerTerminal:Destroy() end -- Create ScreenGui local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "FakeHackerTerminal" ScreenGui.ResetOnSpawn = false ScreenGui.Parent = PlayerGui -- Create Main Terminal Frame local MainFrame = Instance.new("Frame") MainFrame.Size = UDim2.new(0, 400, 0, 250) MainFrame.Position = UDim2.new(0.5, -200, 0.4, -125) MainFrame.BackgroundColor3 = Color3.fromRGB(15, 15, 15) MainFrame.BorderSizePixel = 2 MainFrame.BorderColor3 = Color3.fromRGB(0, 255, 0) MainFrame.Active = true MainFrame.Draggable = true -- Allows you to move it around during showcases MainFrame.Parent = ScreenGui -- Create Text Label for Console Output local TextLabel = Instance.new("TextLabel") TextLabel.Size = UDim2.new(1, -20, 1, -20) TextLabel.Position = UDim2.new(0, 10, 0, 10) TextLabel.BackgroundTransparency = 1 TextLabel.TextColor3 = Color3.fromRGB(0, 255, 0) TextLabel.Font = Enum.Font.Code TextLabel.TextSize = 14 TextLabel.TextXAlignment = Enum.TextXAlignment.Left TextLabel.TextYAlignment = Enum.TextYAlignment.Top TextLabel.TextWrapped = true TextLabel.Text = "Initializing Protocol..." TextLabel.Parent = MainFrame -- Helper function to generate realistic fake data local function generateFakeIP() return string.format("%d.%d.%d.%d", math.random(64, 223), math.random(0, 255), math.random(0, 255), math.random(1, 254)) end local isps = "Comcast Cable", "AT&T Internet", "Verizon Fios", "Spectrum", "CenturyLink" local cities = "New York", "Los Angeles", "Chicago", "Houston", "Phoenix", "London", "Tokyo" -- Simulation Sequence local function runSimulation() local targetName = "Unknown_User" -- Try to grab a random player from the server as a target local allPlayers = Players:GetPlayers() if #allPlayers > 1 then local randomPlayer = allPlayers[math.random(1, #allPlayers)] if randomPlayer ~= LocalPlayer then targetName = randomPlayer.Name end end local steps = "Connecting to secure proxy...", "Bypassing player network firewall...", "Target Found: " .. targetName, "Injecting handshake packet...", "Extracting network metadata...", "------------------------------------", "LOG SUCCESSFUL:", "IP ADDRESS: " .. generateFakeIP(), "SUBNET MASK: 255.255.255.0", "ISP: " .. isps[math.random(1, #isps)], "LOCATION: " .. cities[math.random(1, #cities)] .. ", Proxy Active", "LATITUDE: " .. string.format("%.4f", math.random(-90, 90)) .. "°", "LONGITUDE: " .. string.format("%.4f", math.random(-180, 180)) .. "°", "------------------------------------", "Terminal session idle. Disconnecting safely." local currentText = "" for _, line in ipairs(steps) do currentText = currentText .. line .. "\n" TextLabel.Text = currentText task.wait(math.random(4, 12) / 10) -- Creates a realistic variable typing speed end end -- Run the troll simulation in a separate thread task.spawn(runSimulation) Use code with caution. Key Fixes Applied in This Version

While this script is a harmless aesthetic joke designed for video showcases, misusing ui-based scripts can lead to account penalties if not managed correctly.

Yes, for harmless pranks. Just don't be toxic with it. fake ip logger troll script fe showcase fixed

Place a inside a ScreenGui located in StarterGui . Paste the following code:

In the Roblox development community, creating prank scripts for Filtering Enabled (FE) environments is a popular way to learn Luau programming and understand server-client replication. A "Fake IP Logger" is a classic harmless troll script. It scares exploitative players or friends by displaying fake network data on their screens. -- FIXED FAKE IP LOGGER TROLL SCRIPT (FE

In the world of Roblox scripting and social engineering, few things create as much immediate panic as a player seeing their "IP address" appearing in a public chat. The is a classic "scare-troll" designed to trick players into believing their private information has been compromised. What is a Fake IP Logger Script?

"FE" stands for Front-End. In this context, an FE showcase is a polished, interactive webpage that mimics a real IP logging service. It typically includes: isps[math

<script> // ---------- FAKE IP LOGGER TROLL SCRIPT (SHOWCASE FIXED) ---------- // This script generates entertaining fake logs & IPs, simulates a "hacker tool" vibe // but does NOT collect, store, or transmit any real data.

The script uses completely randomized math ( math.random ) to generate network data. It does not look at actual machine info or make external HTTP requests. It is safe for showcases and public games. If you want to customize this further, let me know:

Copy the FE Fixed code block provided above and paste it directly into your executor’s script tab. Execute: Click the "Run" or "Execute" button.

This script is fully optimized and fixed for modern Lua executors. It creates a sleek, hacker-style terminal overlay on your screen that simulates a "scanning" process before outputting completely randomized data.