local rig = workspace:WaitForChild("HumanoidCameraRig")
if not rig then
warn("HumanoidCameraRig not found!")
return
end
local camPart = rig:WaitForChild("CamPart")
if not camPart then
warn("CamPart not found in HumanoidCameraRig!")
return
end
I have script part like this Everything is okay but still gives error anyone know why? (It's Module script in replicatedstorage btw)