Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local TweenService = game:GetService("TweenService")
- local thing = script.Parent.ImageTransparency
- local goal = {}
- goal.ImageTransparency = 1
- local tweenInfo = TweenInfo.new(5) --5 is the duriation
- local tween = TweenService:Create(thing, tweenInfo, goal)
- tween:Play()
Advertisement
Add Comment
Please, Sign In to add comment