RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"when the onwer join the game you will get a badge"
-- server script local BadgeService = game:GetService("BadgeService") local badgeId = 00000000 -- Replace with your badge ID game.Players.PlayerAdded:Connect(function(player) if player.UserId == game.CreatorId then BadgeService:AwardBadge(player.UserId, badgeId) end end)