You can write your topic however you want, but you need to answer these questions:
What do you want to achieve? Keep it simple and clear!
To make a fake badge notification.
What is the issue? Include screenshots / videos if possible!
I have no clue on how to get started on making it
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.
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()