Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local function callback(Text)
- if Text == "Yes" then
- print("Enjoy")
- elseif Text == "No" then
- print("WHY...")
- end
- end
- local NotificationBindable = Instance.new("BindableFunction")
- NotificationBindable.OnInvoke = callback
- game.StarterGui:SetCore("SendNotification", {
- Title = "Injection Status";
- Text = "Already Injected";
- icon = "";
- Duration = 5;
- Button1 = "Ok";
- callback = NotificationBindable;
- })
Add Comment
Please, Sign In to add comment