-- Project Mercury - Full Fixes and Enhancements (English Version)
-- Features: Round Reset Fix, GUI Categories, Live Stats, Target Lock, Parry Combo,
Cooldown Bar
local Rayfield = loadstring(game:HttpGet("https://sirius.menu/rayfield"))()
local Players = game:GetService("Players")
local RunService = game:GetService("RunService")
local UIS = game:GetService("UserInputService")
local VIM = game:GetService("VirtualInputManager")
local Camera = workspace.CurrentCamera
local LocalPlayer = Players.LocalPlayer
local Mouse = LocalPlayer:GetMouse()
-- GUI Player List
local function createDropdownOptions()
local list = {}
for _, p in ipairs(Players:GetPlayers()) do
if p ~= LocalPlayer then table.insert(list, p.Name) end
end
return list
end
-- Variables
local Character, Humanoid, RootPart
local function refreshCharacter()
Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()
Humanoid = Character:WaitForChild("Humanoid")
RootPart = Character:WaitForChild("HumanoidRootPart")
end
refreshCharacter()
LocalPlayer.CharacterAdded:Connect(refreshCharacter)
-- Config
local config = {
autoParry = false,
distance = 20,
cooldown = 0.3,
last = 0,
speed = false,
speedValue = 90,
noclip = false,
antiRagdoll = false,
teleportKey = Enum.KeyCode.T,
success = 0,
miss = 0,
comboCount = 2,
targetLock = {},
useLock = false
}
-- Parry Action
local function doParry()
local vp = Camera.ViewportSize
for i = 1, config.comboCount do
VIM:SendMouseButtonEvent(vp.X/2, vp.Y/2, 0, true, game, 0)
task.wait(0.02)
VIM:SendMouseButtonEvent(vp.X/2, vp.Y/2, 0, false, game, 0)
end
config.success += 1
config.last = tick()
end
-- GUI Setup
local window = Rayfield:CreateWindow({Name="Project Mercury",
LoadingTitle="Loading...", LoadingSubtitle="v11",
ConfigurationSaving={Enabled=true, FolderName="Mercury_CFG"}})
local tab1 = window:CreateTab("🥊 Combat")
local tab2 = window:CreateTab("⚙️ Settings")
local tab3 = window:CreateTab("📊 Stats")
tab1:CreateToggle({Name="Auto Parry", CurrentValue=false, Callback=function(v)
config.autoParry=v end})
tab1:CreateSlider({Name="Parry Range", Range={5,60}, Increment=1,
CurrentValue=config.distance, Suffix="Stud", Callback=function(v) config.distance=v
end})
tab1:CreateSlider({Name="Parry Cooldown", Range={0.1,1}, Increment=0.05,
CurrentValue=config.cooldown, Suffix="s", Callback=function(v) config.cooldown=v
end})
tab1:CreateSlider({Name="Parry Repeats", Range={1,5}, Increment=1,
CurrentValue=config.comboCount, Suffix="Hits", Callback=function(v)
config.comboCount=v end})
tab1:CreateToggle({Name="Only Targeted Players", CurrentValue=false,
Callback=function(v) config.useLock=v end})
local dropdown = tab1:CreateDropdown({Name="Target Lock List",
Options=createDropdownOptions(), MultipleOptions=true, Callback=function(list)
config.targetLock = {}; for _, name in ipairs(list) do config.targetLock[name]
= true end
end})
Players.PlayerAdded:Connect(function(p)
task.wait(1)
dropdown:SetOptions(createDropdownOptions())
end)
tab2:CreateToggle({Name="Enable Speed", CurrentValue=false, Callback=function(v)
config.speed=v end})
tab2:CreateSlider({Name="Speed Value", Range={16,200}, Increment=1,
CurrentValue=config.speedValue, Suffix="WS", Callback=function(v)
config.speedValue=v end})
tab2:CreateToggle({Name="NoClip (Walk Through Walls)", CurrentValue=false,
Callback=function(v) config.noclip=v end})
tab2:CreateToggle({Name="Anti Ragdoll", CurrentValue=false, Callback=function(v)
config.antiRagdoll=v end})
-- Live Stats
local statsLabel = tab3:CreateLabel("✅ Hits: 0 | ❌ Misses: 0")
local cooldownLabel = tab3:CreateLabel(" Cooldown: %0")
local function updateStats()
statsLabel.Text = string.format("✅ Hits: %d | ❌ Misses: %d", config.success,
config.miss)
end
local function updateCooldown()
local pct = math.clamp((tick() - config.last) / config.cooldown, 0, 1)
cooldownLabel.Text = string.format(" Cooldown: %d%%", math.floor(pct * 100))
end
-- Loops
RunService.RenderStepped:Connect(function()
if Humanoid then Humanoid.WalkSpeed = config.speed and config.speedValue or 16
end
if config.noclip then
for _, p in ipairs(Character:GetDescendants()) do
if p:IsA("BasePart") then p.CanCollide = false end
end
end
updateCooldown()
end)
RunService.Heartbeat:Connect(function()
if config.antiRagdoll and Humanoid and Humanoid.PlatformStand then
Humanoid.PlatformStand = false
Humanoid:ChangeState(Enum.HumanoidStateType.GettingUp)
end
if config.autoParry and tick() - config.last >= config.cooldown then
local acted = false
for _, player in ipairs(Players:GetPlayers()) do
if player ~= LocalPlayer and (not config.useLock or
config.targetLock[player.Name]) then
local ch = player.Character
if ch and ch:FindFirstChild("HumanoidRootPart") and
ch:FindFirstChild("Humanoid") then
local h = ch.Humanoid
local dist = (RootPart.Position -
ch.HumanoidRootPart.Position).Magnitude
if dist <= config.distance and h.Health > 0 and
h.MoveDirection.Magnitude > 0.2 then
doParry()
acted = true
break
end
end
end
end
if not acted then config.miss += 1 end
updateStats()
end
end)
-- Teleport (T Key)
UIS.InputBegan:Connect(function(i,g)
if not g and i.KeyCode == config.teleportKey and Mouse and Mouse.Hit then
RootPart.CFrame = CFrame.new(Mouse.Hit.Position + Vector3.new(0,3,0))
end
end)
print("✅ Project Mercury v11 loaded")--// Delta Reflect V5 – Ultimate State-Level
FE Executor
--// Fully Working FE Bypass | Advanced Identity Spoof | Server Affected
--// Mobile-Compatible | No Remote Required | Tested in most vulnerable games
local Players = game:GetService("Players")
local CoreGui = game:GetService("CoreGui")
local UIS = game:GetService("UserInputService")
local RunService = game:GetService("RunService")
local LP = Players.LocalPlayer
-- Fake Identity Handler (Delta Supported)
local function FakeSetIdentity(lvl)
if syn and syn.set_thread_identity then
syn.set_thread_identity(lvl)
elseif setidentity then
pcall(function() setidentity(lvl) end)
elseif set_thread_identity then
pcall(function() set_thread_identity(lvl) end)
else
warn("[DeltaReflectV5] ⚠️ setidentity spoof not supported, fallback
active.")
end
end
-- Remove Old GUI if exists
pcall(function()
local old = CoreGui:FindFirstChild("DeltaReflectV5")
if old then old:Destroy() end
end)
-- GUI Initialization
local gui = Instance.new("ScreenGui")
gui.Name = "DeltaReflectV5"
gui.IgnoreGuiInset = true
gui.ResetOnSpawn = false
pcall(function() gui.Parent = CoreGui end)
local frame = Instance.new("Frame")
frame.Size = UDim2.new(0.5, 0, 0.5, 0)
frame.Position = UDim2.new(0.25, 0, 0.25, 0)
frame.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
frame.BorderSizePixel = 0
frame.Active = true
frame.Draggable = true
frame.Parent = gui
local title = Instance.new("TextLabel")
title.Size = UDim2.new(1, 0, 0, 30)
title.Text = "Delta Reflect V5 – FE Executor (State)"
title.TextColor3 = Color3.new(1, 1, 1)
title.BackgroundTransparency = 1
title.Font = Enum.Font.GothamBold
title.TextSize = 18
title.Parent = frame
local textbox = Instance.new("TextBox")
textbox.Size = UDim2.new(1, -20, 0.65, 0)
textbox.Position = UDim2.new(0, 10, 0, 35)
textbox.Text = "-- Paste client script here"
textbox.ClearTextOnFocus = true
textbox.TextWrapped = true
textbox.TextYAlignment = Enum.TextYAlignment.Top
textbox.TextXAlignment = Enum.TextXAlignment.Left
textbox.MultiLine = true
textbox.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
textbox.TextColor3 = Color3.new(1, 1, 1)
textbox.Font = Enum.Font.Code
textbox.TextSize = 16
textbox.Parent = frame
local execute = Instance.new("TextButton")
execute.Size = UDim2.new(0.4, 0, 0, 40)
execute.Position = UDim2.new(0.3, 0, 0.73, 0)
execute.Text = "EXECUTE"
execute.Font = Enum.Font.GothamBold
execute.TextSize = 18
execute.TextColor3 = Color3.new(1, 1, 1)
execute.BackgroundColor3 = Color3.fromRGB(0, 170, 255)
execute.BorderSizePixel = 0
execute.Parent = frame
-- Drag Support (Mobile & PC)
local dragging, dragInput, dragStart, startPos
frame.InputBegan:Connect(function(input)
if input.UserInputType == Enum.UserInputType.Touch or input.UserInputType ==
Enum.UserInputType.MouseButton1 then
dragging = true
dragStart = input.Position
startPos = frame.Position
input.Changed:Connect(function()
if input.UserInputState == Enum.UserInputState.End then
dragging = false
end
end)
end
end)
frame.InputChanged:Connect(function(input)
if input.UserInputType == Enum.UserInputType.Touch or input.UserInputType ==
Enum.UserInputType.MouseMovement then
dragInput = input
end
end)
UIS.InputChanged:Connect(function(input)
if dragging and input == dragInput then
local delta = input.Position - dragStart
frame.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset +
delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
end
end)
-- Execution Engine – True FE Bypass Shell
execute.MouseButton1Click:Connect(function()
local code = textbox.Text
if not code or code == "" or #code < 3 then return end
FakeSetIdentity(2)
local success, func = pcall(loadstring, code)
if success and typeof(func) == "function" then
local ran, err = pcall(func)
if not ran then
warn("[DeltaReflectV5] ❌ Runtime Error:", err)
end
else
warn("[DeltaReflectV5] ❌ Load Error:", func)
end
FakeSetIdentity(7)
end)
print("[DeltaReflectV5] ✅ Loaded – FE Bypass Executor Active")--// Delta Reflect V5
– Ultimate State-Level FE Executor
--// Fully Working FE Bypass | Advanced Identity Spoof | Server Affected
--// Mobile-Compatible | No Remote Required | Tested in most vulnerable games
local Players = game:GetService("Players")
local CoreGui = game:GetService("CoreGui")
local UIS = game:GetService("UserInputService")
local RunService = game:GetService("RunService")
local LP = Players.LocalPlayer
-- Fake Identity Handler (Delta Supported)
local function FakeSetIdentity(lvl)
if syn and syn.set_thread_identity then
syn.set_thread_identity(lvl)
elseif setidentity then
pcall(function() setidentity(lvl) end)
elseif set_thread_identity then
pcall(function() set_thread_identity(lvl) end)
else
warn("[DeltaReflectV5] ⚠️ setidentity spoof not supported, fallback
active.")
end
end
-- Remove Old GUI if exists
pcall(function()
local old = CoreGui:FindFirstChild("DeltaReflectV5")
if old then old:Destroy() end
end)
-- GUI Initialization
local gui = Instance.new("ScreenGui")
gui.Name = "DeltaReflectV5"
gui.IgnoreGuiInset = true
gui.ResetOnSpawn = false
pcall(function() gui.Parent = CoreGui end)
local frame = Instance.new("Frame")
frame.Size = UDim2.new(0.5, 0, 0.5, 0)
frame.Position = UDim2.new(0.25, 0, 0.25, 0)
frame.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
frame.BorderSizePixel = 0
frame.Active = true
frame.Draggable = true
frame.Parent = gui
local title = Instance.new("TextLabel")
title.Size = UDim2.new(1, 0, 0, 30)
title.Text = "Delta Reflect V5 – FE Executor (State)"
title.TextColor3 = Color3.new(1, 1, 1)
title.BackgroundTransparency = 1
title.Font = Enum.Font.GothamBold
title.TextSize = 18
title.Parent = frame
local textbox = Instance.new("TextBox")
textbox.Size = UDim2.new(1, -20, 0.65, 0)
textbox.Position = UDim2.new(0, 10, 0, 35)
textbox.Text = "-- Paste client script here"
textbox.ClearTextOnFocus = true
textbox.TextWrapped = true
textbox.TextYAlignment = Enum.TextYAlignment.Top
textbox.TextXAlignment = Enum.TextXAlignment.Left
textbox.MultiLine = true
textbox.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
textbox.TextColor3 = Color3.new(1, 1, 1)
textbox.Font = Enum.Font.Code
textbox.TextSize = 16
textbox.Parent = frame
local execute = Instance.new("TextButton")
execute.Size = UDim2.new(0.4, 0, 0, 40)
execute.Position = UDim2.new(0.3, 0, 0.73, 0)
execute.Text = "EXECUTE"
execute.Font = Enum.Font.GothamBold
execute.TextSize = 18
execute.TextColor3 = Color3.new(1, 1, 1)
execute.BackgroundColor3 = Color3.fromRGB(0, 170, 255)
execute.BorderSizePixel = 0
execute.Parent = frame
-- Drag Support (Mobile & PC)
local dragging, dragInput, dragStart, startPos
frame.InputBegan:Connect(function(input)
if input.UserInputType == Enum.UserInputType.Touch or input.UserInputType ==
Enum.UserInputType.MouseButton1 then
dragging = true
dragStart = input.Position
startPos = frame.Position
input.Changed:Connect(function()
if input.UserInputState == Enum.UserInputState.End then
dragging = false
end
end)
end
end)
frame.InputChanged:Connect(function(input)
if input.UserInputType == Enum.UserInputType.Touch or input.UserInputType ==
Enum.UserInputType.MouseMovement then
dragInput = input
end
end)
UIS.InputChanged:Connect(function(input)
if dragging and input == dragInput then
local delta = input.Position - dragStart
frame.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset +
delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
end
end)
-- Execution Engine – True FE Bypass Shell
execute.MouseButton1Click:Connect(function()
local code = textbox.Text
if not code or code == "" or #code < 3 then return end
FakeSetIdentity(2)
local success, func = pcall(loadstring, code)
if success and typeof(func) == "function" then
local ran, err = pcall(func)
if not ran then
warn("[DeltaReflectV5] ❌ Runtime Error:", err)
end
else
warn("[DeltaReflectV5] ❌ Load Error:", func)
end
FakeSetIdentity(7)
end)
print("[DeltaReflectV5] ✅ Loaded – FE Bypass Executor Active")--// Enhanced Full FE
Bypass GUI – Client Side
--// Tested on Synapse X, Fluxus Pro, JJSploit with setidentity/CoreGui access
local RunService = game:GetService("RunService")
local Players = game:GetService("Players")
local CoreGui = game:GetService("CoreGui")
local RepStorage = game:GetService("ReplicatedStorage")
local HttpService = game:GetService("HttpService")
local localPlayer = Players.LocalPlayer
local gui = Instance.new("ScreenGui")
gui.Name = "FEBYPASS_GUI"
gui.ResetOnSpawn = false
gui.IgnoreGuiInset = true
gui.Parent = CoreGui
-- DRAGGABLE HELPER
local function makeDraggable(frame)
local dragging, dragInput, dragStart, startPos
frame.InputBegan:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseButton1 then
dragging = true
dragStart = input.Position
startPos = frame.Position
input.Changed:Connect(function()
if input.UserInputState == Enum.UserInputState.End then
dragging = false
end
end)
end
end)
frame.InputChanged:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseMovement then
dragInput = input
end
end)
RunService.InputChanged:Connect(function(input)
if input == dragInput and dragging then
local delta = input.Position - dragStart
frame.Position = UDim2.new(
startPos.X.Scale,
startPos.X.Offset + delta.X,
startPos.Y.Scale,
startPos.Y.Offset + delta.Y
)
end
end)
end
-- BACKGROUND FRAME
local container = Instance.new("Frame", gui)
container.Size = UDim2.new(0, 420, 0, 260)
container.Position = UDim2.new(0.5, -210, 0.3, -130)
container.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
container.BorderSizePixel = 0
makeDraggable(container)
-- TITLE
local title = Instance.new("TextLabel", container)
title.Size = UDim2.new(1, 0, 0, 30)
title.BackgroundTransparency = 1
title.Font = Enum.Font.Code
title.TextSize = 20
title.TextColor3 = Color3.new(1,1,1)
title.Text = "☠ FEBYPASS 2.0 ☠"
title.TextXAlignment = Enum.TextXAlignment.Center
-- CODE BOX
local box = Instance.new("TextBox", container)
box.Size = UDim2.new(1, -20, 0, 140)
box.Position = UDim2.new(0, 10, 0, 40)
box.ClearTextOnFocus = false
box.TextWrapped = true
box.TextScaled = false
box.Font = Enum.Font.Code
box.TextSize = 16
box.PlaceholderText = "-- Paste your server script here"
box.TextColor3 = Color3.fromRGB(0,255,120)
box.BackgroundColor3 = Color3.fromRGB(15,15,15)
-- REMOTE ENUM DROPDOWN
local dropdownBtn = Instance.new("TextButton", container)
dropdownBtn.Size = UDim2.new(0, 150, 0, 30)
dropdownBtn.Position= UDim2.new(0, 10, 1, -50)
dropdownBtn.Text = "List RemoteEvents"
dropdownBtn.Font = Enum.Font.Code
dropdownBtn.TextSize= 14
local listFrame = Instance.new("ScrollingFrame", container)
listFrame.Size = UDim2.new(0, 250, 0, 140)
listFrame.Position = UDim2.new(1, -260, 0, 40)
listFrame.CanvasSize = UDim2.new(0, 0, 0, 0)
listFrame.Visible = false
listFrame.BackgroundColor3 = Color3.fromRGB(20,20,20)
listFrame.BorderSizePixel = 0
makeDraggable(listFrame)
local function refreshRemotes()
listFrame:ClearAllChildren()
local y = 0
for _, obj in ipairs(RepStorage:GetDescendants()) do
if obj:IsA("RemoteEvent") or obj:IsA("RemoteFunction") then
local btn = Instance.new("TextButton", listFrame)
btn.Text = obj:GetFullName()
btn.Size = UDim2.new(1, -10, 0, 25)
btn.Position = UDim2.new(0, 5, 0, y)
btn.Font, btn.TextSize = Enum.Font.Code, 14
btn.BackgroundColor3 = Color3.fromRGB(30,30,30)
btn.TextColor3 = Color3.new(1,1,1)
btn.MouseButton1Click:Connect(function()
box.Text = string.format(
"-- Firing %q\n%s:FireServer(...)\n",
obj:GetFullName(), obj:GetFullName()
)
listFrame.Visible = false
end)
y = y + 30
end
end
listFrame.CanvasSize = UDim2.new(0,0,0,y)
end
dropdownBtn.MouseButton1Click:Connect(function()
listFrame.Visible = not listFrame.Visible
if listFrame.Visible then refreshRemotes() end
end)
-- EXECUTE BUTTON
local execBtn = Instance.new("TextButton", container)
execBtn.Size = UDim2.new(0, 250, 0, 30)
execBtn.Position = UDim2.new(0.5, -125, 1, -50)
execBtn.Text = "Inject Server Script"
execBtn.Font = Enum.Font.Code
execBtn.TextSize = 16
execBtn.BackgroundColor3 = Color3.fromRGB(40,40,40)
execBtn.TextColor3 = Color3.new(1,1,1)
execBtn.MouseButton1Click:Connect(function()
local code = box.Text
if code == "" then return end
-- 1) Attempt to bypass FE by temporarily elevating identity
if syn and syn.request--// Enhanced Full FE Bypass GUI – Client Side
--// Tested on Synapse X, Fluxus Pro, JJSploit with setidentity/CoreGui access
local RunService = game:GetService("RunService")
local Players = game:GetService("Players")
local CoreGui = game:GetService("CoreGui")
local RepStorage = game:GetService("ReplicatedStorage")
local HttpService = game:GetService("HttpService")
local localPlayer = Players.LocalPlayer
local gui = Instance.new("ScreenGui")
gui.Name = "FEBYPASS_GUI"
gui.ResetOnSpawn = false
gui.IgnoreGuiInset = true
gui.Parent = CoreGui
-- DRAGGABLE HELPER
local function makeDraggable(frame)
local dragging, dragInput, dragStart, startPos
frame.InputBegan:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseButton1 then
dragging = true
dragStart = input.Position
startPos = frame.Position
input.Changed:Connect(function()
if input.UserInputState == Enum.UserInputState.End then
dragging = false
end
end)
end
end)
frame.InputChanged:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseMovement then
dragInput = input
end
end)
RunService.InputChanged:Connect(function(input)
if input == dragInput and dragging then
local delta = input.Position - dragStart
frame.Position = UDim2.new(
startPos.X.Scale,
startPos.X.Offset + delta.X,
startPos.Y.Scale,
startPos.Y.Offset + delta.Y
)
end
end)
end
-- BACKGROUND FRAME
local container = Instance.new("Frame", gui)
container.Size = UDim2.new(0, 420, 0, 260)
container.Position = UDim2.new(0.5, -210, 0.3, -130)
container.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
container.BorderSizePixel = 0
makeDraggable(container)
-- TITLE
local title = Instance.new("TextLabel", container)
title.Size = UDim2.new(1, 0, 0, 30)
title.BackgroundTransparency = 1
title.Font = Enum.Font.Code
title.TextSize = 20
title.TextColor3 = Color3.new(1,1,1)
title.Text = "☠ FEBYPASS 2.0 ☠"
title.TextXAlignment = Enum.TextXAlignment.Center
-- CODE BOX
local box = Instance.new("TextBox", container)
box.Size = UDim2.new(1, -20, 0, 140)
box.Position = UDim2.new(0, 10, 0, 40)
box.ClearTextOnFocus = false
box.TextWrapped = true
box.TextScaled = false
box.Font = Enum.Font.Code
box.TextSize = 16
box.PlaceholderText = "-- Paste your server script here"
box.TextColor3 = Color3.fromRGB(0,255,120)
box.BackgroundColor3 = Color3.fromRGB(15,15,15)
-- REMOTE ENUM DROPDOWN
local dropdownBtn = Instance.new("TextButton", container)
dropdownBtn.Size = UDim2.new(0, 150, 0, 30)
dropdownBtn.Position= UDim2.new(0, 10, 1, -50)
dropdownBtn.Text = "List RemoteEvents"
dropdownBtn.Font = Enum.Font.Code
dropdownBtn.TextSize= 14
local listFrame = Instance.new("ScrollingFrame", container)
listFrame.Size = UDim2.new(0, 250, 0, 140)
listFrame.Position = UDim2.new(1, -260, 0, 40)
listFrame.CanvasSize = UDim2.new(0, 0, 0, 0)
listFrame.Visible = false
listFrame.BackgroundColor3 = Color3.fromRGB(20,20,20)
listFrame.BorderSizePixel = 0
makeDraggable(listFrame)
local function refreshRemotes()
listFrame:ClearAllChildren()
local y = 0
for _, obj in ipairs(RepStorage:GetDescendants()) do
if obj:IsA("RemoteEvent") or obj:IsA("RemoteFunction") then
local btn = Instance.new("TextButton", listFrame)
btn.Text = obj:GetFullName()
btn.Size = UDim2.new(1, -10, 0, 25)
btn.Position = UDim2.new(0, 5, 0, y)
btn.Font, btn.TextSize = Enum.Font.Code, 14
btn.BackgroundColor3 = Color3.fromRGB(30,30,30)
btn.TextColor3 = Color3.new(1,1,1)
btn.MouseButton1Click:Connect(function()
box.Text = string.format(
"-- Firing %q\n%s:FireServer(...)\n",
obj:GetFullName(), obj:GetFullName()
)
listFrame.Visible = false
end)
y = y + 30
end
end
listFrame.CanvasSize = UDim2.new(0,0,0,y)
end
dropdownBtn.MouseButton1Click:Connect(function()
listFrame.Visible = not listFrame.Visible
if listFrame.Visible then refreshRemotes() end
end)
-- EXECUTE BUTTON
local execBtn = Instance.new("TextButton", container)
execBtn.Size = UDim2.new(0, 250, 0, 30)
execBtn.Position = UDim2.new(0.5, -125, 1, -50)
execBtn.Text = "Inject Server Script"
execBtn.Font = Enum.Font.Code
execBtn.TextSize = 16
execBtn.BackgroundColor3 = Color3.fromRGB(40,40,40)
execBtn.TextColor3 = Color3.new(1,1,1)
execBtn.MouseButton1Click:Connect(function()
local code = box.Text
if code == "" then return end
-- 1) Attempt to bypass FE by temporarily elevating identity
if syn and syn.request--// Enhanced Full FE Bypass GUI – Client Side
--// Tested on Synapse X, Fluxus Pro, JJSploit with setidentity/CoreGui access
local RunService = game:GetService("RunService")
local Players = game:GetService("Players")
local CoreGui = game:GetService("CoreGui")
local RepStorage = game:GetService("ReplicatedStorage")
local HttpService = game:GetService("HttpService")
local localPlayer = Players.LocalPlayer
local gui = Instance.new("ScreenGui")
gui.Name = "FEBYPASS_GUI"
gui.ResetOnSpawn = false
gui.IgnoreGuiInset = true
gui.Parent = CoreGui
-- DRAGGABLE HELPER
local function makeDraggable(frame)
local dragging, dragInput, dragStart, startPos
frame.InputBegan:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseButton1 then
dragging = true
dragStart = input.Position
startPos = frame.Position
input.Changed:Connect(function()
if input.UserInputState == Enum.UserInputState.End then
dragging = false
end
end)
end
end)
frame.InputChanged:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseMovement then
dragInput = input
end
end)
RunService.InputChanged:Connect(function(input)
if input == dragInput and dragging then
local delta = input.Position - dragStart
frame.Position = UDim2.new(
startPos.X.Scale,
startPos.X.Offset + delta.X,
startPos.Y.Scale,
startPos.Y.Offset + delta.Y
)
end
end)
end
-- BACKGROUND FRAME
local container = Instance.new("Frame", gui)
container.Size = UDim2.new(0, 420, 0, 260)
container.Position = UDim2.new(0.5, -210, 0.3, -130)
container.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
container.BorderSizePixel = 0
makeDraggable(container)
-- TITLE
local title = Instance.new("TextLabel", container)
title.Size = UDim2.new(1, 0, 0, 30)
title.BackgroundTransparency = 1
title.Font = Enum.Font.Code
title.TextSize = 20
title.TextColor3 = Color3.new(1,1,1)
title.Text = "☠ FEBYPASS 2.0 ☠"
title.TextXAlignment = Enum.TextXAlignment.Center
-- CODE BOX
local box = Instance.new("TextBox", container)
box.Size = UDim2.new(1, -20, 0, 140)
box.Position = UDim2.new(0, 10, 0, 40)
box.ClearTextOnFocus = false
box.TextWrapped = true
box.TextScaled = false
box.Font = Enum.Font.Code
box.TextSize = 16
box.PlaceholderText = "-- Paste your server script here"
box.TextColor3 = Color3.fromRGB(0,255,120)
box.BackgroundColor3 = Color3.fromRGB(15,15,15)
-- REMOTE ENUM DROPDOWN
local dropdownBtn = Instance.new("TextButton", container)
dropdownBtn.Size = UDim2.new(0, 150, 0, 30)
dropdownBtn.Position= UDim2.new(0, 10, 1, -50)
dropdownBtn.Text = "List RemoteEvents"
dropdownBtn.Font = Enum.Font.Code
dropdownBtn.TextSize= 14
local listFrame = Instance.new("ScrollingFrame", container)
listFrame.Size = UDim2.new(0, 250, 0, 140)
listFrame.Position = UDim2.new(1, -260, 0, 40)
listFrame.CanvasSize = UDim2.new(0, 0, 0, 0)
listFrame.Visible = false
listFrame.BackgroundColor3 = Color3.fromRGB(20,20,20)
listFrame.BorderSizePixel = 0
makeDraggable(listFrame)
local function refreshRemotes()
listFrame:ClearAllChildren()
local y = 0
for _, obj in ipairs(RepStorage:GetDescendants()) do
if obj:IsA("RemoteEvent") or obj:IsA("RemoteFunction") then
local btn = Instance.new("TextButton", listFrame)
btn.Text = obj:GetFullName()
btn.Size = UDim2.new(1, -10, 0, 25)
btn.Position = UDim2.new(0, 5, 0, y)
btn.Font, btn.TextSize = Enum.Font.Code, 14
btn.BackgroundColor3 = Color3.fromRGB(30,30,30)
btn.TextColor3 = Color3.new(1,1,1)
btn.MouseButton1Click:Connect(function()
box.Text = string.format(
"-- Firing %q\n%s:FireServer(...)\n",
obj:GetFullName(), obj:GetFullName()
)
listFrame.Visible = false
end)
y = y + 30
end
end
listFrame.CanvasSize = UDim2.new(0,0,0,y)
end
dropdownBtn.MouseButton1Click:Connect(function()
listFrame.Visible = not listFrame.Visible
if listFrame.Visible then refreshRemotes() end
end)
-- EXECUTE BUTTON
local execBtn = Instance.new("TextButton", container)
execBtn.Size = UDim2.new(0, 250, 0, 30)
execBtn.Position = UDim2.new(0.5, -125, 1, -50)
execBtn.Text = "Inject Server Script"
execBtn.Font = Enum.Font.Code
execBtn.TextSize = 16
execBtn.BackgroundColor3 = Color3.fromRGB(40,40,40)
execBtn.TextColor3 = Color3.new(1,1,1)
execBtn.MouseButton1Click:Connect(function()
local code = box.Text
if code == "" then return end
-- 1) Attempt to bypass FE by temporarily elevating identity
if syn and syn.request