How do i make the camera follow the players head z well using cameratype.Custom

im trying not use cameraSubject just in mind

– Script

local cam = workspace.CurrentCamera
local RS = game:GetService(“RunService”)
local player = game.Players.LocalPlayer

RS.RenderStepped:Connect(function()
cam.CFrame.Position.Z = player.Character.Head.CFrame.Position.Z
end)

3 Likes

I don’t understand what you’re trying to do? only make the camera move on the Z axis? also all camera scripting should be done on the Scriptable mode in the camera settings.

1 Like

im trying to make the camera kind of move with the players heads z axis but i tryed eveything. is there some thing that can help me?

1 Like

Do you have a reference/inspiriation you’re going for? Can you provide a video?

1 Like

robloxapp-20250101-1240478.wmv (2.8 MB)

do you see how the camera go with the players head z axis

1 Like

You mean the Y axis? I don’t see any Z axis movement, Z axis is usually the rotation of the camera, the Y axis is the up and down?

1 Like

game: Grace
Grace

i mean in positions. cause im not trying to rotate the camera

1 Like

So you mean the Y axis, correct?

1 Like

yea maybe? i see what works out

What im guessing, is that they have the camera subject to the characters head, and when the player crouches/plays and animation, the head goes with the animation, kind of giving that effect, I made a little script as an example:

local UIS = game:GetService("UserInputService")
local Camera = workspace.CurrentCamera

local Player = game.Players.LocalPlayer
local Character = Player.Character or Player.CharacterAdded:Wait()
local Humanoid = Character:WaitForChild("Humanoid")

local AnimId = "rbxassetid://99040100063832" --Your Animation

local Animator = Humanoid:FindFirstChildOfClass("Animator") or Instance.new("Animator", Humanoid)

local Animation = Instance.new("Animation")
Animation.AnimationId = AnimId
local AnimationTrack = Animator:LoadAnimation(Animation)

Camera.CameraSubject = Character:WaitForChild("Head")

UIS.InputBegan:Connect(function(input) 
	if input.KeyCode == Enum.KeyCode.C then
		AnimationTrack:Play()
	end
end)

UIS.InputEnded:Connect(function(input) 
	if input.KeyCode == Enum.KeyCode.C then
		AnimationTrack:Stop()
	end
end)


2 Likes

thanks. :partying_face:
ill test it later today.

ill mark you solution if it works right.

1 Like

i figured it out

local l__LocalPlayer__2 = game.Players.LocalPlayer;
local l__Character__3 = l__LocalPlayer__2.Character;
local l__Humanoid__1 = l__Character__3:WaitForChild(‘Humanoid’);
local l__RunService__4 = game:GetService(‘RunService’);
local l__CurrentCamera__6 = workspace.CurrentCamera;
local l__CurrentCameraPos__9 = l__CurrentCamera__6.CFrame;
local l__Head__8 = l__Character__3:WaitForChild(‘Head’);
local l__HumanoidRootPart__7 = l__Character__3:WaitForChild(‘HumanoidRootPart’);

l__RunService__4.RenderStepped:Connect(function()
local CFrameHeadPos = l__HumanoidRootPart__7.CFrame * CFrame.new(0,1,1)
local CFrameAttack = CFrameHeadPos:ToObjectSpace(l__Head__8.CFrame);
l__Humanoid__1.CameraOffset = l__Humanoid__1.CameraOffset:Lerp(CFrameAttack.Position,.25);
end);

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.