How to Revolve Camera around a Point??
Srry im not good with CFrames.
How to Revolve Camera around a Point??
Srry im not good with CFrames.
Do you want it on the main menu or just without it?
main menu. Like this
Try this:
local CamPart = workspace:FindFirstChild("CameraPart")
local StopRevolve = false
local camera = game.Workspace.CurrentCamera
local Speed = 0.25 --Set Speed here
local function RevolveCamera()
while not StopRevolve do
camera.CameraType = Enum.CameraType.Scriptable
camera.CFrame = CamPart.CFrame
CamPart.CFrame = CamPart.CFrame * CFrame.Angles(0, math.rad(Speed), 0)
task.wait()
end
end
spawn(RevolveCamera)
script.Parent.MouseButton1Click:Connect(function()
StopRevolve = true
camera.CameraType = Enum.CameraType.Custom
camera.CFrame = game.Players.LocalPlayer.Character.Head.CFrame
end)
Sorry for the late reply because I was working on the script and also taking a break.
Hey its not similar to the movement in the video. Its rotating and i want the camera to revolve around a point/part.