Hello, how could I narrow and move the camera?
Probably by making the map bigger, or the Player smaller.
If you want a camera script, this is a very basic one.
local Part = Instance.new("Part")
--Part properties
Part.Parent = game.Workspace
local Camera = game.Workspace.Camera
Camera.CameraType = Enum.CmeraType.Scriptable
Camera.CameraSubject = Part
--More cma properties, if you want,
That’s just a basic camera script, you can maybe make a minimap, put it in a model, and size all of the children down in a GetChildren loop.
That’s just how I would do it, sorry if it’s confusing.