local b = a:GetExtentsSize().Y / 2
local c = workspace:FindFirstChild(play)
local d = Vector3.new(c.Position)
a:MoveTo(d)
This is the code that won’t work. More specifically, line 4. This isn’t the whole script, but only the sample that doesn’t work, as C is the place I want to move the model (a) to.
But it doesn’t do anything - it doesn’t even throw an error.
I have found the issue while I was waiting for a reply. The issue is that I was making a Vector3 using a Vector3 (position), and using the Position directly works.