Getting an error when trying to positioning a model

Hello,

So my problem here is that when I want to use CFrames it gives an error like this;

image

Right now i’m using this in my script;

local positionCFrame = CFrame.new(0, 2, 0)
tvPackage1.CFrame = position.CFrame:ToWorldSpace(positionCFrame)

But when I play the game it still planes the model on the exact location.(that location was not putted in the script)

Can someone help me with this?

Models dont have a CFrame property, use SetPrimaryPartCFrame

local positionCFrame = CFrame.new(0, 2, 0)
tvPackage1:SetPrimaryPartCFrame(position.CFrame:ToWorldSpace(positionCFrame))

Make sure your model has a primaryPart set to it or this will also error, you can go to the properties, press the space near PrimaryPart and click a part in the model to set it to the primarypart