How to make a fake badge notif?

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? Keep it simple and clear!
    To make a fake badge notification.

  2. What is the issue? Include screenshots / videos if possible!
    I have no clue on how to get started on making it

  3. What solutions have you tried so far? Did you look for solutions on the Creator Hub?
    Looked for videos forums, ect

I would like to create a script that makes a fake badge notification for the player in certain events in my game. But I have no clue on how to start it.

2 Likes

Do you want it to match the appearance of the actual Roblox default badge notification, or does the appearance not really matter to you?

1 Like

I want it to match the appearance of the actual roblox default badge notification for more realism.

1 Like
local StarterGui = game:GetService("StarterGui")
local Players = game:GetService("Players")

local function SendFakeBadge()
	StarterGui:SetCore("SendNotification",{
		Title = "Badge Awarded",
		Text = (`%s won %s's "%s" award!`):format(Players.LocalPlayer.Name,"ANKLEDEEP2010","BADGE NAME"),
		Icon = "rbxassetid://206410289",
	})
end

SendFakeBadge()
task.wait(2)
SendFakeBadge()
4 Likes

Wow this is amazing! I really thought this wouldn’t be possible, But this proves otherwise. Thanks for the help!

1 Like

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