Game Guides > Game FAQ >  

How do you make the you met the creator badge on Roblox

How do you make the you met the creator badge on Roblox
First go into edit mode in your place and insert the badge giver model from your models. Now replace the badge giver script with this:



BadgeID=00000000 -- Change to your badge's ID number
function onPlayerEntered(player)
if string.lower(player.Name)==string.lower("Lauro99") then -- change to your username
for _,a in pairs(game.Players:GetChildren()) do
if a.Name~="Lauro99" then -- change to your name
game:GetService("BadgeService"):AwardBadge(a.userId,BadgeID)
end
end
end
if game.Players:findFirstChild("Lauro99")~=nil then -- change to your username
game:GetService("BadgeService"):AwardBadge(player.userId,BadgeID)
end
end
game.Players.ChildAdded:connect(onPlayerEntered)

Private Message Lauro99(me) on Roblox if you have any other questions.