function onUse(use) -- When PositionReset is used if use == "CameraPositionReset" then -- Reset the position of the camera CameraPositionReset() end end function CameraPositionReset() -- End if handy camera doesn't exist if vci.studio.HasHandiCamera() == false then print("Handy camera doesn't exist. End.") return end -- The coordinate to reset local position = Vector3.__new(0, 1, 0) -- Instance of the camera local camera = vci.studio.GetHandiCamera() -- Change the position of the camera camera.SetPosition(position) print("Camera position :"..tostring(camera.GetPosition())) end