local TweenService = game:GetService("TweenService")
local Player = game.Players.LocalPlayer
local RemoteEvent = game.ReplicatedStorage.RemoteEvents.IntroEvent
local ScreenGui = Player.PlayerGui:WaitForChild("IntroGui")
local Frame = ScreenGui:WaitForChild("Frame")
local Image = Frame:WaitForChild("ImageLabel")
local TextLabel = Frame:WaitForChild("TextLabel")
Frame.BackgroundTransparency = 0
local FrameInvisible = {}
local ImageVisible = {}
local ImageInvisible = {}
local TextVisible = {}
local TextInvisible = {}
FrameInvisible.BackgroundTransparency = 1
ImageVisible.ImageTransparency = 0
ImageInvisible.ImageTransparency = 1
TextVisible.TextTransparency = 0
TextInvisible.TextTransparency = 1
local Info = TweenInfo.new(1)
local TweenFrameInvisible = TweenService:Create(Frame, Info, FrameInvisible)
local TweenImageVisible = TweenService:Create(Image, Info, ImageVisible)
local TweenImageInvisible = TweenService:Create(Image, Info, ImageInvisible)
local TweenTextVisible = TweenService:Create(TextLabel, Info, TextVisible)
local TweenTextInvisible = TweenService:Create(TextLabel, Info, TextInvisible)
RemoteEvent.OnClientEvent:Connect(function()
TextLabel.Text = "WARNING: THIS GAME HAS JUMPSCARES"
TweenTextVisible:Play()
wait(4)
TweenTextInvisible:Play()
wait(3)
TextLabel.Text = "REVTHEDEV PRESENTS"
TweenTextVisible:Play()
wait(4)
TweenTextInvisible:Play()
wait(3)
TweenImageVisible:Play()
wait(4)
TweenImageInvisible:Play()
TweenFrameInvisible:Play()
end)
** You are now Level 2! **