Guest User

Untitled

a guest
Dec 30th, 2017
947
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. local TweenService = game:GetService("TweenService")
  2. local thing = script.Parent.ImageTransparency
  3. local goal = {}
  4. goal.ImageTransparency = 1
  5. local tweenInfo = TweenInfo.new(5) --5 is the duriation
  6. local tween = TweenService:Create(thing, tweenInfo, goal)
  7. tween:Play()
Advertisement
Add Comment
Please, Sign In to add comment