-- [[ Rscripts Risk Notice ]] -- This script is not verified by rscripts.net. Deal with caution. -- -- Stay safe: -- • Never log in on unofficial Roblox sites or lookalike domains. -- • Real Roblox links use roblox.com (check the .com ending). -- • Treat fake Roblox login / "claim reward" pages as phishing. -- [[ End Rscripts Risk Notice ]] --[[ Delta Executor Mobile GUI Script Game: 121781732399469 (Anomaly/Coffee Game) Features: ESP for Anomaly, Auto Cook, Auto Grab Coffee Custom GUI with Mobile-Friendly UI ]] -- Services local Players = game:GetService("Players") local RunService = game:GetService("RunService") local TweenService = game:GetService("TweenService") local UserInputService = game:GetService("UserInputService") local Lighting = game:GetService("Lighting") -- Player local player = Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local humanoid = character:WaitForChild("Humanoid") local rootPart = character:WaitForChild("HumanoidRootPart") -- Configuration local Config = { ESPEnabled = true, AutoCook = false, AutoGrabCoffee = false, ESPColor = Color3.fromRGB(255, 0, 0), ESPTransparency = 0.7, Range = 200, TeleportSpeed = 50, CookTime = 3, } -- GUI System (Mobile Optimized) local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "DeltaGUI" ScreenGui.ResetOnSpawn = false ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling ScreenGui.Parent = player:WaitForChild("PlayerGui") -- Main Frame local MainFrame = Instance.new("Frame") MainFrame.Name = "MainFrame" MainFrame.Size = UDim2.new(0, 250, 0, 350) MainFrame.Position = UDim2.new(0.5, -125, 0.5, -175) MainFrame.BackgroundColor3 = Color3.fromRGB(25, 25, 35) MainFrame.BackgroundTransparency = 0.1 MainFrame.BorderSizePixel = 0 MainFrame.Active = true MainFrame.Draggable = true MainFrame.Parent = ScreenGui -- UICorner for rounded local UICorner = Instance.new("UICorner") UICorner.CornerRadius = UDim.new(0, 12) UICorner.Parent = MainFrame -- Title Bar local TitleBar = Instance.new("Frame") TitleBar.Name = "TitleBar" TitleBar.Size = UDim2.new(1, 0, 0, 40) TitleBar.BackgroundColor3 = Color3.fromRGB(40, 40, 55) TitleBar.BorderSizePixel = 0 TitleBar.Parent = MainFrame local TitleCorner = Instance.new("UICorner") TitleCorner.CornerRadius = UDim.new(0, 12) TitleCorner.Parent = TitleBar local TitleLabel = Instance.new("TextLabel") TitleLabel.Size = UDim2.new(1, 0, 1, 0) TitleLabel.BackgroundTransparency = 1 TitleLabel.Text = "⚡ Delta Hub" TitleLabel.TextColor3 = Color3.fromRGB(255, 255, 255) TitleLabel.TextSize = 18 TitleLabel.Font = Enum.Font.GothamBold TitleLabel.Parent = TitleBar -- Close Button local CloseButton = Instance.new("TextButton") CloseButton.Size = UDim2.new(0, 30, 0, 30) CloseButton.Position = UDim2.new(1, -35, 0, 5) CloseButton.BackgroundColor3 = Color3.fromRGB(255, 80, 80) CloseButton.Text = "X" CloseButton.TextColor3 = Color3.fromRGB(255, 255, 255) CloseButton.TextSize = 14 CloseButton.Font = Enum.Font.GothamBold CloseButton.Parent = TitleBar local CloseCorner = Instance.new("UICorner") CloseCorner.CornerRadius = UDim.new(1, 0) CloseCorner.Parent = CloseButton -- Toggle Buttons (Mobile Friendly - Large) local function CreateToggle(name, text, default, position) local frame = Instance.new("Frame") frame.Size = UDim2.new(1, -20, 0, 45) frame.Position = UDim2.new(0, 10, 0, position) frame.BackgroundColor3 = Color3.fromRGB(35, 35, 50) frame.BackgroundTransparency = 0.2 frame.BorderSizePixel = 0 frame.Parent = MainFrame local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 8) corner.Parent = frame local label = Instance.new("TextLabel") label.Size = UDim2.new(0.7, 0, 1, 0) label.BackgroundTransparency = 1 label.Text = text label.TextColor3 = Color3.fromRGB(255, 255, 255) label.TextSize = 14 label.Font = Enum.Font.Gotham label.TextXAlignment = Enum.TextXAlignment.Left label.Parent = frame local toggle = Instance.new("TextButton") toggle.Size = UDim2.new(0, 50, 0, 30) toggle.Position = UDim2.new(1, -60, 0, 7) toggle.BackgroundColor3 = default and Color3.fromRGB(0, 200, 100) or Color3.fromRGB(200, 0, 0) toggle.Text = default and "ON" or "OFF" toggle.TextColor3 = Color3.fromRGB(255, 255, 255) toggle.TextSize = 12 toggle.Font = Enum.Font.GothamBold toggle.Parent = frame local toggleCorner = Instance.new("UICorner") toggleCorner.CornerRadius = UDim.new(0, 8) toggleCorner.Parent = toggle toggle.MouseButton1Click:Connect(function() if Config[name] then Config[name] = false toggle.BackgroundColor3 = Color3.fromRGB(200, 0, 0) toggle.Text = "OFF" else Config[name] = true toggle.BackgroundColor3 = Color3.fromRGB(0, 200, 100) toggle.Text = "ON" end end) return toggle end -- Create toggles CreateToggle("ESPEnabled", "👁 ESP Anomaly", true, 50) CreateToggle("AutoCook", "🍳 Auto Cook", false, 105) CreateToggle("AutoGrabCoffee", "☕ Auto Grab Coffee", false, 160) -- Close button functionality CloseButton.MouseButton1Click:Connect(function() MainFrame.Visible = false end) -- Minimize/Maximize button local MinimizeButton = Instance.new("TextButton") MinimizeButton.Size = UDim2.new(0, 30, 0, 30) MinimizeButton.Position = UDim2.new(1, -70, 0, 5) MinimizeButton.BackgroundColor3 = Color3.fromRGB(255, 200, 0) MinimizeButton.Text = "-" MinimizeButton.TextColor3 = Color3.fromRGB(255, 255, 255) MinimizeButton.TextSize = 14 MinimizeButton.Font = Enum.Font.GothamBold MinimizeButton.Parent = TitleBar local MinimizeCorner = Instance.new("UICorner") MinimizeCorner.CornerRadius = UDim.new(1, 0) MinimizeCorner.Parent = MinimizeButton MinimizeButton.MouseButton1Click:Connect(function() MainFrame.Visible = not MainFrame.Visible end) -- Mobile Drag Support (Touch) local dragToggle = nil local dragSpeed = 0.25 local dragStart = nil local startPos = nil local function updateDrag(input) local delta = input.Position - dragStart local newPos = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y) MainFrame.Position = newPos end MainFrame.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.Touch or input.UserInputType == Enum.UserInputType.MouseButton1 then dragToggle = true dragStart = input.Position startPos = MainFrame.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragToggle = false end end) end end) UserInputService.InputChanged:Connect(function(input) if input.UserInputType == Enum.UserInputType.Touch or input.UserInputType == Enum.UserInputType.MouseMovement then if dragToggle then updateDrag(input) end end end) -- ESP System local ESPHolder = Instance.new("Folder") ESPHolder.Name = "ESPHolder" ESPHolder.Parent = workspace local function CreateESP(target) if target:FindFirstChild("ESP_Highlight") then return end local highlight = Instance.new("Highlight") highlight.Name = "ESP_Highlight" highlight.Adornee = target highlight.FillColor = Config.ESPColor highlight.FillTransparency = Config.ESPTransparency highlight.OutlineColor = Color3.fromRGB(255, 255, 255) highlight.OutlineTransparency = 0.5 highlight.Parent = ESPHolder -- Distance label local billboard = Instance.new("BillboardGui") billboard.Name = "ESP_Label" billboard.Adornee = target billboard.Size = UDim2.new(0, 100, 0, 30) billboard.StudsOffset = Vector3.new(0, 3, 0) billboard.AlwaysOnTop = true billboard.Parent = ESPHolder local textLabel = Instance.new("TextLabel") textLabel.Size = UDim2.new(1, 0, 1, 0) textLabel.BackgroundTransparency = 1 textLabel.Text = "⚠ ANOMALY" textLabel.TextColor3 = Config.ESPColor textLabel.TextSize = 12 textLabel.Font = Enum.Font.GothamBold textLabel.Parent = billboard end -- Find Anomalies local function FindAnomalies() for _, v in ipairs(workspace:GetDescendants()) do if v:IsA("BasePart") and v.Parent then local name = string.lower(v.Name) if name:find("anomal") or name:find("creature") or name:find("monster") or name:find("entity") then if v.Parent:FindFirstChild("Humanoid") or v.Parent:FindFirstChild("HumanoidRootPart") then CreateESP(v.Parent) end end end end end -- Auto Cook System local function AutoCook() if not Config.AutoCook then return end -- Find cooking station for _, v in ipairs(workspace:GetDescendants()) do if v:IsA("BasePart") and string.lower(v.Name):find("cook") or string.lower(v.Name):find("stove") or string.lower(v.Name):find("oven") then -- Teleport to cooking station local targetCFrame = v.CFrame + Vector3.new(0, 5, 0) rootPart.CFrame = targetCFrame task.wait(Config.CookTime) -- Interact (click the cooking object) if v:IsA("ClickDetector") or v.Parent:FindFirstChild("ClickDetector") then local clickDetector = v:FindFirstChild("ClickDetector") or v.Parent:FindFirstChild("ClickDetector") if clickDetector then fireclickdetector(clickDetector) end end task.wait(0.5) end end end -- Auto Grab Coffee local function AutoGrabCoffee() if not Config.AutoGrabCoffee then return end -- Find coffee machine for _, v in ipairs(workspace:GetDescendants()) do if v:IsA("BasePart") and (string.lower(v.Name):find("coffee") or string.lower(v.Name):find("espresso")) then -- Teleport to coffee machine local targetCFrame = v.CFrame + Vector3.new(0, 5, 0) rootPart.CFrame = targetCFrame task.wait(1) -- Interact if v:IsA("ClickDetector") or v.Parent:FindFirstChild("ClickDetector") then local clickDetector = v:FindFirstChild("ClickDetector") or v.Parent:FindFirstChild("ClickDetector") if clickDetector then fireclickdetector(clickDetector) end end task.wait(0.5) end end end -- Main Loop task.spawn(function() while task.wait(0.1) do -- ESP Update if Config.ESPEnabled then FindAnomalies() else for _, v in ipairs(ESPHolder:GetChildren()) do v:Destroy() end end end end) -- Action Loop task.spawn(function() while task.wait(1) do if Config.AutoCook then AutoCook() end if Config.AutoGrabCoffee then AutoGrabCoffee() end end end) -- Character respawn handling player.CharacterAdded:Connect(function(newChar) character = newChar humanoid = character:WaitForChild("Humanoid") rootPart = character:WaitForChild("HumanoidRootPart") end) -- Notification game:GetService("StarterGui"):SetCore("SendNotification", { Title = "Delta Hub Loaded", Text = "ESP, Auto Cook, Auto Coffee enabled", Duration = 3 })