-- [[ 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: 120851538706364 Features: Discord Verification, Silent Aim (Wall Check, Kill Check, Team Check), ESP (Green Allies/Red Enemies) Mobile Optimized with Custom GUI ]] -- Services local Players = game:GetService("Players") local RunService = game:GetService("RunService") local UserInputService = game:GetService("UserInputService") local Workspace = game:GetService("Workspace") local HttpService = game:GetService("HttpService") local StarterGui = game:GetService("StarterGui") -- Player local player = Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local humanoid = character:WaitForChild("Humanoid") local rootPart = character:WaitForChild("HumanoidRootPart") -- Discord Verification Config local DiscordConfig = { Invite = "https://discord.gg/6DB396XR4", WhitelistedUsers = { "example_user", "test_user", "delta_user", "vip_user", "pro_user" } } -- Configuration local Config = { Verified = false, SilentAim = true, WallCheck = true, KillCheck = true, TeamCheck = true, ESPEnabled = true, AimFOV = 180, AimRange = 500, } -- GUI System local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "DeltaAimGUI" 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, 320, 0, 480) MainFrame.Position = UDim2.new(0.5, -160, 0.5, -240) MainFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 30) MainFrame.BackgroundTransparency = 0.1 MainFrame.BorderSizePixel = 0 MainFrame.Active = true MainFrame.Draggable = true MainFrame.Parent = ScreenGui -- UICorner 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, 45) TitleBar.BackgroundColor3 = Color3.fromRGB(35, 35, 50) 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 Aim 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, 7) 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 -- Minimize Button local MinimizeButton = Instance.new("TextButton") MinimizeButton.Size = UDim2.new(0, 30, 0, 30) MinimizeButton.Position = UDim2.new(1, -70, 0, 7) 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 -- Verification Frame local VerificationFrame = Instance.new("Frame") VerificationFrame.Name = "VerificationFrame" VerificationFrame.Size = UDim2.new(1, -20, 1, -60) VerificationFrame.Position = UDim2.new(0, 10, 0, 50) VerificationFrame.BackgroundColor3 = Color3.fromRGB(25, 25, 35) VerificationFrame.BackgroundTransparency = 0.2 VerificationFrame.BorderSizePixel = 0 VerificationFrame.Parent = MainFrame local VFrameCorner = Instance.new("UICorner") VFrameCorner.CornerRadius = UDim.new(0, 8) VFrameCorner.Parent = VerificationFrame -- Discord Verification UI Elements local DiscordTitle = Instance.new("TextLabel") DiscordTitle.Size = UDim2.new(1, -20, 0, 30) DiscordTitle.Position = UDim2.new(0, 10, 0, 10) DiscordTitle.BackgroundTransparency = 1 DiscordTitle.Text = "💬 JOIN DISCORD TO UNLOCK" DiscordTitle.TextColor3 = Color3.fromRGB(114, 137, 218) DiscordTitle.TextSize = 16 DiscordTitle.Font = Enum.Font.GothamBold DiscordTitle.Parent = VerificationFrame local DiscordSubLabel = Instance.new("TextLabel") DiscordSubLabel.Size = UDim2.new(1, -20, 0, 20) DiscordSubLabel.Position = UDim2.new(0, 10, 0, 45) DiscordSubLabel.BackgroundTransparency = 1 DiscordSubLabel.Text = "Join our Discord to unlock all features!" DiscordSubLabel.TextColor3 = Color3.fromRGB(200, 200, 200) DiscordSubLabel.TextSize = 12 DiscordSubLabel.Font = Enum.Font.Gotham DiscordSubLabel.Parent = VerificationFrame -- Copy Discord Button local CopyButton = Instance.new("TextButton") CopyButton.Size = UDim2.new(1, -40, 0, 40) CopyButton.Position = UDim2.new(0, 20, 0, 80) CopyButton.BackgroundColor3 = Color3.fromRGB(114, 137, 218) CopyButton.Text = "📋 Copy Discord Link" CopyButton.TextColor3 = Color3.fromRGB(255, 255, 255) CopyButton.TextSize = 14 CopyButton.Font = Enum.Font.GothamBold CopyButton.BorderSizePixel = 0 CopyButton.Parent = VerificationFrame local CopyCorner = Instance.new("UICorner") CopyCorner.CornerRadius = UDim.new(0, 8) CopyCorner.Parent = CopyButton -- Discord Link Display local DiscordLink = Instance.new("TextLabel") DiscordLink.Size = UDim2.new(1, -40, 0, 25) DiscordLink.Position = UDim2.new(0, 20, 0, 130) DiscordLink.BackgroundTransparency = 1 DiscordLink.Text = "discord.gg/6DB396XR4" DiscordLink.TextColor3 = Color3.fromRGB(150, 150, 150) DiscordLink.TextSize = 12 DiscordLink.Font = Enum.Font.Gotham DiscordLink.Parent = VerificationFrame -- Username Input local UsernameBox = Instance.new("TextBox") UsernameBox.Size = UDim2.new(1, -40, 0, 35) UsernameBox.Position = UDim2.new(0, 20, 0, 170) UsernameBox.BackgroundColor3 = Color3.fromRGB(40, 40, 55) UsernameBox.PlaceholderText = "Enter Discord Username" UsernameBox.Text = "" UsernameBox.TextColor3 = Color3.fromRGB(255, 255, 255) UsernameBox.PlaceholderColor3 = Color3.fromRGB(150, 150, 150) UsernameBox.TextSize = 14 UsernameBox.Font = Enum.Font.Gotham UsernameBox.BorderSizePixel = 0 UsernameBox.Parent = VerificationFrame local InputCorner = Instance.new("UICorner") InputCorner.CornerRadius = UDim.new(0, 8) InputCorner.Parent = UsernameBox -- Verify Button local VerifyButton = Instance.new("TextButton") VerifyButton.Size = UDim2.new(1, -40, 0, 40) VerifyButton.Position = UDim2.new(0, 20, 0, 220) VerifyButton.BackgroundColor3 = Color3.fromRGB(0, 200, 100) VerifyButton.Text = "✅ VERIFY" VerifyButton.TextColor3 = Color3.fromRGB(255, 255, 255) VerifyButton.TextSize = 14 VerifyButton.Font = Enum.Font.GothamBold VerifyButton.BorderSizePixel = 0 VerifyButton.Parent = VerificationFrame local VerifyCorner = Instance.new("UICorner") VerifyCorner.CornerRadius = UDim.new(0, 8) VerifyCorner.Parent = VerifyButton -- Status Label local StatusLabel = Instance.new("TextLabel") StatusLabel.Size = UDim2.new(1, -40, 0, 30) StatusLabel.Position = UDim2.new(0, 20, 0, 275) StatusLabel.BackgroundTransparency = 1 StatusLabel.Text = "Waiting for verification..." StatusLabel.TextColor3 = Color3.fromRGB(255, 200, 0) StatusLabel.TextSize = 12 StatusLabel.Font = Enum.Font.Gotham StatusLabel.Parent = VerificationFrame -- Tab System (Hidden until verified) local TabBar = Instance.new("Frame") TabBar.Name = "TabBar" TabBar.Size = UDim2.new(1, 0, 0, 40) TabBar.Position = UDim2.new(0, 0, 0, 45) TabBar.BackgroundColor3 = Color3.fromRGB(30, 30, 45) TabBar.BorderSizePixel = 0 TabBar.Visible = false TabBar.Parent = MainFrame -- Tab Buttons local Tabs = {} local CurrentTab = "Aimbot" local function CreateTab(name, icon) local button = Instance.new("TextButton") button.Size = UDim2.new(0.5, 0, 1, 0) button.Position = UDim2.new(#Tabs * 0.5, 0, 0, 0) button.BackgroundColor3 = Color3.fromRGB(30, 30, 45) button.Text = icon .. " " .. name button.TextColor3 = Color3.fromRGB(255, 255, 255) button.TextSize = 13 button.Font = Enum.Font.GothamBold button.BorderSizePixel = 0 button.Parent = TabBar button.MouseButton1Click:Connect(function() CurrentTab = name for tabName, tabButton in pairs(Tabs) do if tabName == name then tabButton.BackgroundColor3 = Color3.fromRGB(50, 50, 70) else tabButton.BackgroundColor3 = Color3.fromRGB(30, 30, 45) end end UpdateTabContent() end) Tabs[name] = button return button end -- Create tabs CreateTab("Aimbot", "🎯") CreateTab("ESP", "👁") -- Content Frame local ContentFrame = Instance.new("Frame") ContentFrame.Name = "ContentFrame" ContentFrame.Size = UDim2.new(1, -20, 1, -95) ContentFrame.Position = UDim2.new(0, 10, 0, 90) ContentFrame.BackgroundColor3 = Color3.fromRGB(25, 25, 35) ContentFrame.BackgroundTransparency = 0.2 ContentFrame.BorderSizePixel = 0 ContentFrame.Visible = false ContentFrame.Parent = MainFrame local ContentCorner = Instance.new("UICorner") ContentCorner.CornerRadius = UDim.new(0, 8) ContentCorner.Parent = ContentFrame -- Toggle Creator local function CreateToggle(parent, 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.3 frame.BorderSizePixel = 0 frame.Parent = parent 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 = 13 label.Font = Enum.Font.Gotham label.TextXAlignment = Enum.TextXAlignment.Left label.Parent = frame local toggle = Instance.new("TextButton") toggle.Size = UDim2.new(0, 60, 0, 30) toggle.Position = UDim2.new(1, -70, 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 -- Slider Creator local function CreateSlider(parent, name, text, min, max, default, position) local frame = Instance.new("Frame") frame.Size = UDim2.new(1, -20, 0, 60) frame.Position = UDim2.new(0, 10, 0, position) frame.BackgroundColor3 = Color3.fromRGB(35, 35, 50) frame.BackgroundTransparency = 0.3 frame.BorderSizePixel = 0 frame.Parent = parent local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 8) corner.Parent = frame local label = Instance.new("TextLabel") label.Size = UDim2.new(1, -20, 0, 20) label.Position = UDim2.new(0, 10, 0, 5) label.BackgroundTransparency = 1 label.Text = text .. ": " .. default label.TextColor3 = Color3.fromRGB(255, 255, 255) label.TextSize = 13 label.Font = Enum.Font.Gotham label.TextXAlignment = Enum.TextXAlignment.Left label.Parent = frame local slider = Instance.new("TextButton") slider.Size = UDim2.new(1, -20, 0, 20) slider.Position = UDim2.new(0, 10, 0, 30) slider.BackgroundColor3 = Color3.fromRGB(50, 50, 70) slider.Text = "" slider.BorderSizePixel = 0 slider.Parent = frame local sliderCorner = Instance.new("UICorner") sliderCorner.CornerRadius = UDim.new(0, 6) sliderCorner.Parent = slider local fill = Instance.new("Frame") fill.Size = UDim2.new((default - min) / (max - min), 0, 1, 0) fill.BackgroundColor3 = Color3.fromRGB(0, 150, 255) fill.BorderSizePixel = 0 fill.Parent = slider local fillCorner = Instance.new("UICorner") fillCorner.CornerRadius = UDim.new(0, 6) fillCorner.Parent = fill local dragging = false slider.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.Touch or input.UserInputType == Enum.UserInputType.MouseButton1 then dragging = true end end) slider.InputEnded:Connect(function(input) if input.UserInputType == Enum.UserInputType.Touch or input.UserInputType == Enum.UserInputType.MouseButton1 then dragging = false end end) slider.InputChanged:Connect(function(input) if dragging and (input.UserInputType == Enum.UserInputType.Touch or input.UserInputType == Enum.UserInputType.MouseMovement) then local relativeX = math.clamp((input.Position.X - slider.AbsolutePosition.X) / slider.AbsoluteSize.X, 0, 1) local value = math.floor(min + (max - min) * relativeX) Config[name] = value fill.Size = UDim2.new(relativeX, 0, 1, 0) label.Text = text .. ": " .. value end end) return slider end -- Aimbot Tab Content local AimbotContent = Instance.new("Frame") AimbotContent.Size = UDim2.new(1, 0, 1, 0) AimbotContent.BackgroundTransparency = 1 AimbotContent.Parent = ContentFrame CreateToggle(AimbotContent, "SilentAim", "🎯 Silent Aim", true, 10) CreateToggle(AimbotContent, "WallCheck", "🧱 Wall Check", true, 65) CreateToggle(AimbotContent, "KillCheck", "💀 Kill Check", true, 120) CreateToggle(AimbotContent, "TeamCheck", "🤝 Team Check", true, 175) CreateSlider(AimbotContent, "AimFOV", "FOV", 10, 360, 180, 230) CreateSlider(AimbotContent, "AimRange", "Range", 50, 1000, 500, 300) -- ESP Tab Content local ESPContent = Instance.new("Frame") ESPContent.Size = UDim2.new(1, 0, 1, 0) ESPContent.BackgroundTransparency = 1 ESPContent.Visible = false ESPContent.Parent = ContentFrame CreateToggle(ESPContent, "ESPEnabled", "👁 ESP Enabled", true, 10) -- Update Tab Content local function UpdateTabContent() AimbotContent.Visible = (CurrentTab == "Aimbot") ESPContent.Visible = (CurrentTab == "ESP") end -- Copy Discord Link CopyButton.MouseButton1Click:Connect(function() pcall(function() setclipboard(DiscordConfig.Invite) StatusLabel.Text = "✅ Link copied! Join the Discord!" StatusLabel.TextColor3 = Color3.fromRGB(0, 255, 0) task.wait(2) StatusLabel.Text = "Enter your Discord username to verify" StatusLabel.TextColor3 = Color3.fromRGB(255, 200, 0) end) end) -- Verification Check local function CheckVerification(username) for _, whitelistedUser in ipairs(DiscordConfig.WhitelistedUsers) do if string.lower(username) == string.lower(whitelistedUser) then return true end end return false end -- Verify Button Click VerifyButton.MouseButton1Click:Connect(function() local username = UsernameBox.Text if username == "" then StatusLabel.Text = "❌ Please enter your Discord username" StatusLabel.TextColor3 = Color3.fromRGB(255, 0, 0) return end StatusLabel.Text = "⏳ Verifying..." StatusLabel.TextColor3 = Color3.fromRGB(255, 200, 0) task.wait(1) if CheckVerification(username) then Config.Verified = true StatusLabel.Text = "✅ Verified! Welcome " .. username .. "!" StatusLabel.TextColor3 = Color3.fromRGB(0, 255, 0) task.wait(1) VerificationFrame.Visible = false TabBar.Visible = true ContentFrame.Visible = true MainFrame.Size = UDim2.new(0, 320, 0, 430) MainFrame.Position = UDim2.new(0.5, -160, 0.5, -215) StarterGui:SetCore("SendNotification", { Title = "✅ Verified!", Text = "All features unlocked!", Duration = 3 }) else StatusLabel.Text = "❌ Username not found. Join Discord first!" StatusLabel.TextColor3 = Color3.fromRGB(255, 0, 0) end end) -- Close/Minimize CloseButton.MouseButton1Click:Connect(function() MainFrame.Visible = false end) MinimizeButton.MouseButton1Click:Connect(function() MainFrame.Visible = not MainFrame.Visible end) -- Mobile Drag Support local dragToggle = nil 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 ESPFolder = Instance.new("Folder") ESPFolder.Name = "ESPFolder" ESPFolder.Parent = Workspace local ESPObjects = {} local function IsTeamMate(plr) if not Config.TeamCheck then return false end return plr.Team == player.Team end local function CreateESP(plr) if ESPObjects[plr] then return end local char = plr.Character if not char then return end local highlight = Instance.new("Highlight") highlight.Name = "ESP_Highlight" highlight.Adornee = char highlight.FillTransparency = 0.7 highlight.OutlineTransparency = 0.3 highlight.Parent = ESPFolder local billboard = Instance.new("BillboardGui") billboard.Name = "ESP_Label" billboard.Adornee = char:FindFirstChild("HumanoidRootPart") or char billboard.Size = UDim2.new(0, 150, 0, 40) billboard.StudsOffset = Vector3.new(0, 3, 0) billboard.AlwaysOnTop = true billboard.Parent = ESPFolder local textLabel = Instance.new("TextLabel") textLabel.Size = UDim2.new(1, 0, 0.5, 0) textLabel.BackgroundTransparency = 1 textLabel.Text = plr.Name textLabel.TextSize = 12 textLabel.Font = Enum.Font.GothamBold textLabel.Parent = billboard local distLabel = Instance.new("TextLabel") distLabel.Size = UDim2.new(1, 0, 0.5, 0) distLabel.Position = UDim2.new(0, 0, 0.5, 0) distLabel.BackgroundTransparency = 1 distLabel.Text = "0m" distLabel.TextSize = 10 distLabel.Font = Enum.Font.Gotham distLabel.Parent = billboard ESPObjects[plr] = { Highlight = highlight, Billboard = billboard, NameLabel = textLabel, DistLabel = distLabel } end local function UpdateESP() if not Config.Verified or not Config.ESPEnabled then for _, esp in pairs(ESPObjects) do esp.Highlight:Destroy() esp.Billboard:Destroy()