Answered by
4 years ago Edited 4 years ago
So, here is how to make it :
First, you need a part or union(model won't work)
Second, Duplicate the part and move it to where u want the part to go and copy its position
Third, Create a script and type this :
01 | local TweenService = game:GetService( "TweenService" ) |
03 | local tweeening = TweenInfo.new( |
05 | Enum.EasingStyle.Linear, |
06 | Enum.EasingDirection.Out, |
11 | local up = { CFrame = CFrame.new(paste your position of the part here) } |
12 | local tweenup = TweenService:Create(thing,tweeening,up) |
Lastly, delete the part used for step 2
You can duplicate tweening or up or tweenup
This method works I used it for alot of my games
Or you can use this model :
https://www.roblox.com/library/3898573023/tween