Advertisement
Guest User

Untitled

a guest
Jan 25th, 2020
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.35 KB | None | 0 0
  1. local CoreNotify = Instance.new("ScreenGui")
  2. local Main = Instance.new("Frame")
  3. local RainbowPanel = Instance.new("Frame")
  4. local Title = Instance.new("TextLabel")
  5. local Message = Instance.new("TextLabel")
  6.  
  7. CoreNotify.Name = "CoreNotify"
  8. CoreNotify.Parent = game.CoreGui
  9. CoreNotify.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  10.  
  11. Main.Name = "Main"
  12. Main.Parent = CoreNotify
  13. Main.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  14. Main.BorderSizePixel = 0
  15. Main.Position = UDim2.new(0.825999975, 1000, 0.910000026, 0)
  16. Main.Size = UDim2.new(0, 284, 0, 80)
  17.  
  18. RainbowPanel.Name = "RainbowPanel"
  19. RainbowPanel.Parent = Main
  20. RainbowPanel.BackgroundColor3 = Color3.new(1, 1, 1)
  21. RainbowPanel.BorderSizePixel = 0
  22. RainbowPanel.Position = UDim2.new(0, 0, 0.912500024, 0)
  23. RainbowPanel.Size = UDim2.new(0, 284, 0, 7)
  24.  
  25. Title.Name = "Title"
  26. Title.Parent = Main
  27. Title.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  28. Title.BorderSizePixel = 0
  29. Title.Size = UDim2.new(0, 284, 0, 27)
  30. Title.Font = Enum.Font.Arial
  31. Title.Text = "Rose"
  32. Title.TextColor3 = Color3.new(1, 1, 1)
  33. Title.TextSize = 17
  34.  
  35. Message.Name = "Message"
  36. Message.Parent = Main
  37. Message.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  38. Message.BorderSizePixel = 0
  39. Message.Position = UDim2.new(0, 0, 0.337500006, 0)
  40. Message.Size = UDim2.new(0, 284, 0, 40)
  41. Message.Font = Enum.Font.Arial
  42. Message.Text = "Skidded By Gustas :)"
  43. Message.TextColor3 = Color3.new(1, 1, 1)
  44. Message.TextSize = 17
  45.  
  46.  
  47.  
  48. local function DDOCN_fake_script()
  49. local script = Instance.new('LocalScript', RainbowPanel)
  50.  
  51. repeat
  52. for hue = 0, 1, .01 do
  53. script.Parent.Parent.RainbowPanel.BackgroundColor3 = Color3.fromHSV(hue, 1, 1)
  54. wait(.1)
  55. end
  56. for hue = 1, 0 -.01 do
  57. script.Parent.Parent.RainbowPanel.BackgroundColor3 = Color3.fromHSV(hue, 1, 1)
  58. wait(.1)
  59. end
  60. until nil
  61. end
  62. coroutine.wrap(DDOCN_fake_script)()
  63. local function SQVNXJ_fake_script()
  64. local script = Instance.new('LocalScript', CoreNotify)
  65.  
  66. local GUI = script.Parent.Main
  67. function CloseGUI()
  68. GUI:TweenPosition(UDim2.new(0.826, 1000, 0.91, 0), 1)
  69. end
  70.  
  71. function OpenGUI()
  72. GUI:TweenPosition(UDim2.new(0.826, 0, 0.91, 0), 1)
  73. end
  74.  
  75. wait(3)
  76. OpenGUI()
  77. wait(8)
  78. CloseGUI()
  79.  
  80. end
  81. coroutine.wrap(SQVNXJ_fake_script)()
  82. wait(10)
  83. game:GetService("CoreGui").CoreNotify:Destroy()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement