Advertisement
SigmaBoy456

Roblox part, 38 Example Tween

Aug 21st, 2024
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. local part = script.Parent
  2. local tw = game:GetService("TweenService")
  3. local info = TweenInfo.new(1, Enum.EasingStyle.Linear, Enum.EasingDirection.In, -1, false, -1)
  4. if part then
  5. local Tween = tw:Create(part, info, {Position = Vector3.new(0, 50, 0)})
  6. Tween:Play()
  7. end
  8.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement