Humanoid CameraOffset through wall

  1. What do you want to achieve? I am making at Over the Shoulder gun system, and i use the Humanoid CameraOffset to set the camera behind the player when aiming.

  2. What is the issue? The camera goes through the walls if you get close to a wall.


  3. What solutions have you tried so far? I tried to fix it myself, but didn’t found a solution.

That’s just how it works sadly I think you should code a constant raycast system which casts a ray out from the players head (backwards) to detect the instances behind the player and their distance from you then instead of using camera offset you should have code directly change the cameras cframe instead of offset.

Yeah sending a ray cast every time the camera moves would be better though. Then just get the point that it hit then change that to the camera position.

Credit goes to forum runner who I took this code from. I know the code looks a bit messy here sorry I haven’t tested this it should modify the cams cframe

local players = game:GetService(“Players”)
local player = players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local hrp = character:WaitForChild(“HumanoidRootPart”)
local camera = workspace.CurrentCamera

task.delay(3,function()
camera.CameraType = Enum.CameraType.scriptable
camera.CFrame = CFrame.lookAt(hrp.Position + Vector3.new(0, 0, 5), hrp.Position)
end)