How to convert Vector3 to Vector3Int?

Hello,

is there a way to convert a Vector3 to a Vector3Int? I need to do :PasteRegion but I want it to paste on the position of my part.

Roblox showed how to convert Vector3Int16 into a Vector3

local function ConvertVector3int16ToVector3(vector16)
	return Vector3.new(vector16.X, vector16.Y, vector16.Z)
end

Try reversing it and see if it works:

local function ConvertVector3ToVector3Int16(vector3)
	return Vector3int16.new(vector3.X, vector3.Y, vector3.Z)
end