SendNotification does not work at all

  1. What is the issue? The notification is not sending and I don’t know why. No errors are appearing. The local script is located in ReplicatedFirst. I also tried putting it in StarterPlayerScripts and nothing changed.
local StarterGui = game:GetService("StarterGui")

task.wait(5)

repeat
	local success, errorMessage = pcall(function()
		StarterGui:SetCore("SendNotification", {
			"Title",
			"Description",
			5
		})
	end)
until success
1 Like
local StarterGui = game:GetService("StarterGui")

task.wait(5)

repeat
	local success, errorMessage = pcall(function()
		StarterGui:SetCore("SendNotification", {
			Title="Title",
			Text="Description",
			Time=5
		})
	end)
until success
1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.