Advertisement
Gomlsauresrex

Untitled

Jun 5th, 2017
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. local tweenservice=game:GetService("TweenService")
  2. local tweeninfo=TweenInfo.new(2,Enum.EasingStyle.Quad,Enum.EasingDirection.Out,5,true,0)
  3.  
  4. local propgoals={
  5. Reflectance=1;
  6. Transparency=0;
  7. Size=Vector3.new(10,10,10);
  8. Color=BrickColor.Random().Color;
  9. Velocity=Vector3.new(1,1,1);
  10. }
  11.  
  12. local tween=tweenservice:Create(workspace.Part,tweeninfo,propgoals)
  13. tween:Play()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement