Aiming Position Issue
-
What do you want to achieve?
I would want it to be looking like this.
-
What is the issue?
I want it to change it position, but i couldn’t change it into the CFrame i wanted.
-
What solutions have you tried so far?
The same issue still appears after many tries
local Camera = workspace.CurrentCamera
local aimpart = script.Parent.AimPart
script.Parent.Equipped:Connect(function(mouse)
mouse.Button2Down:Connect(function()
if reload == false and debounce == true then
MovementAnim:Play() --This is the animation.
Camera.CameraType = Enum.CameraType.Attach
Camera.CameraSubject = aimpart
elseif reload == true or debounce == false then
return
end
mouse.Button2Up:Connect(function()
MovementAnim:Stop()
Camera.CameraType = Enum.CameraType.Custom
Camera.CameraSubject = nil
end)
end)
end)
How do i place the camera inside the Aimpart instead of outside of the part and stare at it?