--[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] -- [[ Script Loader with Discord Link & Countdown ]] -- local ScreenGui = Instance.new("ScreenGui") local CountdownFrame = Instance.new("Frame") local UICorner = Instance.new("UICorner") local UIStroke = Instance.new("UIStroke") local TimerLabel = Instance.new("TextLabel") local StatusLabel = Instance.new("TextLabel") local DiscordLabel = Instance.new("TextLabel") -- إضافة نص الديسكورد -- إعدادات الشاشة ScreenGui.Parent = game.CoreGui ScreenGui.Name = "Bot1_Loader_Discord" -- الإطار الرئيسي (مربع فخم) CountdownFrame.Name = "CountdownFrame" CountdownFrame.Parent = ScreenGui CountdownFrame.BackgroundColor3 = Color3.fromRGB(10, 10, 12) CountdownFrame.Position = UDim2.new(0.5, -110, 0.5, -125) CountdownFrame.Size = UDim2.new(0, 220, 0, 250) -- زدنا الطول شوي عشان الرابط CountdownFrame.BorderSizePixel = 0 UICorner.CornerRadius = UDim.new(0, 15) UICorner.Parent = CountdownFrame -- ستريك نيون أزرق (Stroke) UIStroke.Parent = CountdownFrame UIStroke.Color = Color3.fromRGB(0, 170, 255) UIStroke.Thickness = 3 -- رقم العداد TimerLabel.Parent = CountdownFrame TimerLabel.BackgroundTransparency = 1 TimerLabel.Size = UDim2.new(1, 0, 0.5, 0) TimerLabel.Position = UDim2.new(0, 0, 0.1, 0) TimerLabel.Font = Enum.Font.Code TimerLabel.Text = "5" TimerLabel.TextColor3 = Color3.fromRGB(0, 255, 255) TimerLabel.TextSize = 90 -- نص الحالة StatusLabel.Parent = CountdownFrame StatusLabel.BackgroundTransparency = 1 StatusLabel.Position = UDim2.new(0, 0, 0.55, 0) StatusLabel.Size = UDim2.new(1, 0, 0.15, 0) StatusLabel.Font = Enum.Font.SourceSansBold StatusLabel.Text = "جاري التحميل..." StatusLabel.TextColor3 = Color3.fromRGB(255, 255, 255) StatusLabel.TextSize = 18 -- رابط الديسكورد (Discord Link) DiscordLabel.Parent = CountdownFrame DiscordLabel.BackgroundTransparency = 1 DiscordLabel.Position = UDim2.new(0, 10, 0.75, 0) DiscordLabel.Size = UDim2.new(1, -20, 0.2, 0) DiscordLabel.Font = Enum.Font.Code DiscordLabel.Text = "discord.gg/VmJUrmzaF" -- رابطك DiscordLabel.TextColor3 = Color3.fromRGB(88, 101, 242) -- لون ديسكورد الرسمي DiscordLabel.TextSize = 14 DiscordLabel.TextWrapped = true -- [[ وظيفة العد التنازلي والتشغيل ]] -- local function startCountdown() -- نسخ الرابط للمستخدم تلقائياً (اختياري) setclipboard("https://discord.gg/VmJUrmzaF") for i = 5, 1, -1 do TimerLabel.Text = tostring(i) -- أنميشن نبض الرقم TimerLabel:TweenSize(UDim2.new(1, 15, 0.5, 15), "Out", "Quad", 0.1, true) wait(0.1) TimerLabel:TweenSize(UDim2.new(1, 0, 0.5, 0), "In", "Quad", 0.1, true) wait(0.8) end TimerLabel.Text = "0" StatusLabel.Text = "تم التشغيل!" wait(0.5) ScreenGui:Destroy() -- تشغيل السكربت الخاص بك pcall(function() loadstring(game:HttpGet("https://pastefy.app/9TPu9cZr/raw"))() end) end startCountdown()