How to make a interactable notification

Title says it all, there is a notification with title and desc. (and yes or no) or accept or decline buttons

1 Like
1 Like

I meant the one sendnotification

Actually you left out a lot of info in your question :slight_smile:

Anyways,

local callback = Instance.new("BindableFunction")

callback.OnInvoke = function(buttonText)
	print("Button with text '" .. buttonText .. "' was clicked!")
end

game:GetService("StarterGui"):SetCore("SendNotification", {
	Title = "My Title",
	Text = "My text description",
	Button1 = "Yes",
	Button2 = "No",
	Callback = callback
})

There’s more properties allowed. See the documentation for StarterGui | Roblox Creator Documentation

1 Like