``` -- يزن local player = game.Players.LocalPlayer local character = player.Character local ScreenGui = Instance.new("ScreenGui") ScreenGui.Parent = player.PlayerGui local Frame = Instance.new("Frame") Frame.Parent = ScreenGui Frame.Size = UDim2.new(0.5, 0, 0.2, 0) Frame.Position = UDim2.new(0.25, 0, 0.4, 0) Frame.BackgroundColor3 = Color3.new(1, 1, 1) local TextLabel = Instance.new("TextLabel") TextLabel.Parent = Frame TextLabel.Size = UDim2.new(1, 0, 1, 0) TextLabel.Text = "اضغط على الزر للطيران" local Button = Instance.new("TextButton") Button.Parent = Frame Button.Size = UDim2.new(0.4, 0, 0.2, 0) Button.Position = UDim2.new(0.3, 0, 0.6, 0) Button.Text = "طيران" local Button2 = Instance.new("TextButton") Button2.Parent = Frame Button2.Size = UDim2.new(0.4, 0, 0.2, 0) Button2.Position = UDim2.new(0.3, 0, 0.8, 0) Button2.Text = "توقف" local function fly() character.HumanoidRootPart.Velocity = Vector3.new(0, 50, 0) character.HumanoidRootPart.BrickColor = BrickColor.new("Blue") end local function stopFlying() character.HumanoidRootPart.Velocity = Vector3.new(0, 0, 0) character.HumanoidRootPart.BrickColor = BrickColor.new("Purple") end Button.MouseButton1Click:Connect(fly) Button2.MouseButton1Click:Connect(stopFlying) ```