Advertisement
BlueZm

Untitled

Sep 19th, 2024
1,277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. loadstring(game:HttpGet("https://rawscripts.net/raw/upd5-superbox-siege-defense-supe-box-15572"))()
  2.  
  3. -- ignore
  4. local function callback(Text)
  5. if Text == "Button1 text" then
  6. print ("Answer")
  7. elseif Text == ("Button2 text") then
  8. print ("Answer2")
  9. end
  10. end
  11.  
  12. --actual
  13.  
  14. local NotificationBindable = Instance.new("BindableFunction")
  15. NotificationBindable.OnInvoke = callback
  16. --
  17. game.StarterGui:SetCore("SendNotification", {
  18. Title = "Subscribe To Bluezm?"; --the title
  19. Text = "Alr bro maybe now maybe no maybe later"; --the text
  20. Icon = ""; --icon if you want
  21. Duration = 20; --for how many seconds it should be there
  22. Button1 = "Sure/Nah/Later"; --option
  23. Callback = NotificationBindable;
  24. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement