Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local blur = Instance.new("BlurEffect", game.Lighting)
- blur.Size = 0
- local ScreenGui = Instance.new("ScreenGui")
- local ImageLabel = Instance.new("ImageLabel")
- ScreenGui.Parent = game.CoreGui
- ImageLabel.Parent = ScreenGui
- ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
- ImageLabel.BackgroundTransparency = 1
- ImageLabel.Position = UDim2.new(0.5, -(700 / 2), 0.5, -(700 / 2))
- ImageLabel.Rotation = 0
- ImageLabel.Size = UDim2.new(0, 700,0, 700)
- ImageLabel.Image = "rbxassetid://14047979592"
- ImageLabel.ImageTransparency = 1
- for i = 1, 50, 2 do
- blur.Size = i
- ImageLabel.ImageTransparency = ImageLabel.ImageTransparency - 0.1
- wait()
- end
- wait(1)
- for i = 1, 50, 2 do
- blur.Size = 50 - i
- ImageLabel.ImageTransparency = ImageLabel.ImageTransparency + 0.1
- wait()
- end
- blur:Destroy()
- ScreenGui:Destroy()
Advertisement
Add Comment
Please, Sign In to add comment