Guest User

roblox: notification script

a guest
Dec 9th, 2018
6,993
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.30 KB | None | 0 0
  1. local function callback(Text)
  2. end
  3.  
  4. local NotificationBindable = Instance.new("BindableFunction")
  5. NotificationBindable.OnInvoke = callback
  6.  
  7. game.StarterGui:SetCore("SendNotification", {
  8.     Title = "whatever";
  9.     Text = "skrrt dab";
  10.     Duration = "5";
  11.     Callback = NotificationBindable;
  12. })
Advertisement
Add Comment
Please, Sign In to add comment