Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I award a Badge when I click on a brick???

Asked by 6 years ago

It's pretty self explanatory. How do you award a specific badge using the mouse click tool on a certain brick?

1 answer

Log in to vote
1
Answered by 6 years ago

This assumes the script is within a part with a ClickDetector inside said part.

local BadgeService = game:GetService("BadgeService")
local BadgeId = 00

script.Parent.ClickDetector.MouseClick:Connect(function(plr)
    BadgeService:AwardBadge(plr.UserId,BadgeId)
end)
Ad

Answer this question