Advertisement
Guest User

Roblox Notification Script

a guest
Dec 8th, 2019
727
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. game.StarterGui:SetCore("SendNotification", {
  2. Title = "Anti-Afk!"; -- Required. Has to be a string!
  3. Text = "Enabled"; -- Required. Has to be a string!
  4. Icon = ""; -- Optional, defaults to "" (no icon)
  5. Duration = 5; -- Optional, defaults to 5 seconds
  6. Callback = bindableFunction; -- Optional, gets invoked with the text of the button the user pressed
  7. Button1 = ""; -- Optional, makes a button appear with the given text that, when clicked, fires the Callback if it's given
  8. Button2 = ""; -- Optional, makes another button appear with the given text that, when clicked, fires the Callback if it's given
  9. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement