script.Parent.MouseButton1Click:Connect(function()
local Players = game:GetService(“Players”)
local localPlayer = Players.LocalPlayer
local function resetCameraSubject()
if workspace.CurrentCamera and localPlayer.Character then
local humanoid = localPlayer.Character:FindFirstChildOfClass(“Humanoid”)
if humanoid then
workspace.CurrentCamera.CameraSubject = humanoid
end
end
end
end)
1 | game.Workspace.CurrentCamera.CameraType = "Custom" --Enables the ability to change the camera |
2 |
3 | game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character.Humanoid |
Lol just plugged it in. use this code. Make the camera Custom so you could change it. Hope this helps! Upvote to support me and if it helps, Mark question as answered for my answer please!