-- hileyimaqss SERVER SIDE EXECUTOR local Players = game:GetService("Players") local Player = Players.LocalPlayer local PlayerGui = Player:WaitForChild("PlayerGui") -- Server Side GUI local SSGui = Instance.new("ScreenGui") SSGui.Name = "hileyimaqssServerSide" SSGui.Parent = PlayerGui SSGui.ResetOnSpawn = false local MainFrame = Instance.new("Frame") MainFrame.Size = UDim2.new(0, 500, 0, 500) MainFrame.Position = UDim2.new(0.5, -250, 0.5, -250) MainFrame.BackgroundColor3 = Color3.fromRGB(10, 10, 10) MainFrame.BorderSizePixel = 0 MainFrame.Active = true MainFrame.Draggable = true MainFrame.Parent = SSGui -- Başlık local Title = Instance.new("TextLabel") Title.Size = UDim2.new(1, 0, 0, 40) Title.BackgroundColor3 = Color3.fromRGB(255, 0, 0) Title.Text = "🔧 HILEYIMAQSS SERVER SIDE" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.TextSize = 18 Title.Font = Enum.Font.GothamBold Title.Parent = MainFrame -- Server Script Locations local Locations = { {"ServerScriptService", "ServerScriptService"}, {"ServerStorage", "ServerStorage"}, {"Workspace", "Workspace"}, {"Lighting", "Lighting"}, {"ReplicatedStorage", "ReplicatedStorage"}, {"StarterPlayer", "StarterPlayer"} } local YPosition = 0.1 for i, location in pairs(Locations) do local SectionTitle = Instance.new("TextLabel") SectionTitle.Size = UDim2.new(0.9, 0, 0, 25) SectionTitle.Position = UDim2.new(0.05, 0, YPosition, 0) SectionTitle.BackgroundTransparency = 1 SectionTitle.Text = "📁 " .. location[1] SectionTitle.TextColor3 = Color3.fromRGB(0, 255, 255) SectionTitle.TextSize = 14 SectionTitle.TextXAlignment = Enum.TextXAlignment.Left SectionTitle.Font = Enum.Font.GothamBold SectionTitle.Parent = MainFrame -- List Scripts Button local ListButton = Instance.new("TextButton") ListButton.Size = UDim2.new(0.4, 0, 0, 25) ListButton.Position = UDim2.new(0.05, 0, YPosition + 0.05, 0) ListButton.BackgroundColor3 = Color3.fromRGB(0, 100, 200) ListButton.Text = "List Scripts" ListButton.TextColor3 = Color3.fromRGB(255, 255, 255) ListButton.TextSize = 12 ListButton.Font = Enum.Font.Gotham ListButton.Parent = MainFrame -- Execute in Location Button local ExecButton = Instance.new("TextButton") ExecButton.Size = UDim2.new(0.4, 0, 0, 25) ExecButton.Position = UDim2.new(0.55, 0, YPosition + 0.05, 0) ExecButton.BackgroundColor3 = Color3.fromRGB(0, 170, 0) ExecButton.Text = "Execute Here" ExecButton.TextColor3 = Color3.fromRGB(255, 255, 255) ExecButton.TextSize = 12 ExecButton.Font = Enum.Font.Gotham ExecButton.Parent = MainFrame ListButton.MouseButton1Click:Connect(function() listServerScripts(location[2]) end) ExecButton.MouseButton1Click:Connect(function() openServerExecutor(location[2]) end) YPosition = YPosition + 0.1 end -- Server Scripts List Function function listServerScripts(location) local scriptsFrame = Instance.new("Frame") scriptsFrame.Size = UDim2.new(0, 450, 0, 300) scriptsFrame.Position = UDim2.new(0.5, -225, 0.5, -150) scriptsFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 20) scriptsFrame.BorderSizePixel = 1 scriptsFrame.BorderColor3 = Color3.fromRGB(255, 255, 255) scriptsFrame.Parent = SSGui local ScrollingFrame = Instance.new("ScrollingFrame") ScrollingFrame.Size = UDim2.new(1, 0, 1, 0) ScrollingFrame.CanvasSize = UDim2.new(0, 0, 0, 0) ScrollingFrame.BackgroundTransparency = 1 ScrollingFrame.Parent = scriptsFrame local locationObj = game:GetService(location) local scripts = locationObj:GetDescendants() local yPos = 0 for _, script in pairs(scripts) do if script:IsA("Script") or script:IsA("LocalScript") or script:IsA("ModuleScript") then local scriptButton = Instance.new("TextButton") scriptButton.Size = UDim2.new(0.9, 0, 0, 30) scriptButton.Position = UDim2.new(0.05, 0, 0, yPos) scriptButton.BackgroundColor3 = Color3.fromRGB(50, 50, 50) scriptButton.Text = "📜 " .. script.Name .. " (" .. script.ClassName .. ")" scriptButton.TextColor3 = Color3.fromRGB(255, 255, 255) scriptButton.TextSize = 12 scriptButton.TextXAlignment = Enum.TextXAlignment.Left scriptButton.Parent = ScrollingFrame scriptButton.MouseButton1Click:Connect(function() setclipboard(script:GetFullName()) game:GetService("StarterGui"):SetCore("SendNotification", { Title = "Kopyalandı", Text = "Path: " .. script:GetFullName(), Duration = 3 }) end) yPos = yPos + 35 ScrollingFrame.CanvasSize = UDim2.new(0, 0, 0, yPos) end end local CloseBtn = Instance.new("TextButton") CloseBtn.Size = UDim2.new(0, 25, 0, 25) CloseBtn.Position = UDim2.new(0.95, -25, 0, 0) CloseBtn.BackgroundColor3 = Color3.fromRGB(255, 0, 0) CloseBtn.Text = "X" CloseBtn.TextColor3 = Color3.fromRGB(255, 255, 255) CloseBtn.Parent = scriptsFrame CloseBtn.MouseButton1Click:Connect(function() scriptsFrame:Destroy() end) end -- Server Executor Function function openServerExecutor(location) local execFrame = Instance.new("Frame") execFrame.Size = UDim2.new(0, 450, 0, 350) execFrame.Position = UDim2.new(0.5, -225, 0.5, -175) execFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 20) execFrame.BorderSizePixel = 1 execFrame.BorderColor3 = Color3.fromRGB(255, 255, 255) execFrame.Parent = SSGui local Title = Instance.new("TextLabel") Title.Size = UDim2.new(1, 0, 0, 30) Title.BackgroundColor3 = Color3.fromRGB(0, 100, 200) Title.Text = "Execute in " .. location Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.TextSize = 14 Title.Font = Enum.Font.GothamBold Title.Parent = execFrame local CodeBox = Instance.new("TextBox") CodeBox.Size = UDim2.new(0.9, 0, 0, 200) CodeBox.Position = UDim2.new(0.05, 0, 0.15, 0) CodeBox.BackgroundColor3 = Color3.fromRGB(30, 30, 30) CodeBox.TextColor3 = Color3.fromRGB(255, 255, 255) CodeBox.Text = [[-- Server Side Script -- Bu kod server tarafında çalışacak print("Server side execution!")]] CodeBox.TextSize = 12 CodeBox.TextXAlignment = Enum.TextXAlignment.Left CodeBox.TextYAlignment = Enum.TextYAlignment.Top CodeBox.MultiLine = true CodeBox.Parent = execFrame local ExecuteBtn = Instance.new("TextButton") ExecuteBtn.Size = UDim2.new(0.4, 0, 0, 30) ExecuteBtn.Position = UDim2.new(0.05, 0, 0.8, 0) ExecuteBtn.BackgroundColor3 = Color3.fromRGB(0, 170, 0) ExecuteBtn.Text = "EXECUTE SERVER" ExecuteBtn.TextColor3 = Color3.fromRGB(255, 255, 255) ExecuteBtn.TextSize = 12 ExecuteBtn.Font = Enum.Font.GothamBold ExecuteBtn.Parent = execFrame ExecuteBtn.MouseButton1Click:Connect(function() -- Burada server side execution kodu gelecek game:GetService("StarterGui"):SetCore("SendNotification", { Title = "Server Execute", Text = "Kod server'a gönderildi: " .. location, Duration = 3 }) end) local CloseBtn = Instance.new("TextButton") CloseBtn.Size = UDim2.new(0, 25, 0, 25) CloseBtn.Position = UDim2.new(0.95, -25, 0, 0) CloseBtn.BackgroundColor3 = Color3.fromRGB(255, 0, 0) CloseBtn.Text = "X" CloseBtn.TextColor3 = Color3.fromRGB(255, 255, 255) CloseBtn.Parent = execFrame CloseBtn.MouseButton1Click:Connect(function() execFrame:Destroy() end) end -- Toggle GUI local UIS = game:GetService("UserInputService") UIS.InputBegan:Connect(function(input) if input.KeyCode == Enum.KeyCode.RightShift then MainFrame.Visible = not MainFrame.Visible end end) print("hileyimaqss Server Side GUI yüklendi! Sağ Shift ile aç/kapa")