Advertisement
boboh

Untitled

Apr 27th, 2020
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.84 KB | None | 0 0
  1. function Notify(ABC)
  2. local Notify = Instance.new("ScreenGui")
  3. local Frame = Instance.new("Frame")
  4. local Title = Instance.new("TextLabel")
  5. local Shadow = Instance.new("TextLabel")
  6. local Message = Instance.new("TextLabel")
  7. local Button = Instance.new("TextButton")
  8.  
  9. Notify.Name = "Notify"
  10. Notify.Parent = game:WaitForChild("CoreGui")
  11. Notify.DisplayOrder = 1
  12. Notify.ResetOnSpawn = false
  13.  
  14. Frame.Parent = Notify
  15. Frame.Position = UDim2.new(0.25, 0, 0.150000006, 0)
  16. Frame.Size = UDim2.new(0.5, 0, 0.699999988, 0)
  17. Frame.ZIndex = 7
  18. Frame.Style = Enum.FrameStyle.ChatBlue
  19.  
  20. Title.Name = "Title"
  21. Title.Parent = Frame
  22. Title.BackgroundTransparency = 1
  23. Title.BorderSizePixel = 0
  24. Title.Size = UDim2.new(1, 0, 0.150000006, 0)
  25. Title.ZIndex = 8
  26. Title.Font = Enum.Font.SourceSansBold
  27. Title.Text = "Welcome"
  28. Title.TextColor3 = Color3.new(0.309804, 0.619608, 1)
  29. Title.TextSize = 48
  30. Title.TextStrokeTransparency = 0.89999997615814
  31.  
  32. Shadow.Name = "Shadow"
  33. Shadow.Parent = Title
  34. Shadow.BackgroundTransparency = 1
  35. Shadow.BorderSizePixel = 0
  36. Shadow.Position = UDim2.new(0, 1, 0, 1)
  37. Shadow.Size = UDim2.new(1, 0, 1, 0)
  38. Shadow.ZIndex = 7
  39. Shadow.Font = Enum.Font.SourceSansBold
  40. Shadow.Text = "Welcome"
  41. Shadow.TextColor3 = Color3.new(0, 0, 0)
  42. Shadow.TextSize = 48
  43. Shadow.TextStrokeTransparency = 0.89999997615814
  44. Shadow.TextTransparency = 0.60000002384186
  45.  
  46. Message.Name = "Message"
  47. Message.Parent = Frame
  48. Message.BackgroundTransparency = 1
  49. Message.BorderSizePixel = 0
  50. Message.Position = UDim2.new(0.100000001, 0, 0.170000002, 0)
  51. Message.Size = UDim2.new(0.800000012, 0, 0.600000024, 0)
  52. Message.ZIndex = 7
  53. Message.Font = Enum.Font.ArialBold
  54. Message.Text = ABC
  55. Message.TextColor3 = Color3.new(0.34902, 0.34902, 0.34902)
  56. Message.TextSize = 60
  57. Message.TextWrapped = true
  58.  
  59. Button.Name = "Button"
  60. Button.Parent = Frame
  61. Button.Position = UDim2.new(0.200000003, -10, 0.824999988, -5)
  62. Button.Size = UDim2.new(0.600000024, 20, 0.150000006, 10)
  63. Button.ZIndex = 7
  64. Button.Modal = true
  65. Button.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  66. Button.Font = Enum.Font.SourceSansBold
  67. Button.Text = "Ready!"
  68. Button.TextColor3 = Color3.new(1, 1, 1)
  69. Button.TextSize = 36
  70. Button.TextStrokeColor3 = Color3.new(0, 0.101961, 0.2)
  71. Button.TextStrokeTransparency = 0.69999998807907
  72.  
  73. function SCRIPT_WUTC85_FAKESCRIPT()
  74. local script = Instance.new("LocalScript")
  75. script.Parent = Button
  76. script.Parent.MouseButton1Down:connect(
  77. function()
  78. game.CoreGui.Notify:Destroy()
  79. end
  80. )
  81. end
  82. coroutine.resume(coroutine.create(SCRIPT_WUTC85_FAKESCRIPT))
  83. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement