Advertisement
Guest User

ALVIN BLOX TWEEENING

a guest
May 26th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.37 KB | None | 0 0
  1. local TweenService = game:GetService("TweenService")
  2. local part = script.Parent
  3.  
  4. local tweeningInfo = TweenInfo.new(
  5. 5,
  6. Enum.EasingStyle.Bounce,
  7. Enum.EasingDirection.Out,
  8. 10,
  9. true,
  10. 2
  11. )
  12.  
  13. local PartProp = {
  14.     Size = Vector3.new(1.844, 40.67, 1.844);
  15.     Color = Color3.new(0,0,0);
  16. }
  17.  
  18. local Tween = TweenService:Create(part,TweenInfo,PhysicalProperties)
  19. Tween:Play()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement