of     1   

unholysoda
#140153498Sunday, July 13, 2014 2:00 AM GMT

How would I set the camera so that you can only move it in a certain direction. For an example of what I mean, look at the Apocalypse Rising character creation screen. Where you can move the camera left and right but not up and down. In Apocalypse Rising, there is no way to move the camera other then left and right, But with what I have tried so far, it glitches out and still lets you move the camera for a second. This is what I have tried. local Camera = game.Workspace.CurrentCamera local Part = game.Workspace.Players:FindFirstChild(Player.Name) Camera.CameraSubject = Part Camera.CameraType = "Fixed" Camera.CoordinateFrame = CFrame.new(Part.Position.X, Part.Position.Y + 25, Part.Position.Z) Camera.Focus = CFrame.new(Part.Position) while true do wait() Camera.CoordinateFrame = CFrame.new(Part.Position.X, Part.Position.Y + 25, Part.Position.Z) Camera.Focus = CFrame.new(Part.Position) end
unholysoda
#140160235Sunday, July 13, 2014 3:08 AM GMT

bump
Jetta765214
#140161203Sunday, July 13, 2014 3:18 AM GMT

Interpolate the camera to the new position from the old position, which will make a transitioning affect. Alt. of Jetta765214
unholysoda
#140171159Sunday, July 13, 2014 5:15 AM GMT

bump
iimerkingalaxy
#140172420Sunday, July 13, 2014 5:31 AM GMT

local target = workspace.Part local camera = workspace.CurrentCamera camera.CameraSubject = target local angle = 0 - this should work if not set it on attach and it will move left and right

    of     1