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)
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’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.
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
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:
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.