How to Make a MEET THE OWNER BADGE in Roblox Studio! (2024) - Roblox Studio Tutorial

Описание к видео How to Make a MEET THE OWNER BADGE in Roblox Studio! (2024) - Roblox Studio Tutorial

Hello Everyone my Name is sya (sha) and Welcome to my Back to a Brand new Video!

In This Video, I'll be Showing you Guys how to Make a Meet the Owner Badge in Roblox Studio!

Script:
local badgeService = game:GetService("BadgeService")
local badgeid = 0 --put your badge id here

local ownerId = 0 --put your account id here

local isInGame = false


game.Players.PlayerAdded:Connect(function(plr)

if plr.UserId == ownerId then

isInGame = true

for i, plrInGame in pairs(game.Players:GetPlayers()) do

badgeService:AwardBadge(plrInGame.UserId, badgeid)
end


elseif isInGame then

badgeService:AwardBadge(plr.UserId, badgeid)
end
end)

game.Players.PlayerRemoving:Connect(function(plr)

if plr.UserId == ownerId then

isInGame = false
end
end)

-- Links --
👤 | Profile: https://web.roblox.com/users/26364374...
⬜ | Group: https://web.roblox.com/groups/1491586...
🗣️ | Discord:   / discord  

#roblox #robloxstudio #tutorial

Thank you so Much for Watching and I'll see you Guys in the Next one, see ya!

Комментарии

Информация по комментариям в разработке