--[[ ╔═══════════════════════════════════════════════════════════╗ ║ 🔥 G U E V A R A H U B - NEW IMAGE EDITION 🔥 ║ ║ (INTRO + HUB INTEGRATED - NO ERRORS) ║ ╚═══════════════════════════════════════════════════════════╝ ]] local TweenService = game:GetService("TweenService") local UserInputService = game:GetService("UserInputService") local CoreGui = game:GetService("CoreGui") -- تنظيف أي نسخ قديمة لتفادي المشاكل if CoreGui:FindFirstChild("GueVaraHub_Elite") then CoreGui:FindFirstChild("GueVaraHub_Elite"):Destroy() end -- =================[ إعدادات الواجهة ]================= local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "GueVaraHub_Elite" ScreenGui.ResetOnSpawn = false ScreenGui.IgnoreGuiInset = true -- لتغطية الشاشة كاملة في الانترو ScreenGui.Parent = CoreGui local function Tween(obj, info, goal) return TweenService:Create(obj, TweenInfo.new(unpack(info)), goal):Play() end -- نظام السحب (Dragging) local function MakeDraggable(gui) local dragging, dragInput, dragStart, startPos gui.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then dragging = true dragStart = input.Position startPos = gui.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragging = false end end) 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 local goalPos = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y) TweenService:Create(gui, TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out), {Position = goalPos}):Play() end end) end -- =================[ مكونات شاشة الترحيب (Intro) ]================= local IntroFrame = Instance.new("Frame") IntroFrame.Size = UDim2.new(1, 0, 1, 0) IntroFrame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) IntroFrame.BackgroundTransparency = 1 IntroFrame.BorderSizePixel = 0 IntroFrame.ZIndex = 100 IntroFrame.Parent = ScreenGui local GuevaraImage = Instance.new("ImageLabel") GuevaraImage.Size = UDim2.new(0, 300, 0, 300) GuevaraImage.Position = UDim2.new(0.5, -150, 0.35, -150) GuevaraImage.BackgroundTransparency = 1 GuevaraImage.Image = "rbxassetid://104396031479745" -- ✅ تم تحديث الكود هنا GuevaraImage.ImageTransparency = 1 GuevaraImage.ScaleType = Enum.ScaleType.Fit GuevaraImage.ZIndex = 101 GuevaraImage.Parent = IntroFrame local WelcomeText = Instance.new("TextLabel") WelcomeText.Size = UDim2.new(1, 0, 0, 80) WelcomeText.Position = UDim2.new(0, 0, 0.58, 0) WelcomeText.BackgroundTransparency = 1 WelcomeText.Text = "🔥 welcome to GueVara script 🔥" WelcomeText.TextColor3 = Color3.fromRGB(255, 255, 255) WelcomeText.TextSize = 42 WelcomeText.Font = Enum.Font.GothamBlack WelcomeText.TextTransparency = 1 WelcomeText.ZIndex = 101 WelcomeText.Parent = IntroFrame local WelcomeStroke = Instance.new("UIStroke") WelcomeStroke.Thickness = 3 WelcomeStroke.Color = Color3.fromRGB(0, 230, 255) WelcomeStroke.Transparency = 1 WelcomeStroke.Parent = WelcomeText -- =================[ مكونات الـ HUB الرئيسي ]================= local MainButton = Instance.new("TextButton") MainButton.Size = UDim2.new(0, 150, 0, 50) MainButton.Position = UDim2.new(0.02, 0, 0.45, 0) MainButton.BackgroundColor3 = Color3.fromRGB(10, 10, 10) MainButton.Text = "👹Open GueVara👹" MainButton.TextColor3 = Color3.fromRGB(255, 255, 255) MainButton.TextSize = 18 MainButton.Font = Enum.Font.GothamBlack MainButton.Visible = false -- مخفي حتى ينتهي الانترو MainButton.Parent = ScreenGui local MainStroke = Instance.new("UIStroke") MainStroke.Thickness = 2.5 MainStroke.ApplyStrokeMode = Enum.ApplyStrokeMode.Border MainStroke.Parent = MainButton Instance.new("UICorner", MainButton).CornerRadius = UDim.new(0, 15) MakeDraggable(MainButton) local MainFrame = Instance.new("Frame") MainFrame.Size = UDim2.new(0, 520, 0, 420) MainFrame.Position = UDim2.new(0.5, -260, 0.5, -210) MainFrame.BackgroundColor3 = Color3.fromRGB(15, 15, 15) MainFrame.Visible = false MainFrame.ClipsDescendants = true MainFrame.Parent = ScreenGui local FrameStroke = Instance.new("UIStroke") FrameStroke.Thickness = 2.5 FrameStroke.ApplyStrokeMode = Enum.ApplyStrokeMode.Border FrameStroke.Parent = MainFrame Instance.new("UICorner", MainFrame).CornerRadius = UDim.new(0, 20) MakeDraggable(MainFrame) local UIGradient = Instance.new("UIGradient") UIGradient.Color = ColorSequence.new({ColorSequenceKeypoint.new(0, Color3.fromRGB(20, 20, 20)), ColorSequenceKeypoint.new(1, Color3.fromRGB(40, 40, 40))}) UIGradient.Parent = MainFrame local Title = Instance.new("TextLabel") Title.Size = UDim2.new(1, 0, 0, 60) Title.BackgroundTransparency = 1 Title.Text = "☠️GueVara HUB☠️" Title.TextColor3 = Color3.fromRGB(0, 200, 255) Title.TextSize = 26 Title.Font = Enum.Font.GothamBlack Title.Parent = MainFrame local Credits = Instance.new("TextLabel") Credits.Size = UDim2.new(1, 0, 0, 20) Credits.Position = UDim2.new(0, 0, 0, 55) Credits.BackgroundTransparency = 1 Credits.Text = "Created by GExT | Clan GueVara TOP" Credits.TextColor3 = Color3.fromRGB(150, 150, 150) Credits.TextSize = 14 Credits.Font = Enum.Font.GothamBold Credits.Parent = MainFrame local Scrolling = Instance.new("ScrollingFrame") Scrolling.Size = UDim2.new(1, -40, 1, -120) Scrolling.Position = UDim2.new(0, 20, 0, 90) Scrolling.BackgroundTransparency = 1 Scrolling.ScrollBarThickness = 0 Scrolling.AutomaticCanvasSize = Enum.AutomaticSize.Y Scrolling.Parent = MainFrame local UIListLayout = Instance.new("UIListLayout") UIListLayout.Padding = UDim.new(0, 12) UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder UIListLayout.Parent = Scrolling -- دالة إضافة السكربتات local function AddScript(name, scriptCode) local Button = Instance.new("TextButton") Button.Size = UDim2.new(1, -10, 0, 55) Button.BackgroundColor3 = Color3.fromRGB(30, 30, 30) Button.Text = " ⚡ " .. name Button.TextColor3 = Color3.fromRGB(230, 230, 230) Button.TextSize = 18 Button.TextXAlignment = Enum.TextXAlignment.Left Button.Font = Enum.Font.GothamSemibold Button.Parent = Scrolling Instance.new("UICorner", Button).CornerRadius = UDim.new(0, 12) local S = Instance.new("UIStroke", Button) S.Thickness = 1.5 S.Color = Color3.fromRGB(60, 60, 60) Button.MouseEnter:Connect(function() Tween(Button, {0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out}, {BackgroundColor3 = Color3.fromRGB(45, 45, 45)}) Tween(S, {0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out}, {Color = Color3.fromRGB(0, 200, 255)}) end) Button.MouseLeave:Connect(function() Tween(Button, {0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out}, {BackgroundColor3 = Color3.fromRGB(30, 30, 30)}) Tween(S, {0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out}, {Color = Color3.fromRGB(60, 60, 60)}) end) Button.MouseButton1Click:Connect(function() Tween(Button, {0.1, Enum.EasingStyle.Quad, Enum.EasingDirection.Out}, {BackgroundColor3 = Color3.fromRGB(0, 200, 255)}) task.wait(0.1) Tween(Button, {0.1, Enum.EasingStyle.Quad, Enum.EasingDirection.Out}, {BackgroundColor3 = Color3.fromRGB(45, 45, 45)}) loadstring(scriptCode)() end) end -- السكربتات AddScript("RUN SMLA", [[loadstring(game:HttpGet("https://pastebin.com/raw/nhQ3qZ0j"))() ]]) AddScript("GueVara BANG", [[loadstring(game:HttpGet("https://pastebin.com/raw/MqarHqhZ"))() ]]) AddScript("RUN ANTI-AFK", [[loadstring(game:HttpGet("https://pastebin.com/raw/VadkW1ND"))()]]) AddScript("RUN SPAMMER", [[loadstring(game:HttpGet("https://pastebin.com/raw/TishVj0F"))()]]) AddScript("RUN PRIME SYSTEM", [[loadstring(game:HttpGet("https://pastebin.com/raw/PxeLyxB6"))()]]) AddScript("RUN FLY MOD", [[loadstring(game:HttpGet("https://pastebin.com/raw/PrKQa2ic"))()]]) AddScript("RUN ANTI-LAG PRO", [[loadstring(game:HttpGet("https://pastebin.com/raw/VR8bV1Kn"))()]]) -- Rainbow Effect task.spawn(function() while task.wait() do local c = Color3.fromHSV(tick() % 5 / 5, 0.8, 1) MainStroke.Color = c FrameStroke.Color = c end end) -- نظام الفتح/الإغلاق local isOpen = false MainButton.MouseButton1Click:Connect(function() if not isOpen then MainFrame.Visible = true MainFrame.Size = UDim2.new(0, 0, 0, 0) Tween(MainFrame, {0.5, Enum.EasingStyle.Elastic, Enum.EasingDirection.Out}, {Size = UDim2.new(0, 520, 0, 420)}) else Tween(MainFrame, {0.3, Enum.EasingStyle.Quart, Enum.EasingDirection.In}, {Size = UDim2.new(0, 0, 0, 0)}) task.wait(0.3) MainFrame.Visible = false end isOpen = not isOpen end) -- =================[ تشغيل تسلسل الأحداث ]================= task.spawn(function() -- 1. ظهور الانترو local infoIn = TweenInfo.new(1.2, Enum.EasingStyle.Quint, Enum.EasingDirection.Out) TweenService:Create(IntroFrame, infoIn, {BackgroundTransparency = 0}):Play() TweenService:Create(GuevaraImage, infoIn, {ImageTransparency = 0}):Play() TweenService:Create(WelcomeText, infoIn, {TextTransparency = 0}):Play() TweenService:Create(WelcomeStroke, infoIn, {Transparency = 0}):Play() task.wait(4) -- الانتظار 4 ثواني -- 2. اختفاء الانترو local infoOut = TweenInfo.new(1, Enum.EasingStyle.Quart, Enum.EasingDirection.In) TweenService:Create(IntroFrame, infoOut, {BackgroundTransparency = 1}):Play() TweenService:Create(GuevaraImage, infoOut, {ImageTransparency = 1}):Play() TweenService:Create(WelcomeText, infoOut, {TextTransparency = 1}):Play() local lastT = TweenService:Create(WelcomeStroke, infoOut, {Transparency = 1}) lastT:Play() lastT.Completed:Wait() IntroFrame:Destroy() ScreenGui.IgnoreGuiInset = false -- إرجاع الإعدادات للوضع الطبيعي للهب -- 3. إظهار زر الهب MainButton.Visible = true print("--- [ GUEVARA HUB FULLY LOADED ] ---") end)