Advertisement
Sungmingamerpro13

New TransitionScript (LocalScript)

Nov 15th, 2024
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.66 KB | None | 0 0
  1. local Transition = script.Parent.Transition
  2.  
  3. Transition.Size = UDim2.new(0,0,0,0)
  4. Transition:TweenSize(UDim2.new(0,0,0,0))
  5.  
  6. wait(3)
  7.  
  8. Transition:TweenSize(UDim2.new(1,0,1,0))
  9.  
  10. while true do
  11.     Transition.ImageRectOffset = Vector2.new(1,0)
  12.     wait(1)
  13.     Transition.ImageRectOffset = Vector2.new(0,0)
  14.     wait(1)
  15.     Transition.ImageRectOffset = Vector2.new(1,0)
  16.     wait(1)
  17.     Transition.ImageRectOffset = Vector2.new(0,0)
  18.     wait(1)
  19.     Transition.ImageRectOffset = Vector2.new(1,0)
  20.     wait(1)
  21.     Transition.ImageRectOffset = Vector2.new(0,0)
  22.     wait(1)
  23.     break
  24. end
  25.  
  26. wait(5)
  27. Transition.GameLogo:TweenSize(UDim2.new(0,0,0,0))
  28. wait(3)
  29. Transition:TweenSize(UDim2.new(0,0,0,0))
  30.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement