How do I make this old Roblox chat badge-award?

Basically, I wanted to make the old 2011 Roblox system message where it sends in chat “USER has been awarded BADGE!” so that it goes like:

[SYSTEM]: PLAYER has been awarded the ‘Welcome’ badge!

I also wanted to send the message in the dev console as well, for me to manually check every person who got the badge (in case someone spams chat and I miss the names of people who got the badge)

Reference: (sorry, very blurry photo)
chrome_VYXldg6yu9

How can I make this?

1 Like

well just make a gui, and when you award the badge, fire a remote to all clients, make the gui show up, and just make a string for the text label like

local text = "[Roblox]:" .. player.Name .. " won" .. badgeName .. " award" -- if thats how to concatenate a string cause i dont really know, please correct me
textLabel.Text = text
2 Likes

I wanted it to show as a message in chat not as a GUI though :cry:

2 Likes
local text = "[Roblox]:" .. player.Name .. " won" .. badgeName .. " award" -- if thats how to concatenate a string cause i dont really know, please correct me
game.TextChatService.TextChannels.RBXGeneral:DisplaySystemMessage(text)
local badgeService = game:GetService("BadgeService")
local players =game:GetService("Players")

local badges = {
	["0000000"] = "test"
    --add more badges and the name of what they resemble/do
}



players.PlayerAdded:Connect(function(player)
	local success,result = pcall(function()
		return badgeService:UserHasBadgeAsync(player.UserId,badges["0000000"])
	end)
	if success then
		if not result then
			pcall(function()
				badgeService:AwardBadge(player.UserId,badges["0000000"])
				--here, shoot a remote event to the client for e.g
				--remote:FireAllClients(badges["0000000"])
			end)
		end
	end
end)

and on the client side use the remote ‘OnClientEvent’ and within do the stuff for the chat [ depends on what chat you’re using - classic or the new one?]

1 Like