local trail = script.Parent.Trail
trail.Attachment0 = script.Parent.Attachment0
trail.Attachment1 = script.Parent.Parent[“Trail Display2”].Attachment1
local TweenService = game:GetService(“TweenService”)
local part = script.Parent
local part2 = script.Parent.Parent[“Trail Display2”]
local goal =
local goal2 =
goal.Position = part.Position * Vector3(0,3,0)
goal2.Position = part2.Position * Vector3(0,3,0)
local tweenInfo = TweenInfo.new(0.5, Enum.EasingStyle.Back, Enum.EasingDirection.In, -1, true)
local tween = TweenService:Create(part, tweenInfo, goal)
local tween2 = TweenService:Create(part2, tweenInfo, goal)
tween:Play()
tween2:Play()
in the above code, I am trying to set a tween service but whenever I set the end goal for the tween my output returns with an error stating an attempt to call a table value. I don’t see why that is wrong since that’s exactly what I’m doing here.