Hey there,
I’d like to know if it’s possible to popup 2 notifications with the same string in it ? Because currently, a notification just stays up if the string is the same, instead of adding a new one. Here’s my code for the notification, and it’s being called every 10 seconds :
function PrintNotification(message)
SetNotificationTextEntry("STRING")
AddTextComponentString(message)
DrawNotification(0, 1)
end
Thanks