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)