-- Banana Hub by ZerikYT - Script completo para executor Delta local Players = game:GetService("Players") local player = Players.LocalPlayer local mouse = player:GetMouse() local char = player.Character or player.CharacterAdded:Wait() -- Criar GUI local screenGui = Instance.new("ScreenGui") screenGui.Name = "BananaHub" screenGui.Parent = player:WaitForChild("PlayerGui") -- Função pra arredondar canto local function makeCorner(frame, radius) local c = Instance.new("UICorner") c.CornerRadius = UDim.new(0, radius) c.Parent = frame end -- Frame principal local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 320, 0, 500) frame.Position = UDim2.new(0, 100, 0, 100) frame.BackgroundColor3 = Color3.fromRGB(30,30,30) frame.BorderSizePixel = 4 frame.BorderColor3 = Color3.fromRGB(255,255,0) frame.Active = true frame.Parent = screenGui makeCorner(frame, 12) -- Cabeçalho local title = Instance.new("TextLabel") title.Size = UDim2.new(1,0,0,45) title.BackgroundColor3 = Color3.fromRGB(50,50,50) title.Text = "🍌 Banana Hub by ZerikYT 🍌" title.TextColor3 = Color3.new(1,1,1) title.Font = Enum.Font.GothamBold title.TextSize = 22 title.Parent = frame makeCorner(title, 12) -- Tornar frame arrastável local dragging, dragInput, dragStart, startPos frame.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 then dragging = true dragStart = input.Position startPos = frame.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragging = false end end) end end) frame