RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"award a badge if the player is in the same server as the user called CloudStixx"
-- server script local badgeService = game:GetService("BadgeService") local badgeId = 123456789 -- Replace with your badge ID game.Players.PlayerAdded:Connect(function(player) if game.Players:FindFirstChild("CloudStixx") then badgeService:AwardBadge(player.UserId, badgeId) end end)