of     1   

timulino
#227475074Sunday, November 12, 2017 12:46 PM GMT

I want to make the camera move from the position where it currently is to a new position when a player clicks a button, can anyone help me?
mattscy
#227475191Sunday, November 12, 2017 12:51 PM GMT

button.ClickDetector.MouseClick:Connect(function(hit) if hit == game.Players.LocalPlayer then local camera = workspace.CurrentCamera camera.CameraType = "Scriptable" camera.CFrame = CFrame.new(x,y,z) end end) put this in a local script, and you will have to edit it

    of     1