My model doesn’t seem to tween its CFrame. Can anyone help?
Plant = game.ReplicatedStorage.PlantingObjects.WheatSeed:Clone()
Plant.Parent = Soil
local PlantCf = Plant:GetPrimaryPartCFrame()
local SoilCF = CFrame.new(script.Parent.Position.X, script.Parent.Position.Y - 5, script.Parent.Position.Z)
PlantCf = Plant:SetPrimaryPartCFrame(SoilCF)
GrowTime = 10 / Divide
Tween = TweenInfo.new(GrowTime)
SoilCF = Soil.CFrame.Position
local TweenPlant = TweenService:Create(Plant.PrimaryPart.CFrame, Tween, {Position = SoilCF})
print(SoilCF)
TweenPlant:Play()