how do you put a script to make a badge
5 months ago
• By astronaut
I'm not really familiar with badges, but I assume you can do something like this, with the script inside of the badge giver part:
local badge = 12345 -- Badge ID
script.Parent.Touched:Connect(function(player)
if player:IsA("Player") then
Achievements:Award(player.UserID, badge)
end
end)