-- Basit ve etkili hileyimaqss executor local Players = game:GetService("Players") local Player = Players.LocalPlayer local PlayerGui = Player:WaitForChild("PlayerGui") -- GUI'yi oluştur local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "HileyimaqssExecutor" ScreenGui.Parent = PlayerGui ScreenGui.ResetOnSpawn = false -- Ana Frame (DRAG ÖZELLİKLİ) local MainFrame = Instance.new("Frame") MainFrame.Name = "MainFrame" MainFrame.Size = UDim2.new(0, 400, 0, 300) MainFrame.Position = UDim2.new(0.5, -200, 0.5, -150) MainFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) MainFrame.BorderSizePixel = 0 MainFrame.Active = true MainFrame.Draggable = true -- DRAG ÖZELLİĞİ MainFrame.Parent = ScreenGui -- Başlık local Title = Instance.new("TextLabel") Title.Size = UDim2.new(1, 0, 0, 30) Title.Position = UDim2.new(0, 0, 0, 0) Title.BackgroundColor3 = Color3.fromRGB(255, 0, 0) Title.Text = "HILEYIMAQSS EXECUTOR" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.TextSize = 16 Title.Font = Enum.Font.GothamBold Title.Parent = MainFrame -- Script Yazma Kutusu local ScriptBox = Instance.new("TextBox") ScriptBox.Size = UDim2.new(0.9, 0, 0, 100) ScriptBox.Position = UDim2.new(0.05, 0, 0.15, 0) ScriptBox.BackgroundColor3 = Color3.fromRGB(50, 50, 50) ScriptBox.TextColor3 = Color3.fromRGB(255, 255, 255) ScriptBox.Text = "print('hileyimaqss executor!')" ScriptBox.TextSize = 12 ScriptBox.TextXAlignment = Enum.TextXAlignment.Left ScriptBox.TextYAlignment = Enum.TextYAlignment.Top ScriptBox.ClearTextOnFocus = false ScriptBox.MultiLine = true ScriptBox.Parent = MainFrame -- Execute Butonu local ExecuteButton = Instance.new("TextButton") ExecuteButton.Size = UDim2.new(0.4, 0, 0, 30) ExecuteButton.Position = UDim2.new(0.05, 0, 0.6, 0) ExecuteButton.BackgroundColor3 = Color3.fromRGB(0, 170, 0) ExecuteButton.Text = "EXECUTE" ExecuteButton.TextColor3 = Color3.fromRGB(255, 255, 255) ExecuteButton.TextSize = 14 ExecuteButton.Font = Enum.Font.GothamBold ExecuteButton.Parent = MainFrame ExecuteButton.MouseButton1Click:Connect(function() local scriptCode = ScriptBox.Text loadstring(scriptCode)() end) -- Infinite Yield Butonu local IYButton = Instance.new("TextButton") IYButton.Size = UDim2.new(0.4, 0, 0, 30) IYButton.Position = UDim2.new(0.55, 0, 0.6, 0) IYButton.BackgroundColor3 = Color3.fromRGB(0, 100, 200) IYButton.Text = "INFINITE YIELD" IYButton.TextColor3 = Color3.fromRGB(255, 255, 255) IYButton.TextSize = 14 IYButton.Font = Enum.Font.GothamBold IYButton.Parent = MainFrame IYButton.MouseButton1Click:Connect(function() loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))() end) -- Kapat Butonu local CloseButton = Instance.new("TextButton") CloseButton.Size = UDim2.new(0, 25, 0, 25) CloseButton.Position = UDim2.new(0.95, -25, 0, 0) CloseButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0) CloseButton.Text = "X" CloseButton.TextColor3 = Color3.fromRGB(255, 255, 255) CloseButton.TextSize = 14 CloseButton.Font = Enum.Font.GothamBold CloseButton.Parent = MainFrame CloseButton.MouseButton1Click:Connect(function() ScreenGui:Destroy() end) -- AÇ/KAPA TOGGLE için local UIS = game:GetService("UserInputService") local isVisible = true UIS.InputBegan:Connect(function(input) if input.KeyCode == Enum.KeyCode.RightShift then isVisible = not isVisible MainFrame.Visible = isVisible end end) print("hileyimaqss executor yüklendi! Sağ Shift ile aç/kapa")