local UIS = game:GetService("UserInputService") local RunService = game:GetService("RunService") local Players = game:GetService("Players") local player = Players.LocalPlayer local mouse = player:GetMouse() local camera = workspace.CurrentCamera local isReadingMode = false -- تفعيل/إلغاء وضع القراءة UIS.InputBegan:Connect(function(input, isProcessed) if not isProcessed and input.KeyCode == Enum.KeyCode.H then isReadingMode = not isReadingMode if isReadingMode then print("أنت تقرأ على الشاشة...") else print("تم إيقاف وضع القراءة.") end end end) -- التنقل عند الضغط على الشاشة mouse.Button1Down:Connect(function() if isReadingMode then local mousePos = mouse.Hit if mousePos then local character = player.Character if character and character:FindFirstChild("HumanoidRootPart") then character.HumanoidRootPart.CFrame = CFrame.new(mousePos.Position + Vector3.new(0, 5, 0)) end end end end)