local root = script.Parent:WaitForChild('HumanoidRootPart')
local camera = workspace.CurrentCamera
local FPS = game:GetService('RunService')
local function onFrame()
camera.CFrame = CFrame.new(root.Position+Vector3.new(-8,20,0),root.Position)
camera.CameraType = Enum.cameratype.Scriptable
end
FPS:BindToRenderStep('Camera',10000,onFrame)











0 comments