i need help with TweenService CFrame , i want my stand to go back to character and dissapear this is my script , but i cant move my stand to character
and now my stand just become transparent but no going back : https://gyazo.com/50bb733f578ac6fe38e7b4211303e900
local Stand = char:FindFirstChild("Stand")
local standrootpart = Stand.HumanoidRootPart
local rootpart = char.PrimaryPart
for i, v in pairs(Stand:GetChildren()) do
if v:IsA("BasePart") then
local tweenInfo = TweenInfo.new(
0.15,
Enum.EasingStyle.Linear,
Enum.EasingDirection.InOut,
0,
false,
0
)
local goal = {Transparency = 1}
local tween = TweenService:Create(v, tweenInfo, goal)
tween:Play()
tween.Completed:Connect(function()
Stand:Destroy()
end)