#how do i change the cameras position for a cutscene
1 messages · Page 1 of 1 (latest)
local cameraPosition = game.Workspace.Camera.CFrame.Position
local Player = game:GetService("Players")
local partPosition = game.Workspace.Part.CFrame.Position
script.Parent.Touched:Connect(function(part)
if part.Parent:FindFirstChild("Humanoid") then
cameraPosition = CFrame.new(partPosition)
print("works")
end
end)
make camera type scriptable
no