RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a roblox script that makes you zoom in and out"
-- local script local player = game:GetService("Players").LocalPlayer local camera = workspace.CurrentCamera local function zoomIn() camera.FieldOfView = camera.FieldOfView - 10 end local function zoomOut() camera.FieldOfView = camera.FieldOfView + 10 end -- You can connect these functions to GUI buttons or keyboard inputs -- For example, to connect them to the mouse wheel: player:GetMouse().WheelForward:Connect(zoomIn) player:GetMouse().WheelBackward:Connect(zoomOut)