DiscordProgrammer404

TBX Notify

Dec 21st, 2020 (edited)
684
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.47 KB | None | 0 0
  1. local function callback(text)
  2.     if text == "Aceptar" then
  3.  
  4.     elseif text == "No" then
  5.         print(".")
  6.     end
  7. end
  8.  
  9. local bindableFunction = Instance.new("BindableFunction")
  10. bindableFunction.OnInvoke = callback
  11.  
  12. game.StarterGui:SetCore("SendNotification", {
  13.     Title = "TBX Exploit";
  14.     Text = "Injeccion con exito!";
  15.     Icon = "http://www.roblox.com/asset/?id=6242712105";
  16.     Duration = 7;
  17.     Callback = bindableFunction;
  18.     Button1 = "Aceptar";
  19.  
  20.  
  21. })
Add Comment
Please, Sign In to add comment