RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"the "press t to go the first person" script isn't working."
-- local script local UserInputService = game:GetService("UserInputService") local player = game.Players.LocalPlayer local camera = game.Workspace.CurrentCamera local function toggleFirstPerson(input) if input.KeyCode == Enum.KeyCode.T then if camera.CameraType == Enum.CameraType.Custom then camera.CameraType = Enum.CameraType.FirstPerson else camera.CameraType = Enum.CameraType.Custom end end end UserInputService.InputBegan:Connect(toggleFirstPerson)