RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a roblox lua script that puts the player in 3d person view"
-- LocalScript inside StarterPlayerScripts local camera = workspace.CurrentCamera local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local function setThirdPersonView() camera.CameraType = Enum.CameraType.Custom camera.CameraSubject = character.Humanoid camera.FieldOfView = 70 camera.CFrame = character.HumanoidRootPart.CFrame * CFrame.new(0, 5, -10) end setThirdPersonView() character.Humanoid.Died:Connect(function() character = player.CharacterAdded:Wait() setThirdPersonView() end)