You can write your topic however you want, but you need to answer these questions:
What do you want to achieve? Keep it simple and clear!
i wanted to make the character head follow camera
What is the issue? Include screenshots / videos if possible!
the character head follow the workspace camera while its “currentcamera”
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
i dont use too much developerhub cuz no one has the same question
i wanted so that the character follow the camera
-- script here
camPart.CFrame = CFrame.new(workspace.CurrentCamera.CFrame.Position,camPart.Position) --*Creeper.Head.CFrame * CFrame.new(0,0,-5)
i wanted the head follow the camera but not the workspace camera it will follow
any help would be appreciated
video here:
go to answers and download the rbxl file paste it into studio by pressing insert from file in context menu read the script inside and you’ll get it with time read the roblox documentation website
repeat wait(.1)
until game.Players.LocalPlayer.Character:FindFirstChild("Head")
game["Run Service"].Heartbeat:Connect(function()
local camera = workspace.CurrentCamera.CFrame.Position
script.Parent.LookCamera:FireServer(camera)
end)