View difference between Paste ID: xX6A4Gf7 and 05DQrJiH
SHOW: | | - or go back to the newest paste.
1
local BadgeService = game:GetService("BadgeService")
2
local BadgeID = 2146239673 -- tutaj podajemy swoje ID
3
4
5
game.Players.PlayerAdded:Connect(function(player)
6
    wait(10)
7
    BadgeService:AwardBadge(player.UserId, BadgeID)
8
end)