Product: Banner Notify | Best Way To Notify!

Badge Giver - Touch Part with ◉ Banner Notify

local BadgeService = game:GetService("BadgeService")
local BadgeID = "id" 

local ReplicatedStorage = game:GetService("ReplicatedStorage")
local bannerNotification = require(ReplicatedStorage.BannerNotification)

local function giveBadge(player)
	
	if not BadgeService:UserHasBadge(player.UserId, BadgeID) then
		
		BadgeService:AwardBadge(player.UserId, BadgeID)

		bannerNotification:Notify("Notification", "".. player.Name.. " has been awarded the badge!", "rbxassetid://12966400024", 2, nil, player)
		
	end
end

script.Parent.Touched:Connect(function(hit)
	local character = hit.Parent
	local player = game.Players:GetPlayerFromCharacter(character)
	if player then
		giveBadge(player)
	end
end)
3 Likes

I tried it and it didn’t work.

1 Like

Could you provide me instructions on how to set it up because the neither the banner system or badge giver were working?

1 Like

Hey, since he isn’t answering let me help:

  1. At line 2, on local BadgeID = "id" Change "id" with your badge ID!
    2.Make sure you have the Banner Notify “addon(?)” installed!

Hope this helped, if you have any problems let me know!
:slightly_smiling_face:

1 Like

I try to using NumberOfActiveNotifications in client side and I got this:

ReplicatedStorage.BannerNotification_Storage.BannerNotificationModule:137: attempt to get length of a Instance value

I’m using that method in “Handler” LocalScript

local tween_service = game:GetService("TweenService")
local run_service = game:GetService("RunService")
local input_service = game:GetService("UserInputService")
local replicated_storage = game:GetService("ReplicatedStorage")

local info = TweenInfo.new(.5, Enum.EasingStyle.Exponential)

local bannerModule = require(replicated_storage:WaitForChild("BannerNotification_Storage").BannerNotificationModule)
print(bannerModule.NumberOfActiveNotifications()) -- Error

I created a Banner Notification component for roblox-ts and rojo/wally in this repository: YadBro/banner-notify.

1 Like

I’m sure it’s an easy solution… but I’m a bit new at scripting and I’m unable to solve my issue. I’m receiving the error “Unable to cast value to Object” at line 126 (specifically notifyEvent:FireClient()
I’ve tried adding print statements in the Notify function, adjusting the player value provided, and digging through the module script and I’m still unable to come up with something.

1 Like

Can you provide more information about the issue?

hey, i havent tried out this yet but im wondering if the ui is fully customizable? like i dont mean just changing the background color i mean like adding uistrokes to the texts, the background, changing fonts, changing the size, etc

Works well after an adjustment. I don’t know what loader our team uses, but the following steps were followed to get going with this:

  1. Wally plugin → download as shared dependency.
  2. In the package itself, the following code was inserted:
function module:Init()
	if runService:IsClient() then
		module:InitClient()
	elseif runService:IsServer() then
		module:InitServer()
	end
end

Thank you for your help!

1 Like

Heya! I was working on a system that prevents users from spamming the commands on my admin system (I’m doing so by using the .NumberOfActiveNotifications. Here is my code:

local prefix = "-"
local folder = game.ReplicatedStorage.admin
local BannerNotificationModule = require(game:GetService("ReplicatedStorage").BannerNotification_Storage.BannerNotificationModule)
local configs= {
	.3, 					
	Color3.fromRGB(0, 0, 0),

	0, 								
	Color3.fromRGB(255, 255, 255),
}
game.Players.PlayerAdded:Connect(function(plr)
	plr.Chatted:Connect(function(message)
		print(message)
		print(BannerNotificationModule.NumberOfActiveNotifications(plr))
		-- ping
		if message:sub(1, #prefix) == prefix then
			local command = message:sub(#prefix + 1):lower()
			if command == "ping" then
				print("Pong!")
				BannerNotificationModule:Notify("Pong!", "Pong! This is a test notification", "rbxassetid://11326670020", 5, configs,plr)
			end
		end
	end)
end)

Weirdly, my code gives this error when retrieving the .NumberOfActiveNotifications:

Any idea of why this happens? Or is this a problem within my code?

This is a recurring issue with Banner Notify, but I’m trying to fix it ﹕)

2 Likes

Alrighty. Thank you!!

||character limit||

The error is coming from checking the length of an instance, which logically can’t be done. However, your code won’t work regardless as banner library has no current way to actually know how many notifications are active as they are created on the client and you are checking on the server. Due to how replication works, those UI elements are only created for the player.

yo @blve_hxrizon, When the player resets and there is a notification active the notification never ends or disappears.
Check it Here (Dropbox)

just set ResetOnSpawn to false on the Gui object

yeah i did that, but it can happen in certain situation anyways.

I added some buttons:


image
image
TestPlace (74.3 KB)

3 Likes

It looks like it is not compatible for mobile, it is huge on the screen, can you make it compatible for mobile?

1 Like

i love your works, they look so good!