local TweenService=game:GetService("TweenService") local SoundService=game:GetService("SoundService") local Lighting=game:GetService("Lighting") local Blur=Instance.new("BlurEffect") Blur.Size=0 Blur.Parent=Lighting local GUI=Instance.new("ScreenGui") GUI.ResetOnSpawn=false GUI.Parent=game.CoreGui local Main=Instance.new("Frame",GUI) Main.Size=UDim2.new(0,520,0,200) Main.Position=UDim2.new(0.5,-260,0.5,-100) Main.BackgroundColor3=Color3.fromRGB(10,10,10) Main.BorderSizePixel=0 Instance.new("UICorner",Main).CornerRadius=UDim.new(0,24) local Accent=Instance.new("Frame",Main) Accent.Size=UDim2.new(1,0,0,6) Accent.BackgroundColor3=Color3.fromRGB(220,20,20) Accent.BorderSizePixel=0 Instance.new("UICorner",Accent).CornerRadius=UDim.new(0,24) local Title=Instance.new("TextLabel",Main) Title.Position=UDim2.new(0,24,0,18) Title.Size=UDim2.new(1,-48,0,40) Title.BackgroundTransparency=1 Title.Text="Redz Hub" Title.TextColor3=Color3.fromRGB(255,70,70) Title.Font=Enum.Font.GothamBlack Title.TextSize=26 Title.TextXAlignment=Enum.TextXAlignment.Left local Message=Instance.new("TextLabel",Main) Message.Position=UDim2.new(0,24,0,70) Message.Size=UDim2.new(1,-48,0,100) Message.BackgroundTransparency=1 Message.TextWrapped=true Message.TextYAlignment=Enum.TextYAlignment.Top Message.Text="Reeedz hub has continued to this:\nJoin discord.gg/uct" Message.TextColor3=Color3.fromRGB(235,235,235) Message.Font=Enum.Font.Gotham Message.TextSize=18 Message.TextXAlignment=Enum.TextXAlignment.Left local Sound=Instance.new("Sound") Sound.Parent=SoundService Sound.SoundId="rbxassetid://541909867" Sound.Volume=3 Sound.Looped=false Sound:Play() TweenService:Create(Blur,TweenInfo.new(0.5),{Size=22}):Play() TweenService:Create(Main,TweenInfo.new(0.7,Enum.EasingStyle.Quint,Enum.EasingDirection.Out),{Size=UDim2.new(0,560,0,220)}):Play()