crehdit

zzz Loading GUI

Jul 14th, 2023 (edited)
1,487
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.83 KB | None | 0 0
  1. local blur = Instance.new("BlurEffect", game.Lighting)
  2. blur.Size = 0
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local ImageLabel = Instance.new("ImageLabel")
  5. ScreenGui.Parent = game.CoreGui
  6. ImageLabel.Parent = ScreenGui
  7. ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  8. ImageLabel.BackgroundTransparency = 1
  9. ImageLabel.Position = UDim2.new(0.5, -(700 / 2), 0.5, -(700 / 2))
  10. ImageLabel.Rotation = 0
  11. ImageLabel.Size = UDim2.new(0, 700,0, 700)
  12. ImageLabel.Image = "rbxassetid://14047979592"
  13. ImageLabel.ImageTransparency = 1
  14.  
  15. for i = 1, 50, 2 do
  16.     blur.Size = i
  17.     ImageLabel.ImageTransparency = ImageLabel.ImageTransparency - 0.1
  18.     wait()
  19. end
  20. wait(1)
  21.  
  22. for i = 1, 50, 2 do
  23.     blur.Size = 50 - i
  24.     ImageLabel.ImageTransparency = ImageLabel.ImageTransparency + 0.1
  25.     wait()
  26. end
  27.  
  28. blur:Destroy()
  29. ScreenGui:Destroy()
Advertisement
Add Comment
Please, Sign In to add comment