#how to make a script for the you met the creator
4 messages · Page 1 of 1 (latest)
make it so that when u join the game loop and check if the owner is in the server
so based
Players.PlayerAdded:Connect(function(player)
if player.UserId == Owner_id then
-- for all other Players in game : Award badge.
else
for _, otherPlayer in ipairs(Players:GetPlayers()) do
if otherPlayer.UserId == Owner_id then
-- Award badge to 'player' (not all players)
end
end
end
end)