local sound = Instance.new("Sound",workspace) sound.SoundId = "http://www.roblox.com/asset/?id=35889747" sound.Volume = 10 for i,v in pairs(game.Players:GetChildren()) do local screengui = Instance.new("ScreenGui") local img = Instance.new("ImageLabel",screengui) img.AnchorPoint = Vector2.new(0.5,0.5) img.Size = UDim2.new(0,1280,0,800) img.Position = UDim2.new(0.5,0,0.5,0) img.Image = "http://www.roblox.com/asset/?id=1308665109" screengui.Parent = v.PlayerGui sound:Play() task.wait(1) screengui:Destroy() end