RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Make a script that makes the camera over the shoulder with instructions on where to put it"
-- local script local player = game.Players.LocalPlayer local camera = workspace.CurrentCamera local shoulderOffset = Vector3.new(0, 0, -3) player.CharacterAdded:Connect(function(character) -- wait for character to be loaded wait(1) -- set camera position relative to character local rootPart = character:FindFirstChild("HumanoidRootPart") if rootPart then camera.CFrame = rootPart.CFrame * CFrame.new(shoulderOffset) end end)