Like a script that scans if someone has a specific badge and if they do a gui pops up.
Always search for information before asking. There's clearly an example on the Developer page of Roblox.
I hope this helps. https://developer.roblox.com/en-us/api-reference/class/BadgeService
local BadgeService = game:GetService("BadgeService") -- Get the service local player = -- Where your player is local badgeID = 00000000 -- Change this to your badge ID local function Check(player) -- Check if the player has the badge local hasBadge = BadgeService:UserHasBadgeAsync(player.UserId, badgeID) -- either true or false if hasBadge then return true else return false end end local PlayerHasBadge = Check(player)
Closed as Not Constructive by JesseSong
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?