local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local PlayerGui = LocalPlayer:WaitForChild("PlayerGui") local hasInjected = false local ScreenGui = Instance.new("ScreenGui") ScreenGui.Parent = PlayerGui local MainFrame = Instance.new("Frame") MainFrame.Size = UDim2.new(0, 500, 0, 400) MainFrame.Position = UDim2.new(0.5, -250, 0.5, -200) MainFrame.BackgroundColor3 = Color3.fromRGB(240, 240, 240) MainFrame.BorderSizePixel = 1 MainFrame.Active = true MainFrame.Draggable = true MainFrame.Parent = ScreenGui local TitleBar = Instance.new("Frame") TitleBar.Size = UDim2.new(1, 0, 0, 30) TitleBar.BackgroundColor3 = Color3.fromRGB(200, 200, 200) TitleBar.Parent = MainFrame local TitleLabel = Instance.new("TextLabel") TitleLabel.Size = UDim2.new(1, 0, 1, 0) TitleLabel.BackgroundTransparency = 1 TitleLabel.Text = "agcy 执行器" TitleLabel.TextColor3 = Color3.new(0, 0, 0) TitleLabel.TextSize = 14 TitleLabel.Parent = TitleBar local TabBar = Instance.new("Frame") TabBar.Size = UDim2.new(1, 0, 0, 30) TabBar.Position = UDim2.new(0, 0, 0, 30) TabBar.BackgroundColor3 = Color3.fromRGB(220, 220, 220) TabBar.Parent = MainFrame local ExecutorTab = Instance.new("TextButton") ExecutorTab.Size = UDim2.new(0, 80, 1, 0) ExecutorTab.BackgroundColor3 = Color3.fromRGB(240, 240, 240) ExecutorTab.Text = "执行器" ExecutorTab.TextSize = 12 ExecutorTab.Parent = TabBar local AdminTab = Instance.new("TextButton") AdminTab.Size = UDim2.new(0, 100, 1, 0) AdminTab.Position = UDim2.new(0, 80, 0, 0) AdminTab.BackgroundColor3 = Color3.fromRGB(220, 220, 220) AdminTab.Text = "作者:agcy58" AdminTab.TextSize = 12 AdminTab.Parent = TabBar local ScriptFrame = Instance.new("Frame") ScriptFrame.Size = UDim2.new(0.75, 0, 0.45, 0) ScriptFrame.Position = UDim2.new(0, 0, 0, 60) ScriptFrame.BackgroundColor3 = Color3.new(1, 1, 1) ScriptFrame.ClipsDescendants = true ScriptFrame.Parent = MainFrame local ScriptTextBox = Instance.new("TextBox") ScriptTextBox.Size = UDim2.new(1, -10, 1, -10) ScriptTextBox.Position = UDim2.new(0, 5, 0, 5) ScriptTextBox.BackgroundTransparency = 1 ScriptTextBox.Text = "" ScriptTextBox.TextXAlignment = Enum.TextXAlignment.Left ScriptTextBox.TextYAlignment = Enum.TextYAlignment.Top ScriptTextBox.TextSize = 11 ScriptTextBox.ClearTextOnFocus = false ScriptTextBox.MultiLine = true ScriptTextBox.TextWrapped = false ScriptTextBox.Parent = ScriptFrame local ScriptListFrame = Instance.new("Frame") ScriptListFrame.Size = UDim2.new(0.25, 0, 0.81, 0) ScriptListFrame.Position = UDim2.new(0.75, 0, 0, 60) ScriptListFrame.BackgroundColor3 = Color3.new(1, 1, 1) ScriptListFrame.ClipsDescendants = true ScriptListFrame.Parent = MainFrame local ScriptScrollingFrame = Instance.new("ScrollingFrame") ScriptScrollingFrame.Size = UDim2.new(1, 0, 1, 0) ScriptScrollingFrame.BackgroundTransparency = 1 ScriptScrollingFrame.Parent = ScriptListFrame local ListLayout = Instance.new("UIListLayout") ListLayout.Parent = ScriptScrollingFrame ListLayout.SortOrder = Enum.SortOrder.LayoutOrder ListLayout.Padding = UDim.new(0, 2) local List1 = Instance.new("TextButton") List1.Size = UDim2.new(1, -10, 0, 25) List1.BackgroundTransparency = 1 List1.Text = "终极报复.txt" List1.TextSize = 12 List1.TextXAlignment = Enum.TextXAlignment.Left List1.Parent = ScriptScrollingFrame List1.MouseButton1Click:Connect(function() ScriptTextBox.Text = [[msg = Instance.new("Message") msg.Parent = workspace msg.Text = "1x1x1x1:哈哈哈哈哈哈!" wait(4) msg.Text = "1x1x1x1:为我被封禁付出代价!" wait(4) msg.Text = "1x1x1x1:你们都要为此付出代价!" wait(5) msg:Destroy()]] end) local List2 = Instance.new("TextButton") List2.Size = UDim2.new(1, -10, 0, 25) List2.BackgroundTransparency = 1 List2.Text = "天空盒.txt" List2.TextSize = 12 List2.TextXAlignment = Enum.TextXAlignment.Left List2.Parent = ScriptScrollingFrame List2.MouseButton1Click:Connect(function() ScriptTextBox.Text = [[s = Instance.new("Sky") s.Name = "SKY" s.SkyboxBk = "rbxassetid://172423468" s.SkyboxDn = "rbxassetid://172423468" s.SkyboxFt = "rbxassetid://172423468" s.SkyboxLf = "rbxassetid://172423468" s.SkyboxRt = "rbxassetid://172423468" s.SkyboxUp = "rbxassetid://172423468" s.Parent = game.Lighting]] end) local ButtonFrame = Instance.new("Frame") ButtonFrame.Size = UDim2.new(0.2, 0, 0.3, 0) ButtonFrame.Position = UDim2.new(0, 0, 0.66, 0) ButtonFrame.BackgroundTransparency = 1 ButtonFrame.Parent = MainFrame local ExecuteBtn = Instance.new("TextButton") ExecuteBtn.Size = UDim2.new(1, 0, 0, 30) ExecuteBtn.Position = UDim2.new(0, 0, 0, 0) ExecuteBtn.BackgroundColor3 = Color3.fromRGB(200, 200, 200) ExecuteBtn.Text = "执行" ExecuteBtn.TextSize = 14 ExecuteBtn.Parent = ButtonFrame local ClearBtn = Instance.new("TextButton") ClearBtn.Size = UDim2.new(1, 0, 0, 30) ClearBtn.Position = UDim2.new(0, 0, 0, 40) ClearBtn.BackgroundColor3 = Color3.fromRGB(200, 200, 200) ClearBtn.Text = "清空" ClearBtn.TextSize = 14 ClearBtn.Parent = ButtonFrame local InjectBtn = Instance.new("TextButton") InjectBtn.Size = UDim2.new(1, 0, 0, 30) InjectBtn.Position = UDim2.new(0, 0, 0, 80) InjectBtn.BackgroundColor3 = Color3.fromRGB(200, 200, 200) InjectBtn.Text = "注入" InjectBtn.TextSize = 14 InjectBtn.Parent = ButtonFrame local IDEFrame = Instance.new("Frame") IDEFrame.Size = UDim2.new(0.55, 0, 0.3, 0) IDEFrame.Position = UDim2.new(0.2, 0, 0.66, 0) IDEFrame.BackgroundColor3 = Color3.new(0, 0, 0) IDEFrame.Parent = MainFrame local LogScroll = Instance.new("ScrollingFrame") LogScroll.Size = UDim2.new(1, -4, 1, -4) LogScroll.Position = UDim2.new(0, 2, 0, 2) LogScroll.BackgroundTransparency = 1 LogScroll.Parent = IDEFrame local LogLayout = Instance.new("UIListLayout") LogLayout.Parent = LogScroll LogLayout.SortOrder = Enum.SortOrder.LayoutOrder LogLayout.VerticalAlignment = Enum.VerticalAlignment.Top local function addLog(text) local label = Instance.new("TextLabel") label.Size = UDim2.new(1, 0, 0, 16) label.BackgroundTransparency = 1 label.Text = "▶ "..text label.TextColor3 = Color3.new(0,1,0) label.TextSize = 10 label.Parent = LogScroll end addLog("你好," .. LocalPlayer.Name) InjectBtn.MouseButton1Click:Connect(function() if hasInjected then return end hasInjected = true local LOGO = Instance.new("ScreenGui") LOGO.Parent = LocalPlayer.PlayerGui LOGO.ResetOnSpawn = false local Face = Instance.new("ImageButton") Face.Parent = LOGO Face.BackgroundTransparency = 1 Face.Position = UDim2.new(-0.08, 0, 0.42, 0) Face.Size = UDim2.new(0.1, 0, 0.1, 0) Face.Image = "rbxassetid://72490832394380" Instance.new("UIAspectRatioConstraint", Face) local UICorner = Instance.new("UICorner", Face) UICorner.CornerRadius = UDim.new(1, 0) local InfoBoxBorder = Instance.new("Frame") InfoBoxBorder.Parent = LOGO InfoBoxBorder.BackgroundColor3 = Color3.new(0,0,0) InfoBoxBorder.Position = UDim2.new(0.12, 0, 0.85, 0) InfoBoxBorder.Size = UDim2.new(0, 270, 0, 80) InfoBoxBorder.Visible = false local InfoBox = Instance.new("TextLabel") InfoBox.Parent = InfoBoxBorder InfoBox.BackgroundColor3 = Color3.new(1,1,1) InfoBox.Position = UDim2.new(0,2,0,2) InfoBox.Size = UDim2.new(1,-4,1,-4) InfoBox.Text = "Project Ligma by Harkinian & Unverified\n无需模块即可运行脚本!\n使用外部程序执行脚本。\n状态:已注入" InfoBox.TextColor3 = Color3.new(0,0,0) InfoBox.TextWrapped = true InfoBox.TextXAlignment = Enum.TextXAlignment.Center InfoBox.Font = Enum.Font.SourceSansBold InfoBox.TextSize = 14 task.spawn(function() Face:TweenPosition(UDim2.new(0.465, 0, 0.44, 0), Enum.EasingDirection.Out, Enum.EasingStyle.Sine, 1) task.wait(1) Face:TweenPosition(UDim2.new(0.02, 0, 0.85, 0), Enum.EasingDirection.Out, Enum.EasingStyle.Sine, 1) end) Face.MouseButton1Click:Connect(function() InfoBoxBorder.Visible = not InfoBoxBorder.Visible end) addLog("成功FE 绕过") end) ExecuteBtn.MouseButton1Click:Connect(function() if not hasInjected then addLog("执行失败,请先注入") return end game.Players.LocalPlayer:Kick("骗你的啦嘻嘻") end) ClearBtn.MouseButton1Click:Connect(function() ScriptTextBox.Text = "" addLog("已清空") end)