If I wanted to join a game, and then people get a badge when I join, example: You met the owner!
etc.
How can I make this possible?
If I wanted to join a game, and then people get a badge when I join, example: You met the owner!
etc.
How can I make this possible?
Simple, make an on player joined event, and reward them the badge ID. If you need an example script, I can provide that.
Anything is useful! (
Thank you in advance.
Here is an example script, I think will work for you.
My apologies, I was thinking you wanted a “You played a game” type of badge system, in this case this would be the code;
local BadgeService = game:GetService("BadgeService")
game.Players.PlayerAdded:Connect(function(player)
BadgeService:AwardBadge(player.UserId, BadgeID)
end)
If you wanted a creator badge system, you should go with @GamingBroCoolkid328 's thread.