Fix model ''MoveTo'' moving only on the top and not the exact position

Hi so uh, im tryna make a tower skin service for my game so its more easier and faster, BUT somehow instead of the model moving to the exact position as the script says, it only gets on top of it.
any way to fix it?

local value = script.Parent.creator
local skin = game.ReplicatedStorage.Skins.Juggernaut.Default.L_0:Clone()
value:GetPropertyChangedSignal("Value"):Connect(function()
	skin.Parent = script.Parent.Humanoid_Placeholder
	task.wait(0.03)
	script.Parent.Humanoid_Placeholder.Humanoid.Parent = skin
	skin:MoveTo(script.Parent.HumanoidRootPart.Position)
        script.SkinPriority.Value = 1
        script.Disabled = True
end)

visualweirdy

1 Like

Model:MoveTo(position) avoids obstructions with a vertical offset, whereas PVInstance:PivotTo(cframe) places the model exactly where specified.

skin:PivotTo(script.Parent.HumanoidRootPart.CFrame)

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.