Advertisement
baconhack_263

Baconhack hub Notifier

Sep 1st, 2024 (edited)
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. --Made by Baconhack_26 on Roblox!
  2.  
  3. local function notify(text)
  4. local Notification = Instance.new('ScreenGui')
  5. Notification.Name = 'Notification'
  6. Notification.Parent = game.CoreGui
  7.  
  8. local Frame = Instance.new('Frame')
  9. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  10. Frame.Position = UDim2.new(0, 150, 0, 0)
  11. Frame.Size = UDim2.new(0, 500, 0, 100)
  12. Frame.Parent = Notification
  13.  
  14. local TextLabel = Instance.new('TextLabel')
  15. TextLabel.BackgroundTransparency = 1
  16. TextLabel.Position = UDim2.new(0, 20, 0, 20)
  17. TextLabel.Size = UDim2.new(1, -40, 1, -40)
  18. TextLabel.Text = text
  19. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  20. TextLabel.TextSize = 24
  21. TextLabel.TextStrokeColor3 = Color3.new(1, 0, 0)
  22. TextLabel.TextStrokeTransparency = 0.5
  23. TextLabel.TextWrapped = true
  24. TextLabel.TextXAlignment = Enum.TextXAlignment.Left
  25. TextLabel.Parent = Frame
  26.  
  27. local uiStroke = Instance.new('UIStroke')
  28. uiStroke.ApplyStrokeMode = Enum.ApplyStrokeMode.Border
  29. uiStroke.Color = Color3.new(1, 0, 0)
  30. uiStroke.Thickness = 2
  31. uiStroke.Parent = Frame
  32.  
  33. local sound = Instance.new('Sound')
  34. sound.SoundId = 'rbxassetid://5455280246'
  35. sound.Parent = game.SoundService
  36. sound:Play()
  37.  
  38. game:GetService("Debris"):AddItem(sound, 7)
  39.  
  40. wait(5)
  41. Notification:Destroy()
  42. end
  43.  
  44.  
  45. _G.notify
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement