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 character = player.Character local camera = game.Workspace.CurrentCamera -- Put this script inside the Humanoid's "Head" part local head = script.Parent head.Touched:Connect(function(hit) if hit.Parent:FindFirstChild("Humanoid") then -- Set the camera's position and rotation to be over the shoulder camera.CFrame = CFrame.new(head.Position + Vector3.new(0, 3, -3), head.Position + Vector3.new(0, 3, 0)) end end)