Advertisement
BoblokDevelopyyyr

InsideAPart - Project 3

Jun 12th, 2025 (edited)
671
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.37 KB | None | 0 0
  1. task.wait(2)
  2. local TweenService = game:GetService("TweenService")
  3. local part = script.Parent
  4.  
  5. local goal = {
  6.     Position = Vector3.new(-21.3, 5, -30.7),
  7.     Size = Vector3.new(10, 10, 10)
  8. }  
  9.  
  10. local tweenInfo = TweenInfo.new(
  11.     5,
  12.     Enum.EasingStyle.Cubic,
  13.     Enum.EasingDirection.Out,
  14.     0,
  15.     false,
  16.     0
  17. )
  18.  
  19. local tween = TweenService:Create(part, tweenInfo, goal)
  20. tween:Play()
Tags: Roblox
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement