For your information, I do not know how to script!
Hello, i made a place in Roblox that is a reference to a real life place, which is our classroom. I noticed that everything seemed a little taller than my character, like the door. But that's just how it looks like in real life! So I didn't want to shrink it otherwise it wouldn't look like the one in real life, ya feel me? Thus i wanted to make the camera's position a little higher than normal, but unfortunately I don't know how to script. By the way, I locked the camera to First Person so you can't scroll your way to Third Person.
Set the CameraOffset property of Humanoid every time the player's character is spawned, by using the CharacterAdded like so:
local plr = game:GetService("Players").LocalPlayer plr.CharacterAdded:Connect(function(char) char:WaitForChild("Humanoid").CameraOffset = Vector3.new(0,3,0) end)
Put that code into a LocalScript
and place the script i.e. in StarterGui
or ReplicatedFirst
.