Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local TweenService = game:GetService("TweenService")
- local player = game.Players.LocalPlayer
- local TransitionEvent = game.ReplicatedStorage.TransitionEvent
- local ScreenGui = player.PlayerGui.DialogueGui
- local Transition = ScreenGui.TransitionFrame
- local TransitionLogo = Transition.TransitionLogo
- TransitionEvent.OnClientEvent:Connect(function(timer)
- local goal_start = {}
- local goal_start2 = {}
- local goal_end = {}
- local goal_end2 = {}
- goal_start.BackgroundTransparency = 0
- goal_end.BackgroundTransparency = 1
- goal_start2.ImageTransparency = 0
- goal_end2.ImageTransparency = 1
- local tweenInfo = TweenInfo.new(2) -- add N time
- local tweenInfo2 = TweenInfo.new(2)
- local tween_start = TweenService:Create(Transition, tweenInfo, goal_start)
- local tween_start2 = TweenService:Create(TransitionLogo, tweenInfo2, goal_start2)
- local tween_end = TweenService:Create(Transition, tweenInfo, goal_end)
- local tween_end2 = TweenService:Create(TransitionLogo, tweenInfo2, goal_end2)
- tween_start:Play()
- tween_start2:Play()
- wait(7)
- tween_end:Play()
- tween_end2:Play()
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement