# F.A.Q > Frequently asked questions for ML MasterVideo Category: SCENE EDITOR · Source: https://miciomods.it/docs/ml-mastervideo-faq · Last updated: 2026-07-28 ## Setup **How do I change the language?** Set `Config.Locale` in `shared/config.lua`: **shared/config.lua** ```lua Config.Locale = 'en' ``` **How do I restrict access to the editor?** Set `Config.RequirePermissions = true` and configure `Config.AcePermission`: **shared/config.lua** ```lua Config.RequirePermissions = true Config.AcePermission = 'ml_mastervideo.access' ``` Grant the ACE in `server.cfg`: `add_ace group.admin ml_mastervideo.access allow` ## Scenes **What entity types are supported?** Three types: peds (humans and animals), vehicles (any GTA vehicle model), and props (world objects). Each entity can have custom appearance, behavior, and recorded movement paths. **How does path recording work?** Select an entity in the editor, start recording, and drive/walk the path. The system captures position, rotation, speed, and vehicle state at `Config.Performance.RecordingInterval` intervals. On playback, the entity follows the recorded path with interpolation. **What camera interpolation modes are available?** Three modes per keyframe: `linear` (constant speed), `smooth` (ease in/out), and `ease_in_out` (accelerate then decelerate). ## Performance **How many entities can a scene have?** `Config.Performance.MaxEntitiesPerScene` (default: 50). Reduce for better performance on lower-end hardware. **What is the recording quality?** Controlled by `Config.Performance.RecordingInterval`. Default 50ms = 20 FPS. Lower values = smoother but larger data. Higher values = smaller data but choppier playback. ## Updates **How do I update the script?** 1. Download latest from CFX Portal 2. Backup `shared/config.lua` and `server/config_server.lua` 3. Replace all files except config 4. Restart the resource Scenes are stored in the database and survive updates.