--[[ 👽 RT HUB - Secure Version RT HUB WAS MADE BY SAUDI HUB DEVELOPER ]] local Players = game:GetService("Players") local UserInputService = game:GetService("UserInputService") local TweenService = game:GetService("TweenService") local lp = Players.LocalPlayer local hrp local gui = Instance.new("ScreenGui", game.CoreGui) -- القائمة local frame = Instance.new("Frame", gui) frame.Size = UDim2.new(0, 250, 0, 160) frame.Position = UDim2.new(0.5, -125, 0.8, -80) frame.BackgroundColor3 = Color3.fromRGB(15, 15, 35) frame.BorderSizePixel = 0 Instance.new("UICorner", frame) -- العنوان local title = Instance.new("TextLabel", frame) title.Size = UDim2.new(1, 0, 0, 30) title.Text = "👽 RT HUB - Tween Bypass" title.TextColor3 = Color3.fromRGB(0, 255, 150) title.Font = Enum.Font.GothamBold title.TextSize = 16 title.BackgroundTransparency = 1 -- زر Tween local tweenBtn = Instance.new("TextButton", frame) tweenBtn.Size = UDim2.new(1, -20, 0, 40) tweenBtn.Position = UDim2.new(0, 10, 0, 35) tweenBtn.Text = "🚀 Tween [OFF]" tweenBtn.BackgroundColor3 = Color3.fromRGB(200, 0, 0) tweenBtn.TextColor3 = Color3.new(1, 1, 1) tweenBtn.Font = Enum.Font.GothamBold tweenBtn.TextSize = 16 Instance.new("UICorner", tweenBtn) -- زر Anti-Cheat local acBtn = Instance.new("TextButton", frame) acBtn.Size = UDim2.new(1, -20, 0, 40) acBtn.Position = UDim2.new(0, 10, 0, 85) acBtn.Text = "🛡️ Anti-Cheat [OFF]" acBtn.BackgroundColor3 = Color3.fromRGB(150, 50, 50) acBtn.TextColor3 = Color3.new(1, 1, 1) acBtn.Font = Enum.Font.GothamBold acBtn.TextSize = 16 Instance.new("UICorner", acBtn) -- قيم local moving = false local acEnabled = false local acLoop -- 🚀 التفعيل Tween tweenBtn.MouseButton1Click:Connect(function() if not lp.Character or not lp.Character:FindFirstChild("HumanoidRootPart") then return end hrp = lp.Character.HumanoidRootPart if not moving then moving = true tweenBtn.Text = "🚀 Tween [ON]" tweenBtn.BackgroundColor3 = Color3.fromRGB(0, 200, 0) task.spawn(function() while moving and hrp do local cam = workspace.CurrentCamera local dir = cam.CFrame.LookVector local target = {CFrame = hrp.CFrame + Vector3.new(dir.X, 0, dir.Z) * 18} local tween = TweenService:Create(hrp, TweenInfo.new(0.35, Enum.EasingStyle.Linear), target) tween:Play() tween.Completed:Wait() end end) else moving = false tweenBtn.Text = "🚀 Tween [OFF]" tweenBtn.BackgroundColor3 = Color3.fromRGB(200, 0, 0) end end) -- 🛡️ Anti-Cheat Toggle acBtn.MouseButton1Click:Connect(function() acEnabled = not acEnabled if acEnabled then acBtn.Text = "🛡️ Anti-Cheat [ON]" acBtn.BackgroundColor3 = Color3.fromRGB(0, 150, 0) acLoop = task.spawn(function() while acEnabled do local char = lp.Character if char and char:FindFirstChildOfClass("Humanoid") then local hum = char:FindFirstChildOfClass("Humanoid") -- يرجع القيم الأصلية لو تغيرت if hum.WalkSpeed > 30 or hum.WalkSpeed < 16 then hum.WalkSpeed = 16 end if hum.JumpPower > 60 or hum.JumpPower < 50 then hum.JumpPower = 50 end end task.wait(1) end end) else acBtn.Text = "🛡️ Anti-Cheat [OFF]" acBtn.BackgroundColor3 = Color3.fromRGB(150, 50, 50) if acLoop then task.cancel(acLoop) end end end) -- 🖱️ Drag local dragging, dragStart, startPos frame.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch 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) 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 frame.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y) end end) -- رسالة مطور game:GetService("StarterGui"):SetCore("SendNotification", { Title = "👽 RT HUB", Text = "RT HUB WAS MADE BY SAUDI HUB DEVELOPER", Duration = 6 })