-- سكربت سرعة آمن ومفتوح المصدر local ScreenGui = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local SpeedInput = Instance.new("TextBox") local ApplyButton = Instance.new("TextButton") -- إعداد الواجهة ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") MainFrame.Parent = ScreenGui MainFrame.Size = UDim2.new(0, 150, 0, 100) MainFrame.Position = UDim2.new(0.1, 0, 0.5, 0) MainFrame.BackgroundColor3 = Color3.fromRGB(50, 50, 50) -- مربع إدخال السرعة SpeedInput.Parent = MainFrame SpeedInput.Size = UDim2.new(1, -20, 0, 30) SpeedInput.Position = UDim2.new(0, 10, 0, 10) SpeedInput.PlaceholderText = "ادخل السرعة (مثلاً 50)" SpeedInput.Text = "" -- زر التفعيل ApplyButton.Parent = MainFrame ApplyButton.Size = UDim2.new(1, -20, 0, 40) ApplyButton.Position = UDim2.new(0, 10, 0, 50) ApplyButton.Text = "تغيير السرعة" ApplyButton.BackgroundColor3 = Color3.fromRGB(0, 150, 0) ApplyButton.TextColor3 = Color3.new(1, 1, 1) -- البرمجة ApplyButton.MouseButton1Click:Connect(function() local speedValue = tonumber(SpeedInput.Text) if speedValue then game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = speedValue end end)