I'm trying to tween a part with a localscript but it doesn't run it Here's my script:
local tweenservice = game:GetService("TweenService") local part = workspace.Elevator1 -- Not a model its a part local tweeningInfo = TweenInfo.new( 3.6, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut, math.huge, true, 3 ) local partProps = { Position = Vector3.new(9.6, 59.1, 22.05) } local Tween = tweenservice:Create(part, tweeningInfo, partProps) Tween:Play()