Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
2

Moving a model using TweenService?

Asked by 5 years ago

I sorta got stuck in a rut where I can't change my script to not use tweenservice, because other wise I have to redo a large bulk of my script.

So is there a way to tween a model's cframe through the use of tweenservice?

1 answer

Log in to vote
-1
Answered by 5 years ago

Hello,

local tweenService = game:GetService("TweenService") --Get the tween service.

local part = Instance.new("Part") --Make a new part.
part.Position = part.Position --ignore 
part.Anchored = true --Part is anchored.
part.Parent = game.Workspace --The parent of the part is workspace

local goal = {} --Table.
goal.Position = Vector3.new(x,y,z) --Where you want the part to go (world coordinates) (change x y z to coordinates)

local tweenInfo = TweenInfo.new(4) --Speed (The lower the number the fastest the tween)

local tween = tweenService:Create(part, tweenInfo, goal) --Give the tween info.

tween:Play() --Execute the tween.

This is how you move a part

~Frag

Ad

Answer this question