"Make me a script where I can adjust my camera angle with the key binds f and g. F to make it go up and g to make it go down. Then I use the bind z to lock the camera on my teammate."
xxxxxxxxxx
-- local script
local UserInputService = game:GetService("UserInputService")
local Players = game:GetService("Players")
local localPlayer = Players.LocalPlayer
local camera = workspace.CurrentCamera
local function onInputBegan(input, gameProcessedEvent)
if gameProcessedEvent then return end
local cameraAngle = camera.CFrame
if input.KeyCode == Enum.KeyCode.F then
camera.CFrame = cameraAngle * CFrame.Angles(math.rad(-5), 0, 0)
elseif input.KeyCode == Enum.KeyCode.G then
camera.CFrame = cameraAngle * CFrame.Angles(math.rad(5), 0, 0)
elseif input.KeyCode == Enum.KeyCode.Z then
local teammate = Players:GetPlayerFromCharacter(localPlayer.TeamColor)
if teammate and teammate.Character and teammate.Character:FindFirstChild("HumanoidRootPart") then
camera.CameraSubject = teammate.Character.Humanoid
end
end
end
UserInputService.InputBegan:Connect(onInputBegan)