how to make badges in roblox studio! (welcome/part touch/meet the creator)

2 months ago
4

hello! in this video i will be showing you how to make badges and add them to your game!

scripts i used:

welcome badge:
https://create.roblox.com/store/asset/2705728647/Welcome-You-Joined-The-Game-Badge-Script by rickymarckstadt

part touch badge:

local badgeID = 1234567890 -- Change this ID YOUR badge ID
local badgeService = game:GetService("BadgeService")

script.Parent.Touched:Connect(function(hit)

if hit.Parent:FindFirstChild("Humanoid") then

local plr = game.Players:GetPlayerFromCharacter(hit.Parent)
badgeService:AwardBadge(plr.UserId, badgeID)
end
end) by Itz_FloppyFish

meet the creator badge:
https://create.roblox.com/store/asset/874996856/Meet-Creator-Badge-Giver-Script by SpookySquidington

Loading 1 comment...