Advertisement
Guest User

First Void Script

a guest
Feb 21st, 2020
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.45 KB | None | 0 0
  1. --// Global Variables
  2. local TweenService = game:GetService("TweenService")
  3.  
  4. local part = Instance.new("Part", workspace)
  5. part.Anchored = true
  6. part.CanCollide=false
  7. part.Material=Enum.Material.Slate
  8. part.BrickColor = BrickColor.new("Ghost grey")
  9.  
  10.  
  11. local info = TweenInfo.new(3,Enum.EasingStyle.Elastic,Enum.EasingDirection.Out,math.huge,true,0)
  12. local goals = {Size=Vector3.new(5,5,5)}
  13. local Tween1 = TweenService:Create(part,info,goals)
  14. Tween1:Play()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement