local ScreenGui = Instance.new("ScreenGui") ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ResetOnSpawn = false local MainFrame = Instance.new("Frame") MainFrame.Size = UDim2.new(0, 400, 0, 400) MainFrame.Position = UDim2.new(0.5, -200, 0.5, -200) MainFrame.BackgroundColor3 = Color3.fromRGB(35, 35, 35) MainFrame.BorderSizePixel = 0 MainFrame.Active = true MainFrame.Draggable = true MainFrame.Parent = ScreenGui local TitleFrame = Instance.new("Frame") TitleFrame.Size = UDim2.new(0, 300, 0, 60) TitleFrame.Position = UDim2.new(0.5, -150, 0, 20) TitleFrame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) TitleFrame.BorderColor3 = Color3.fromRGB(255, 0, 0) TitleFrame.BorderSizePixel = 3 TitleFrame.Parent = MainFrame local Title = Instance.new("TextLabel") Title.Size = UDim2.new(1, 0, 1, 0) Title.BackgroundTransparency = 1 Title.Text = "FE Bypass" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.TextSize = 28 Title.Font = Enum.Font.SourceSansBold Title.Parent = TitleFrame local TextBoxFrame = Instance.new("Frame") TextBoxFrame.Size = UDim2.new(0, 300, 0, 200) TextBoxFrame.Position = UDim2.new(0.5, -150, 0.5, -100) TextBoxFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) TextBoxFrame.BorderSizePixel = 0 TextBoxFrame.Parent = MainFrame local ScriptTextBox = Instance.new("TextBox") ScriptTextBox.Size = UDim2.new(1, -10, 1, -10) ScriptTextBox.Position = UDim2.new(0, 5, 0, 5) ScriptTextBox.BackgroundColor3 = Color3.fromRGB(50, 50, 50) ScriptTextBox.TextColor3 = Color3.fromRGB(255, 255, 255) ScriptTextBox.TextSize = 16 ScriptTextBox.Font = Enum.Font.SourceSans ScriptTextBox.MultiLine = true ScriptTextBox.ClearTextOnFocus = false ScriptTextBox.Parent = TextBoxFrame local ExecuteButton = Instance.new("TextButton") ExecuteButton.Size = UDim2.new(0, 100, 0, 40) ExecuteButton.Position = UDim2.new(0, 30, 0, 330) ExecuteButton.BackgroundColor3 = Color3.fromRGB(0, 120, 215) ExecuteButton.TextColor3 = Color3.fromRGB(255, 255, 255) ExecuteButton.Text = "EXECUTE" ExecuteButton.TextSize = 16 ExecuteButton.Font = Enum.Font.SourceSansBold ExecuteButton.Parent = MainFrame local ClearButton = Instance.new("TextButton") ClearButton.Size = UDim2.new(0, 100, 0, 40) ClearButton.Position = UDim2.new(0.5, -50, 0, 330) ClearButton.BackgroundColor3 = Color3.fromRGB(200, 50, 50) ClearButton.TextColor3 = Color3.fromRGB(255, 255, 255) ClearButton.Text = "Clear" ClearButton.TextSize = 16 ClearButton.Font = Enum.Font.SourceSansBold ClearButton.Parent = MainFrame local FEBypassButton = Instance.new("TextButton") FEBypassButton.Size = UDim2.new(0, 100, 0, 40) FEBypassButton.Position = UDim2.new(1, -130, 0, 330) FEBypassButton.BackgroundColor3 = Color3.fromRGB(50, 200, 50) FEBypassButton.TextColor3 = Color3.fromRGB(255, 255, 255) FEBypassButton.Text = "FE Bypass" FEBypassButton.TextSize = 16 FEBypassButton.Font = Enum.Font.SourceSansBold FEBypassButton.Parent = MainFrame local function executeScript(script) for _, player in pairs(game.Players:GetPlayers()) do if player ~= game.Players.LocalPlayer then local success, func = pcall(loadstring, script) if success and func then func() end end end local success, func = pcall(loadstring, script) if success and func then func() end end ExecuteButton.MouseButton1Click:Connect(function() executeScript(ScriptTextBox.Text) end) ClearButton.MouseButton1Click:Connect(function() ScriptTextBox.Text = "" end) FEBypassButton.MouseButton1Click:Connect(function() executeScript(ScriptTextBox.Text) end)