local player = game.Players.LocalPlayer wait(0.5) local gui = Instance.new("ScreenGui") gui.Name = "tubers93" gui.ResetOnSpawn = false gui.Parent = player:WaitForChild("PlayerGui") -- create pop-up frame local frame = Instance.new("Frame") frame.Size = UDim2.new(1,0,1,0) frame.BackgroundColor3 = Color3.new(1,1,1) frame.Parent = gui -- image local image = Instance.new("ImageLabel") image.Size = UDim2.new(0,300,0,300) image.Position = UDim2.new(0.5,-150,0.5,-150) image.BackgroundTransparency = 1 image.Image = "rbxassetid://103555910860905" image.Parent = frame -- text local text = Instance.new("TextLabel") text.Size = UDim2.new(1,0,0,50) text.Position = UDim2.new(0,0,0.7,0) text.BackgroundTransparency = 1 text.Text = "JOIN tubers93" text.TextScaled = true text.TextColor3 = Color3.new(0,0,0) text.Font = Enum.Font.ArialBold text.Parent = frame -- sound local sound = Instance.new("Sound") sound.SoundId = "rbxassetid://103215672097028" sound.Volume = 10 sound.Parent = frame wait(1) sound:Play() -- zoom jumpscare for i = 1, 20 do image.Size = image.Size + UDim2.new(0,50,0,50) image.Position = UDim2.new(0.5,-image.Size.X.Offset/2,0.5,-image.Size.Y.Offset/2) wait(0.03) end -- flash for i = 1,5 do frame.BackgroundColor3 = Color3.new(1,0,0) wait(0.05) frame.BackgroundColor3 = Color3.new(1,1,1) wait(0.05) end text.Text = "YOU BELONG TO tubers93" wait(3) gui:Destroy()