-- Script Title: YOYO SPEED & ULTRA HUB -- Developer: Hassan | TikTok: KERO_PES1 local Players = game:GetService("Players") local RunService = game:GetService("RunService") local TweenService = game:GetService("TweenService") local UserInputService = game:GetService("UserInputService") local localPlayer = Players.LocalPlayer local playerGui = localPlayer:WaitForChild("PlayerGui") if playerGui:FindFirstChild("YOYO_Speed_UI") then playerGui.YOYO_Speed_UI:Destroy() end local screen = Instance.new("ScreenGui", playerGui) screen.Name = "YOYO_Speed_UI" screen.ResetOnSpawn = false -- 1. الترحيب في منتصف الشاشة (يختفي بعد 5 ثوانٍ) local watermark = Instance.new("TextLabel", screen) watermark.Size = UDim2.new(0, 400, 0, 80) watermark.Position = UDim2.new(0.5, 0, 0.5, 0) watermark.AnchorPoint = Vector2.new(0.5, 0.5) watermark.Text = "منور السكريبت المطور حسن\nTikTok: KERO_PES1" watermark.TextColor3 = Color3.fromRGB(255, 255, 255) watermark.Font = Enum.Font.GothamBold watermark.TextSize = 24 watermark.BackgroundTransparency = 1 watermark.TextStrokeTransparency = 0.5 watermark.TextXAlignment = Enum.TextXAlignment.Center -- اختفاء الترحيب بنعومة task.spawn(function() task.wait(5) local tweenInfo = TweenInfo.new(1, Enum.EasingStyle.Linear) local fadeText = TweenService:Create(watermark, tweenInfo, {TextTransparency = 1, TextStrokeTransparency = 1}) fadeText:Play() fadeText.Completed:Connect(function() watermark:Destroy() end) end) -- 2. الزر الخارجي (YOYO SPEED) local toggle = Instance.new("TextButton", screen) toggle.Name = "YOYO_Toggle" toggle.Size = UDim2.new(0, 140, 0, 45) toggle.Position = UDim2.new(0.35, 0, 0.05, 0) toggle.Text = "YOYO SPEED" toggle.BackgroundColor3 = Color3.fromRGB(0, 0, 0) toggle.TextColor3 = Color3.fromRGB(255, 255, 255) toggle.Font = Enum.Font.GothamBold toggle.TextSize = 14 toggle.Draggable = true toggle.Active = true Instance.new("UICorner", toggle).CornerRadius = UDim.new(0, 10) local strokeBtn = Instance.new("UIStroke", toggle) strokeBtn.Color = Color3.fromRGB(255, 255, 255) -- 3. النافذة الرئيسية (YOYO HUB) local frame = Instance.new("Frame", screen) frame.Size = UDim2.new(0, 280, 0, 260) frame.Position = UDim2.new(0.5, -140, 0.5, -130) frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) frame.Visible = false frame.Draggable = true frame.Active = true Instance.new("UICorner", frame).CornerRadius = UDim.new(0, 14) local strokeFrame = Instance.new("UIStroke", frame) strokeFrame.Color = Color3.fromRGB(255, 255, 255) local title = Instance.new("TextLabel", frame) title.Size = UDim2.new(1, 0, 0, 40) title.Text = "YOYO HUB" title.TextColor3 = Color3.fromRGB(255, 255, 255) title.Font = Enum.Font.GothamBold title.TextSize = 20 title.BackgroundTransparency = 1 -- مربع السرعة local input = Instance.new("TextBox", frame) input.Size = UDim2.new(0.85, 0, 0, 35) input.Position = UDim2.new(0.075, 0, 0.20, 0) input.PlaceholderText = "Speed (1-300)" input.Text = "300" input.BackgroundColor3 = Color3.fromRGB(30, 30, 30) input.TextColor3 = Color3.fromRGB(255, 255, 255) input.Font = Enum.Font.GothamBold Instance.new("UICorner", input).CornerRadius = UDim.new(0, 8) -- زر تطبيق السرعة local btn = Instance.new("TextButton", frame) btn.Size = UDim2.new(0.85, 0, 0, 35) btn.Position = UDim2.new(0.075, 0, 0.38, 0) btn.Text = "Apply Speed" btn.BackgroundColor3 = Color3.fromRGB(255, 255, 255) btn.TextColor3 = Color3.fromRGB(0, 0, 0) btn.Font = Enum.Font.GothamBold Instance.new("UICorner", btn).CornerRadius = UDim.new(0, 8) -- زر القفز اللانهائي (Inf Jump) local infJumpBtn = Instance.new("TextButton", frame) infJumpBtn.Size = UDim2.new(0.85, 0, 0, 35) infJumpBtn.Position = UDim2.new(0.075, 0, 0.62, 0) infJumpBtn.Text = "Inf Jump: OFF ❌" infJumpBtn.BackgroundColor3 = Color3.fromRGB(30, 30, 30) infJumpBtn.TextColor3 = Color3.fromRGB(255, 255, 255) infJumpBtn.Font = Enum.Font.GothamBold Instance.new("UICorner", infJumpBtn).CornerRadius = UDim.new(0, 8) local strokeInf = Instance.new("UIStroke", infJumpBtn) strokeInf.Color = Color3.fromRGB(255, 255, 255) -- فتح/إغلاق الواجهة toggle.MouseButton1Click:Connect(function() frame.Visible = not frame.Visible end) -- برمجة السرعة local targetSpeed = 16 local speedLoop = nil btn.MouseButton1Click:Connect(function() local val = tonumber(input.Text) if val then if val > 300 then val = 300 end if val < 1 then val = 1 end targetSpeed = val if speedLoop then speedLoop:Disconnect() end speedLoop = RunService.RenderStepped:Connect(function() if localPlayer.Character and localPlayer.Character:FindFirstChild("Humanoid") then localPlayer.Character.Humanoid.WalkSpeed = targetSpeed end end) end end) -- برمجة القفز اللانهائي local infJumpEnabled = false infJumpBtn.MouseButton1Click:Connect(function() infJumpEnabled = not infJumpEnabled if infJumpEnabled then infJumpBtn.Text = "Inf Jump: ON ✅" infJumpBtn.BackgroundColor3 = Color3.fromRGB(255, 255, 255) infJumpBtn.TextColor3 = Color3.fromRGB(0, 0, 0) else infJumpBtn.Text = "Inf Jump: OFF ❌" infJumpBtn.BackgroundColor3 = Color3.fromRGB(30, 30, 30) infJumpBtn.TextColor3 = Color3.fromRGB(255, 255, 255) end end) UserInputService.JumpRequest:Connect(function() if infJumpEnabled then if localPlayer.Character and localPlayer.Character:FindFirstChild("Humanoid") then localPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Jumping) end end end)