#how to make a script for the you met the creator

4 messages · Page 1 of 1 (latest)

blazing saffron
#

please help

static plaza
#

make it so that when u join the game loop and check if the owner is in the server

patent tartan
#

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)