Advertisement
ZacBozer

intro

Apr 19th, 2020
347
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. local YES = Instance.new("ScreenGui")
  2. local Frame = Instance.new("Frame")
  3. local bruh = Instance.new("ImageLabel")
  4.  
  5. --Properties:
  6.  
  7. YES.Parent = game.CoreGui
  8. YES.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  9. YES.Name = "stop skidding"
  10.  
  11. Frame.Parent = YES
  12. Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  13. Frame.BackgroundTransparency = 1.000
  14. Frame.BorderSizePixel = 0
  15. Frame.Position = UDim2.new(0.5, 0, 0.5, 0)
  16. Frame.Size = UDim2.new(0, 256, 0, 256)
  17.  
  18. bruh.Parent = Frame
  19. bruh.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  20. bruh.BackgroundTransparency = 1.000
  21. bruh.Size = UDim2.new(0, 256, 0, 256)
  22. bruh.Image = "rbxassetid://4867025044"
  23. bruh.Position = UDim2.new(0, -128, 0, -128)
  24. bruh.ImageTransparency = 0
  25. wait(3)
  26.  
  27. while true do
  28. bruh.ImageTransparency = (bruh.ImageTransparency) + 0.025
  29. if bruh.ImageTransparency == 1 then
  30. YES:Destroy()
  31. break
  32. end
  33. wait(0.05)
  34. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement